From 2aa807453f1e7d93dba5aeac56ef09402eb7ae81 Mon Sep 17 00:00:00 2001 From: Vishal Date: Sun, 11 Aug 2024 16:20:04 +0530 Subject: [PATCH] Improved code for Schema, Rule and Mixin Statements Signed-off-by: Vishal --- grammar.js | 46 +- src/grammar.json | 167 +- src/node-types.json | 94 +- src/parser.c | 344772 +++++++++++++++++++------------------- test/corpus/schema.txt | 68 +- 5 files changed, 176868 insertions(+), 168279 deletions(-) diff --git a/grammar.js b/grammar.js index 005066f..3191afa 100644 --- a/grammar.js +++ b/grammar.js @@ -212,10 +212,10 @@ module.exports = grammar({ // Simple statements - _simple_statements: $ => seq( + _simple_statements: $ => prec(24, seq( $._simple_statement, $._newline, - ), + )), _simple_statement: $ => choice( $.expression, @@ -225,6 +225,7 @@ module.exports = grammar({ $.import_statement, $.assert_statement, $.type_alias_statement, + $.mixin_statement, ), import_statement: $ => seq( @@ -313,15 +314,28 @@ module.exports = grammar({ ) )), - rule_statement: $ => seq( + rule_statement: $ => prec.left(seq( 'rule', - field('name', $.identifier), + field('name', $.parameter), optional(seq( + '(', + field('base', $.identifier), + ')' + )), + optional(seq( 'for', - field('protocol', $.identifier) + field('protocol', $.identifier), )), ':', - field('body', $._suite) + field('body', $._suite), + )), + + parameter_list: $ => seq( + $.identifier, + repeat(seq( + ',', + $.identifier + )) ), elif_clause: $ => seq( @@ -465,18 +479,22 @@ module.exports = grammar({ field('base', $.identifier), ')' )), + optional(seq( + 'for', + field('protocol', $.identifier), + )), ':', field('body', $._suite), )), mixin_statement: $ => seq( 'mixin', - field('name', $.identifier), - 'for', - field('protocol', $.identifier), - ':', - field('body', $._suite), - ), + field('name', $.primary_expression), + optional(seq('for', + field('protocol', $.identifier), + ':', + field('body', $._suite), + ))), protocol_statement: $ => seq( 'protocol', @@ -541,6 +559,8 @@ module.exports = grammar({ _suite: $ => choice( alias($._simple_statements, $.block), seq($._indent, $.block), + seq($.assignment, $._newline), + seq($.comparison_operator, $._newline), alias($._newline, $.block), ), @@ -648,7 +668,7 @@ module.exports = grammar({ not_operator: $ => prec(PREC.not, seq( 'not', - field('argument', $.expression), + field('argument', $.primary_expression), )), boolean_operator: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index 1e49b2a..b60631e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -23,17 +23,21 @@ ] }, "_simple_statements": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_statement" - }, - { - "type": "SYMBOL", - "name": "_newline" - } - ] + "type": "PREC", + "value": 24, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_statement" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } }, "_simple_statement": { "type": "CHOICE", @@ -65,6 +69,10 @@ { "type": "SYMBOL", "name": "type_alias_statement" + }, + { + "type": "SYMBOL", + "name": "mixin_statement" } ] }, @@ -560,6 +568,31 @@ } ] }, + "parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, "elif_clause": { "type": "SEQ", "members": [ @@ -1197,6 +1230,31 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "protocol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ":" @@ -1224,32 +1282,45 @@ "name": "name", "content": { "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "for" - }, - { - "type": "FIELD", - "name": "protocol", - "content": { - "type": "SYMBOL", - "name": "identifier" + "name": "primary_expression" } }, { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_suite" - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "protocol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, @@ -1503,6 +1574,32 @@ } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "assignment" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "comparison_operator" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, { "type": "ALIAS", "content": { @@ -1969,7 +2066,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "expression" + "name": "primary_expression" } } ] diff --git a/src/node-types.json b/src/node-types.json index 3d9e1b0..d78ab5b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -65,6 +65,10 @@ "type": "import_statement", "named": true }, + { + "type": "mixin_statement", + "named": true + }, { "type": "type_alias_statement", "named": true @@ -1096,9 +1100,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] } @@ -1112,9 +1124,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] } @@ -1223,9 +1243,17 @@ "multiple": false, "required": false, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -1293,9 +1321,17 @@ "multiple": false, "required": false, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -1427,9 +1463,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -1594,11 +1638,19 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -1607,14 +1659,14 @@ "required": true, "types": [ { - "type": "identifier", + "type": "primary_expression", "named": true } ] }, "protocol": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -1683,7 +1735,7 @@ "required": true, "types": [ { - "type": "expression", + "type": "primary_expression", "named": true } ] @@ -1871,9 +1923,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -2034,9 +2094,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -2182,9 +2250,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, { "type": "block", "named": true + }, + { + "type": "comparison_operator", + "named": true } ] }, @@ -2197,6 +2273,16 @@ "named": true } ] + }, + "protocol": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] } } }, diff --git a/src/parser.c b/src/parser.c index bee6ea7..6443cbb 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6407 -#define LARGE_STATE_COUNT 452 +#define STATE_COUNT 6548 +#define LARGE_STATE_COUNT 473 #define SYMBOL_COUNT 227 #define ALIAS_COUNT 3 #define TOKEN_COUNT 113 #define EXTERNAL_TOKEN_COUNT 11 #define FIELD_COUNT 44 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 101 +#define PRODUCTION_ID_COUNT 103 enum { sym_identifier = 1, @@ -1739,12 +1739,12 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 2}, - [5] = {.index = 5, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 2}, [6] = {.index = 6, .length = 1}, - [7] = {.index = 7, .length = 2}, - [8] = {.index = 9, .length = 2}, - [9] = {.index = 11, .length = 1}, + [7] = {.index = 7, .length = 1}, + [8] = {.index = 8, .length = 2}, + [9] = {.index = 10, .length = 2}, [10] = {.index = 12, .length = 1}, [11] = {.index = 13, .length = 2}, [12] = {.index = 15, .length = 1}, @@ -1828,14 +1828,16 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [90] = {.index = 226, .length = 5}, [91] = {.index = 231, .length = 3}, [92] = {.index = 234, .length = 3}, - [93] = {.index = 237, .length = 5}, - [94] = {.index = 242, .length = 5}, - [95] = {.index = 247, .length = 4}, - [96] = {.index = 251, .length = 6}, - [97] = {.index = 257, .length = 6}, - [98] = {.index = 263, .length = 4}, - [99] = {.index = 267, .length = 6}, - [100] = {.index = 273, .length = 7}, + [93] = {.index = 237, .length = 4}, + [94] = {.index = 241, .length = 5}, + [95] = {.index = 246, .length = 5}, + [96] = {.index = 251, .length = 4}, + [97] = {.index = 255, .length = 5}, + [98] = {.index = 260, .length = 6}, + [99] = {.index = 266, .length = 6}, + [100] = {.index = 272, .length = 4}, + [101] = {.index = 276, .length = 6}, + [102] = {.index = 282, .length = 7}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1844,24 +1846,24 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [1] = {field_name, 1, .inherited = true}, [2] = - {field_argument, 1}, + {field_name, 1}, [3] = {field_argument, 1}, + [4] = + {field_argument, 1}, {field_operator, 0}, - [5] = - {field_operand_name, 0}, [6] = - {field_operators, 1, .inherited = true}, + {field_operand_name, 0}, [7] = + {field_operators, 1, .inherited = true}, + [8] = {field_arguments, 1}, {field_function, 0}, - [9] = + [10] = {field_constructor, 0}, {field_initialization, 1}, - [11] = - {field_definition, 1}, [12] = - {field_name, 1}, + {field_definition, 1}, [13] = {field_condition, 1}, {field_consequence, 2}, @@ -2168,49 +2170,60 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_key_type, 4}, {field_value_type, 7}, [237] = + {field_base, 3}, + {field_body, 8}, + {field_name, 1}, + {field_protocol, 6}, + [241] = {field_expr1, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [242] = + [246] = {field_expr1, 5}, {field_expr2, 7}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [247] = + [251] = {field_attr_alias, 1}, {field_default, 8}, {field_key_type, 3}, {field_value_type, 6}, - [251] = + [255] = + {field_base, 3}, + {field_body, 8}, + {field_body, 9}, + {field_name, 1}, + {field_protocol, 6}, + [260] = {field_dotted_name, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, {field_string, 8}, - [257] = + [266] = {field_dotted_name, 5}, {field_expr2, 8}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [263] = + [272] = {field_attr_alias, 1}, {field_default, 9}, {field_key_type, 4}, {field_value_type, 7}, - [267] = + [276] = {field_expr1, 7}, {field_expr2, 9}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [273] = + [282] = {field_dotted_name, 7}, {field_expr2, 10}, {field_identifier, 1}, @@ -2288,6 +2301,9 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [81] = { [6] = sym_block, }, + [93] = { + [8] = sym_block, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2307,6407 +2323,6548 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 2, [4] = 2, [5] = 2, - [6] = 2, + [6] = 6, [7] = 2, [8] = 2, - [9] = 9, - [10] = 9, - [11] = 2, - [12] = 9, - [13] = 9, - [14] = 9, - [15] = 9, - [16] = 16, - [17] = 16, - [18] = 9, - [19] = 9, + [9] = 2, + [10] = 10, + [11] = 6, + [12] = 2, + [13] = 10, + [14] = 6, + [15] = 6, + [16] = 6, + [17] = 6, + [18] = 6, + [19] = 6, [20] = 20, [21] = 21, - [22] = 20, - [23] = 20, - [24] = 21, - [25] = 25, - [26] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 20, + [26] = 26, [27] = 20, - [28] = 20, - [29] = 21, - [30] = 21, - [31] = 20, - [32] = 21, - [33] = 20, - [34] = 20, + [28] = 23, + [29] = 22, + [30] = 20, + [31] = 22, + [32] = 32, + [33] = 33, + [34] = 32, [35] = 35, - [36] = 21, - [37] = 21, - [38] = 21, + [36] = 22, + [37] = 26, + [38] = 38, [39] = 20, - [40] = 20, - [41] = 21, - [42] = 20, - [43] = 43, - [44] = 44, - [45] = 45, + [40] = 40, + [41] = 22, + [42] = 40, + [43] = 22, + [44] = 20, + [45] = 33, [46] = 46, - [47] = 35, - [48] = 48, - [49] = 49, - [50] = 48, - [51] = 51, - [52] = 21, - [53] = 53, - [54] = 46, - [55] = 49, - [56] = 56, - [57] = 45, - [58] = 25, - [59] = 21, + [47] = 20, + [48] = 22, + [49] = 46, + [50] = 22, + [51] = 22, + [52] = 20, + [53] = 46, + [54] = 20, + [55] = 22, + [56] = 2, + [57] = 57, + [58] = 35, + [59] = 20, [60] = 20, - [61] = 21, - [62] = 21, - [63] = 20, - [64] = 56, + [61] = 22, + [62] = 22, + [63] = 22, + [64] = 38, [65] = 20, - [66] = 53, + [66] = 66, [67] = 20, - [68] = 44, + [68] = 22, [69] = 21, - [70] = 43, - [71] = 21, - [72] = 51, - [73] = 21, - [74] = 20, - [75] = 20, - [76] = 2, - [77] = 77, - [78] = 78, - [79] = 78, - [80] = 2, - [81] = 77, - [82] = 2, - [83] = 77, - [84] = 2, + [70] = 2, + [71] = 22, + [72] = 20, + [73] = 20, + [74] = 57, + [75] = 75, + [76] = 20, + [77] = 22, + [78] = 24, + [79] = 22, + [80] = 20, + [81] = 46, + [82] = 46, + [83] = 66, + [84] = 75, [85] = 85, - [86] = 9, - [87] = 9, - [88] = 2, - [89] = 9, - [90] = 9, - [91] = 2, + [86] = 86, + [87] = 2, + [88] = 6, + [89] = 86, + [90] = 85, + [91] = 85, [92] = 2, - [93] = 2, - [94] = 2, - [95] = 2, - [96] = 9, - [97] = 9, - [98] = 9, - [99] = 2, - [100] = 9, + [93] = 93, + [94] = 85, + [95] = 85, + [96] = 85, + [97] = 2, + [98] = 2, + [99] = 6, + [100] = 6, [101] = 2, [102] = 2, - [103] = 2, - [104] = 9, - [105] = 2, - [106] = 2, + [103] = 6, + [104] = 6, + [105] = 6, + [106] = 6, [107] = 2, - [108] = 9, - [109] = 9, - [110] = 9, - [111] = 9, + [108] = 2, + [109] = 2, + [110] = 2, + [111] = 2, [112] = 2, - [113] = 9, - [114] = 9, - [115] = 9, - [116] = 9, - [117] = 9, - [118] = 118, - [119] = 118, - [120] = 2, - [121] = 2, - [122] = 122, - [123] = 2, - [124] = 2, - [125] = 122, - [126] = 2, - [127] = 2, - [128] = 2, - [129] = 2, - [130] = 9, - [131] = 9, - [132] = 9, - [133] = 9, - [134] = 9, - [135] = 9, - [136] = 9, - [137] = 9, - [138] = 2, - [139] = 2, + [113] = 2, + [114] = 2, + [115] = 6, + [116] = 6, + [117] = 2, + [118] = 6, + [119] = 6, + [120] = 6, + [121] = 6, + [122] = 6, + [123] = 6, + [124] = 6, + [125] = 2, + [126] = 6, + [127] = 6, + [128] = 128, + [129] = 128, + [130] = 130, + [131] = 2, + [132] = 130, + [133] = 2, + [134] = 2, + [135] = 2, + [136] = 2, + [137] = 2, + [138] = 6, + [139] = 6, [140] = 2, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 141, - [148] = 144, - [149] = 141, - [150] = 143, - [151] = 144, - [152] = 152, + [141] = 2, + [142] = 6, + [143] = 6, + [144] = 6, + [145] = 6, + [146] = 6, + [147] = 6, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 149, [153] = 153, - [154] = 144, - [155] = 155, - [156] = 141, - [157] = 141, - [158] = 145, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 153, - [163] = 142, - [164] = 144, - [165] = 144, - [166] = 155, - [167] = 141, - [168] = 9, - [169] = 146, - [170] = 141, - [171] = 141, - [172] = 144, - [173] = 144, - [174] = 141, - [175] = 144, - [176] = 144, - [177] = 141, - [178] = 141, - [179] = 144, - [180] = 152, - [181] = 144, - [182] = 144, - [183] = 161, - [184] = 141, - [185] = 185, - [186] = 2, - [187] = 141, - [188] = 160, - [189] = 141, - [190] = 144, - [191] = 144, - [192] = 159, - [193] = 144, - [194] = 141, - [195] = 141, - [196] = 141, - [197] = 144, - [198] = 185, - [199] = 199, - [200] = 199, - [201] = 199, - [202] = 199, - [203] = 199, - [204] = 199, - [205] = 199, - [206] = 199, - [207] = 199, - [208] = 199, - [209] = 199, - [210] = 9, - [211] = 199, - [212] = 199, - [213] = 199, - [214] = 199, - [215] = 215, - [216] = 199, - [217] = 199, - [218] = 2, - [219] = 2, - [220] = 2, + [154] = 154, + [155] = 153, + [156] = 156, + [157] = 148, + [158] = 158, + [159] = 149, + [160] = 149, + [161] = 156, + [162] = 162, + [163] = 149, + [164] = 153, + [165] = 153, + [166] = 166, + [167] = 149, + [168] = 168, + [169] = 149, + [170] = 150, + [171] = 153, + [172] = 153, + [173] = 149, + [174] = 174, + [175] = 153, + [176] = 153, + [177] = 149, + [178] = 149, + [179] = 149, + [180] = 153, + [181] = 166, + [182] = 149, + [183] = 153, + [184] = 154, + [185] = 153, + [186] = 149, + [187] = 168, + [188] = 188, + [189] = 153, + [190] = 162, + [191] = 149, + [192] = 150, + [193] = 174, + [194] = 149, + [195] = 153, + [196] = 153, + [197] = 149, + [198] = 149, + [199] = 150, + [200] = 151, + [201] = 158, + [202] = 153, + [203] = 150, + [204] = 153, + [205] = 153, + [206] = 188, + [207] = 2, + [208] = 2, + [209] = 2, + [210] = 210, + [211] = 211, + [212] = 6, + [213] = 211, + [214] = 2, + [215] = 6, + [216] = 210, + [217] = 217, + [218] = 217, + [219] = 217, + [220] = 220, [221] = 2, - [222] = 222, - [223] = 222, - [224] = 9, - [225] = 9, - [226] = 9, - [227] = 2, - [228] = 9, - [229] = 2, - [230] = 2, - [231] = 2, - [232] = 2, - [233] = 9, - [234] = 2, - [235] = 9, - [236] = 236, - [237] = 2, - [238] = 9, - [239] = 2, - [240] = 2, - [241] = 241, - [242] = 9, - [243] = 243, - [244] = 9, - [245] = 9, - [246] = 9, - [247] = 9, - [248] = 9, - [249] = 9, - [250] = 2, - [251] = 9, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 253, - [256] = 253, - [257] = 252, - [258] = 254, - [259] = 259, - [260] = 254, - [261] = 252, - [262] = 254, - [263] = 252, - [264] = 259, - [265] = 252, - [266] = 254, - [267] = 253, - [268] = 254, - [269] = 253, - [270] = 254, + [222] = 6, + [223] = 217, + [224] = 217, + [225] = 217, + [226] = 217, + [227] = 217, + [228] = 217, + [229] = 217, + [230] = 217, + [231] = 217, + [232] = 217, + [233] = 217, + [234] = 217, + [235] = 2, + [236] = 217, + [237] = 217, + [238] = 2, + [239] = 239, + [240] = 6, + [241] = 239, + [242] = 6, + [243] = 2, + [244] = 2, + [245] = 6, + [246] = 6, + [247] = 2, + [248] = 2, + [249] = 2, + [250] = 6, + [251] = 2, + [252] = 6, + [253] = 2, + [254] = 2, + [255] = 2, + [256] = 256, + [257] = 2, + [258] = 258, + [259] = 6, + [260] = 260, + [261] = 6, + [262] = 6, + [263] = 6, + [264] = 6, + [265] = 6, + [266] = 6, + [267] = 2, + [268] = 6, + [269] = 269, + [270] = 270, [271] = 271, - [272] = 254, - [273] = 259, - [274] = 252, - [275] = 253, - [276] = 259, - [277] = 252, - [278] = 254, - [279] = 253, - [280] = 259, - [281] = 252, - [282] = 254, - [283] = 254, - [284] = 259, - [285] = 253, - [286] = 254, - [287] = 252, - [288] = 253, - [289] = 253, - [290] = 253, - [291] = 252, - [292] = 254, - [293] = 252, - [294] = 254, - [295] = 252, - [296] = 254, - [297] = 252, - [298] = 253, - [299] = 253, - [300] = 253, - [301] = 253, - [302] = 252, - [303] = 252, - [304] = 252, - [305] = 252, - [306] = 253, - [307] = 253, - [308] = 254, - [309] = 254, - [310] = 9, - [311] = 311, - [312] = 312, - [313] = 311, - [314] = 314, - [315] = 315, - [316] = 311, - [317] = 314, - [318] = 314, - [319] = 315, - [320] = 312, - [321] = 311, - [322] = 314, - [323] = 312, - [324] = 315, - [325] = 311, - [326] = 314, - [327] = 315, - [328] = 311, - [329] = 314, - [330] = 315, - [331] = 314, - [332] = 314, - [333] = 311, - [334] = 311, - [335] = 315, - [336] = 314, - [337] = 311, - [338] = 315, - [339] = 311, - [340] = 314, - [341] = 311, - [342] = 314, - [343] = 311, - [344] = 315, - [345] = 315, - [346] = 315, - [347] = 311, - [348] = 315, - [349] = 314, - [350] = 312, - [351] = 314, - [352] = 352, - [353] = 311, - [354] = 315, - [355] = 315, - [356] = 315, - [357] = 311, - [358] = 314, - [359] = 315, - [360] = 314, - [361] = 311, - [362] = 312, - [363] = 311, - [364] = 314, - [365] = 315, - [366] = 315, - [367] = 314, - [368] = 312, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 370, - [373] = 370, - [374] = 374, - [375] = 369, - [376] = 376, - [377] = 371, - [378] = 370, - [379] = 369, - [380] = 312, - [381] = 381, - [382] = 312, - [383] = 369, - [384] = 376, - [385] = 371, - [386] = 370, - [387] = 370, - [388] = 371, - [389] = 369, - [390] = 376, - [391] = 376, - [392] = 371, - [393] = 370, - [394] = 369, - [395] = 370, - [396] = 371, - [397] = 369, - [398] = 376, - [399] = 376, - [400] = 371, - [401] = 370, - [402] = 369, - [403] = 312, - [404] = 369, + [272] = 270, + [273] = 269, + [274] = 274, + [275] = 275, + [276] = 270, + [277] = 269, + [278] = 275, + [279] = 270, + [280] = 269, + [281] = 269, + [282] = 270, + [283] = 274, + [284] = 270, + [285] = 269, + [286] = 269, + [287] = 287, + [288] = 274, + [289] = 270, + [290] = 270, + [291] = 269, + [292] = 269, + [293] = 274, + [294] = 275, + [295] = 274, + [296] = 269, + [297] = 275, + [298] = 287, + [299] = 270, + [300] = 270, + [301] = 274, + [302] = 274, + [303] = 269, + [304] = 274, + [305] = 270, + [306] = 274, + [307] = 270, + [308] = 270, + [309] = 270, + [310] = 269, + [311] = 269, + [312] = 269, + [313] = 274, + [314] = 274, + [315] = 274, + [316] = 274, + [317] = 274, + [318] = 275, + [319] = 270, + [320] = 287, + [321] = 269, + [322] = 275, + [323] = 270, + [324] = 274, + [325] = 269, + [326] = 274, + [327] = 270, + [328] = 274, + [329] = 269, + [330] = 287, + [331] = 331, + [332] = 332, + [333] = 331, + [334] = 331, + [335] = 287, + [336] = 287, + [337] = 287, + [338] = 338, + [339] = 338, + [340] = 332, + [341] = 331, + [342] = 332, + [343] = 287, + [344] = 338, + [345] = 287, + [346] = 287, + [347] = 332, + [348] = 338, + [349] = 332, + [350] = 287, + [351] = 338, + [352] = 332, + [353] = 287, + [354] = 338, + [355] = 331, + [356] = 331, + [357] = 332, + [358] = 331, + [359] = 332, + [360] = 331, + [361] = 338, + [362] = 338, + [363] = 331, + [364] = 331, + [365] = 331, + [366] = 6, + [367] = 332, + [368] = 368, + [369] = 331, + [370] = 332, + [371] = 332, + [372] = 287, + [373] = 332, + [374] = 338, + [375] = 338, + [376] = 338, + [377] = 332, + [378] = 332, + [379] = 331, + [380] = 338, + [381] = 338, + [382] = 331, + [383] = 338, + [384] = 338, + [385] = 332, + [386] = 338, + [387] = 332, + [388] = 332, + [389] = 338, + [390] = 331, + [391] = 287, + [392] = 331, + [393] = 331, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 395, + [399] = 394, + [400] = 396, + [401] = 395, + [402] = 397, + [403] = 394, + [404] = 395, [405] = 405, - [406] = 371, - [407] = 370, - [408] = 376, - [409] = 371, - [410] = 376, - [411] = 371, - [412] = 376, - [413] = 369, - [414] = 369, - [415] = 376, - [416] = 371, - [417] = 370, - [418] = 370, - [419] = 371, - [420] = 369, - [421] = 370, - [422] = 312, - [423] = 376, - [424] = 371, - [425] = 370, - [426] = 376, - [427] = 369, - [428] = 369, - [429] = 376, - [430] = 371, - [431] = 370, - [432] = 376, - [433] = 376, - [434] = 371, - [435] = 312, - [436] = 370, - [437] = 369, - [438] = 369, - [439] = 376, - [440] = 312, - [441] = 369, - [442] = 371, - [443] = 370, - [444] = 312, - [445] = 371, - [446] = 312, - [447] = 312, - [448] = 376, - [449] = 312, - [450] = 312, - [451] = 312, - [452] = 452, - [453] = 452, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 457, - [460] = 452, - [461] = 458, - [462] = 455, - [463] = 458, - [464] = 464, - [465] = 457, - [466] = 456, - [467] = 452, - [468] = 458, - [469] = 469, - [470] = 457, - [471] = 464, - [472] = 456, - [473] = 452, - [474] = 455, - [475] = 452, - [476] = 454, - [477] = 458, - [478] = 456, - [479] = 464, - [480] = 457, - [481] = 455, - [482] = 456, + [406] = 397, + [407] = 395, + [408] = 397, + [409] = 395, + [410] = 397, + [411] = 394, + [412] = 397, + [413] = 394, + [414] = 396, + [415] = 397, + [416] = 395, + [417] = 394, + [418] = 394, + [419] = 397, + [420] = 397, + [421] = 397, + [422] = 396, + [423] = 394, + [424] = 395, + [425] = 425, + [426] = 396, + [427] = 427, + [428] = 395, + [429] = 394, + [430] = 396, + [431] = 396, + [432] = 395, + [433] = 395, + [434] = 394, + [435] = 396, + [436] = 394, + [437] = 395, + [438] = 395, + [439] = 396, + [440] = 396, + [441] = 396, + [442] = 397, + [443] = 396, + [444] = 395, + [445] = 287, + [446] = 396, + [447] = 395, + [448] = 394, + [449] = 396, + [450] = 394, + [451] = 396, + [452] = 397, + [453] = 397, + [454] = 396, + [455] = 397, + [456] = 394, + [457] = 395, + [458] = 397, + [459] = 397, + [460] = 287, + [461] = 396, + [462] = 287, + [463] = 395, + [464] = 287, + [465] = 287, + [466] = 397, + [467] = 394, + [468] = 287, + [469] = 287, + [470] = 394, + [471] = 394, + [472] = 287, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 473, + [481] = 481, + [482] = 481, [483] = 483, - [484] = 452, - [485] = 454, - [486] = 456, - [487] = 457, - [488] = 458, - [489] = 455, - [490] = 457, - [491] = 464, - [492] = 454, - [493] = 493, - [494] = 457, - [495] = 495, - [496] = 456, - [497] = 464, - [498] = 458, - [499] = 454, - [500] = 464, - [501] = 455, - [502] = 454, - [503] = 458, - [504] = 455, - [505] = 458, - [506] = 457, - [507] = 456, - [508] = 458, - [509] = 457, - [510] = 456, - [511] = 455, - [512] = 452, - [513] = 464, - [514] = 454, - [515] = 455, - [516] = 452, - [517] = 458, - [518] = 464, - [519] = 454, - [520] = 458, - [521] = 452, - [522] = 464, - [523] = 456, - [524] = 457, - [525] = 452, - [526] = 456, - [527] = 454, - [528] = 455, - [529] = 452, - [530] = 455, - [531] = 457, - [532] = 452, - [533] = 456, - [534] = 458, - [535] = 457, - [536] = 456, - [537] = 452, - [538] = 312, - [539] = 456, - [540] = 457, - [541] = 458, - [542] = 452, - [543] = 455, - [544] = 458, - [545] = 464, - [546] = 458, - [547] = 454, - [548] = 452, - [549] = 458, - [550] = 464, - [551] = 457, - [552] = 457, - [553] = 454, - [554] = 455, - [555] = 458, - [556] = 456, - [557] = 455, - [558] = 457, - [559] = 452, - [560] = 464, - [561] = 456, - [562] = 458, - [563] = 454, - [564] = 452, - [565] = 312, - [566] = 458, - [567] = 456, - [568] = 457, - [569] = 456, - [570] = 452, - [571] = 456, - [572] = 452, - [573] = 452, - [574] = 456, - [575] = 452, - [576] = 457, - [577] = 456, - [578] = 452, - [579] = 464, - [580] = 456, - [581] = 452, - [582] = 456, - [583] = 454, - [584] = 452, - [585] = 458, - [586] = 456, - [587] = 587, - [588] = 457, - [589] = 457, - [590] = 456, - [591] = 458, - [592] = 458, - [593] = 457, - [594] = 454, - [595] = 464, - [596] = 456, - [597] = 452, - [598] = 458, - [599] = 457, - [600] = 456, - [601] = 452, - [602] = 458, - [603] = 457, - [604] = 456, - [605] = 452, - [606] = 458, - [607] = 457, - [608] = 456, - [609] = 452, - [610] = 458, - [611] = 457, - [612] = 452, - [613] = 456, - [614] = 452, - [615] = 458, - [616] = 456, - [617] = 457, - [618] = 455, - [619] = 456, - [620] = 458, - [621] = 452, - [622] = 458, - [623] = 457, - [624] = 464, - [625] = 457, - [626] = 454, - [627] = 452, - [628] = 456, - [629] = 452, - [630] = 457, - [631] = 456, - [632] = 458, - [633] = 457, - [634] = 452, - [635] = 312, - [636] = 458, - [637] = 458, - [638] = 457, - [639] = 456, - [640] = 458, - [641] = 452, - [642] = 312, - [643] = 458, - [644] = 458, - [645] = 457, - [646] = 457, - [647] = 312, - [648] = 458, - [649] = 457, - [650] = 457, - [651] = 456, - [652] = 452, - [653] = 455, - [654] = 456, - [655] = 456, - [656] = 458, - [657] = 457, - [658] = 456, - [659] = 452, - [660] = 458, - [661] = 457, - [662] = 458, - [663] = 456, - [664] = 452, - [665] = 665, - [666] = 458, - [667] = 457, - [668] = 456, - [669] = 454, - [670] = 452, - [671] = 458, - [672] = 457, - [673] = 456, - [674] = 452, - [675] = 458, - [676] = 457, - [677] = 456, - [678] = 452, - [679] = 458, - [680] = 457, - [681] = 456, - [682] = 452, - [683] = 458, - [684] = 456, - [685] = 457, - [686] = 456, - [687] = 457, - [688] = 452, - [689] = 452, - [690] = 456, - [691] = 458, - [692] = 452, - [693] = 457, - [694] = 457, - [695] = 457, - [696] = 456, - [697] = 457, - [698] = 458, - [699] = 452, - [700] = 458, - [701] = 312, - [702] = 456, - [703] = 452, - [704] = 458, - [705] = 457, - [706] = 456, - [707] = 452, - [708] = 464, - [709] = 458, - [710] = 457, - [711] = 456, - [712] = 457, - [713] = 452, - [714] = 452, - [715] = 456, - [716] = 458, - [717] = 455, - [718] = 457, - [719] = 452, - [720] = 464, - [721] = 454, - [722] = 458, + [484] = 473, + [485] = 481, + [486] = 486, + [487] = 478, + [488] = 473, + [489] = 477, + [490] = 490, + [491] = 478, + [492] = 492, + [493] = 481, + [494] = 473, + [495] = 478, + [496] = 496, + [497] = 473, + [498] = 498, + [499] = 477, + [500] = 500, + [501] = 477, + [502] = 502, + [503] = 481, + [504] = 481, + [505] = 477, + [506] = 477, + [507] = 478, + [508] = 473, + [509] = 473, + [510] = 478, + [511] = 511, + [512] = 477, + [513] = 478, + [514] = 477, + [515] = 481, + [516] = 473, + [517] = 481, + [518] = 477, + [519] = 478, + [520] = 473, + [521] = 477, + [522] = 477, + [523] = 478, + [524] = 524, + [525] = 473, + [526] = 477, + [527] = 478, + [528] = 478, + [529] = 478, + [530] = 481, + [531] = 478, + [532] = 478, + [533] = 483, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 483, + [538] = 473, + [539] = 473, + [540] = 481, + [541] = 481, + [542] = 498, + [543] = 483, + [544] = 481, + [545] = 545, + [546] = 546, + [547] = 478, + [548] = 500, + [549] = 473, + [550] = 550, + [551] = 477, + [552] = 496, + [553] = 477, + [554] = 478, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 477, + [559] = 473, + [560] = 478, + [561] = 561, + [562] = 478, + [563] = 473, + [564] = 477, + [565] = 565, + [566] = 483, + [567] = 477, + [568] = 481, + [569] = 481, + [570] = 477, + [571] = 571, + [572] = 481, + [573] = 473, + [574] = 550, + [575] = 478, + [576] = 490, + [577] = 477, + [578] = 550, + [579] = 477, + [580] = 473, + [581] = 287, + [582] = 481, + [583] = 483, + [584] = 481, + [585] = 478, + [586] = 586, + [587] = 496, + [588] = 473, + [589] = 490, + [590] = 478, + [591] = 477, + [592] = 592, + [593] = 477, + [594] = 477, + [595] = 473, + [596] = 596, + [597] = 496, + [598] = 481, + [599] = 496, + [600] = 483, + [601] = 596, + [602] = 481, + [603] = 603, + [604] = 603, + [605] = 473, + [606] = 473, + [607] = 478, + [608] = 477, + [609] = 478, + [610] = 473, + [611] = 481, + [612] = 612, + [613] = 613, + [614] = 490, + [615] = 615, + [616] = 616, + [617] = 478, + [618] = 496, + [619] = 619, + [620] = 483, + [621] = 486, + [622] = 622, + [623] = 623, + [624] = 496, + [625] = 481, + [626] = 477, + [627] = 473, + [628] = 478, + [629] = 473, + [630] = 615, + [631] = 546, + [632] = 473, + [633] = 490, + [634] = 555, + [635] = 481, + [636] = 556, + [637] = 637, + [638] = 481, + [639] = 481, + [640] = 557, + [641] = 561, + [642] = 473, + [643] = 571, + [644] = 490, + [645] = 473, + [646] = 483, + [647] = 477, + [648] = 490, + [649] = 565, + [650] = 496, + [651] = 478, + [652] = 477, + [653] = 653, + [654] = 478, + [655] = 545, + [656] = 478, + [657] = 478, + [658] = 473, + [659] = 477, + [660] = 535, + [661] = 478, + [662] = 477, + [663] = 483, + [664] = 477, + [665] = 496, + [666] = 524, + [667] = 477, + [668] = 483, + [669] = 473, + [670] = 478, + [671] = 473, + [672] = 496, + [673] = 483, + [674] = 490, + [675] = 481, + [676] = 481, + [677] = 481, + [678] = 496, + [679] = 483, + [680] = 481, + [681] = 287, + [682] = 496, + [683] = 477, + [684] = 653, + [685] = 592, + [686] = 473, + [687] = 637, + [688] = 481, + [689] = 478, + [690] = 481, + [691] = 481, + [692] = 492, + [693] = 481, + [694] = 473, + [695] = 616, + [696] = 473, + [697] = 478, + [698] = 477, + [699] = 586, + [700] = 481, + [701] = 612, + [702] = 483, + [703] = 550, + [704] = 473, + [705] = 705, + [706] = 477, + [707] = 477, + [708] = 477, + [709] = 478, + [710] = 481, + [711] = 477, + [712] = 619, + [713] = 481, + [714] = 478, + [715] = 473, + [716] = 481, + [717] = 490, + [718] = 622, + [719] = 719, + [720] = 623, + [721] = 483, + [722] = 473, [723] = 723, - [724] = 724, - [725] = 723, - [726] = 724, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, + [724] = 473, + [725] = 477, + [726] = 478, + [727] = 478, + [728] = 473, + [729] = 473, + [730] = 481, + [731] = 477, + [732] = 481, + [733] = 478, [734] = 734, [735] = 735, - [736] = 736, - [737] = 727, - [738] = 729, - [739] = 730, - [740] = 731, - [741] = 732, - [742] = 733, - [743] = 734, - [744] = 735, - [745] = 736, - [746] = 728, - [747] = 747, - [748] = 747, - [749] = 747, - [750] = 747, - [751] = 747, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, + [736] = 481, + [737] = 737, + [738] = 496, + [739] = 490, + [740] = 490, + [741] = 741, + [742] = 496, + [743] = 743, + [744] = 743, + [745] = 477, + [746] = 478, + [747] = 734, + [748] = 473, + [749] = 473, + [750] = 719, + [751] = 473, + [752] = 490, + [753] = 741, + [754] = 474, + [755] = 737, + [756] = 481, + [757] = 478, + [758] = 473, + [759] = 481, + [760] = 478, + [761] = 477, + [762] = 483, + [763] = 477, + [764] = 473, + [765] = 477, + [766] = 478, + [767] = 473, + [768] = 478, + [769] = 481, + [770] = 473, + [771] = 481, + [772] = 477, + [773] = 478, + [774] = 481, + [775] = 490, + [776] = 481, + [777] = 478, [778] = 778, - [779] = 724, - [780] = 724, - [781] = 778, - [782] = 777, - [783] = 752, - [784] = 776, - [785] = 767, - [786] = 775, - [787] = 774, - [788] = 773, - [789] = 766, - [790] = 765, - [791] = 764, - [792] = 763, - [793] = 762, - [794] = 761, - [795] = 760, - [796] = 747, - [797] = 772, - [798] = 757, - [799] = 756, - [800] = 800, - [801] = 771, - [802] = 754, - [803] = 753, - [804] = 770, - [805] = 769, - [806] = 768, - [807] = 758, - [808] = 755, - [809] = 759, - [810] = 810, - [811] = 811, - [812] = 810, - [813] = 811, - [814] = 810, - [815] = 811, - [816] = 810, - [817] = 811, - [818] = 810, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 811, - [823] = 810, - [824] = 824, - [825] = 825, - [826] = 826, + [779] = 477, + [780] = 478, + [781] = 490, + [782] = 481, + [783] = 477, + [784] = 496, + [785] = 496, + [786] = 478, + [787] = 473, + [788] = 478, + [789] = 481, + [790] = 477, + [791] = 473, + [792] = 478, + [793] = 481, + [794] = 481, + [795] = 483, + [796] = 478, + [797] = 496, + [798] = 473, + [799] = 473, + [800] = 511, + [801] = 478, + [802] = 477, + [803] = 481, + [804] = 723, + [805] = 481, + [806] = 481, + [807] = 477, + [808] = 490, + [809] = 477, + [810] = 477, + [811] = 490, + [812] = 478, + [813] = 475, + [814] = 479, + [815] = 490, + [816] = 735, + [817] = 778, + [818] = 477, + [819] = 473, + [820] = 556, + [821] = 653, + [822] = 822, + [823] = 550, + [824] = 545, + [825] = 723, + [826] = 612, [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 811, - [832] = 810, - [833] = 811, - [834] = 810, - [835] = 811, - [836] = 810, - [837] = 811, - [838] = 810, - [839] = 811, - [840] = 810, - [841] = 811, - [842] = 810, - [843] = 811, - [844] = 810, - [845] = 811, - [846] = 810, - [847] = 811, - [848] = 810, - [849] = 811, - [850] = 810, - [851] = 811, - [852] = 810, - [853] = 853, - [854] = 854, - [855] = 811, - [856] = 856, - [857] = 810, - [858] = 820, - [859] = 765, - [860] = 828, - [861] = 764, - [862] = 862, - [863] = 811, - [864] = 763, - [865] = 762, - [866] = 761, - [867] = 811, - [868] = 760, + [828] = 616, + [829] = 735, + [830] = 596, + [831] = 719, + [832] = 550, + [833] = 623, + [834] = 500, + [835] = 555, + [836] = 734, + [837] = 612, + [838] = 743, + [839] = 596, + [840] = 616, + [841] = 550, + [842] = 596, + [843] = 535, + [844] = 571, + [845] = 822, + [846] = 511, + [847] = 603, + [848] = 475, + [849] = 479, + [850] = 616, + [851] = 619, + [852] = 622, + [853] = 612, + [854] = 741, + [855] = 500, + [856] = 596, + [857] = 524, + [858] = 556, + [859] = 859, + [860] = 860, + [861] = 735, + [862] = 586, + [863] = 474, + [864] = 723, + [865] = 500, + [866] = 603, + [867] = 616, + [868] = 735, [869] = 869, - [870] = 757, - [871] = 856, - [872] = 810, - [873] = 756, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 811, - [878] = 869, - [879] = 879, - [880] = 862, - [881] = 811, - [882] = 882, - [883] = 883, - [884] = 820, - [885] = 811, - [886] = 821, - [887] = 824, - [888] = 825, - [889] = 856, - [890] = 810, - [891] = 826, - [892] = 827, - [893] = 828, - [894] = 811, - [895] = 829, - [896] = 874, - [897] = 830, - [898] = 811, - [899] = 875, - [900] = 767, - [901] = 811, - [902] = 902, - [903] = 853, - [904] = 811, - [905] = 811, - [906] = 766, - [907] = 765, - [908] = 856, - [909] = 810, - [910] = 764, - [911] = 763, - [912] = 762, - [913] = 811, - [914] = 761, - [915] = 811, - [916] = 760, - [917] = 879, - [918] = 869, - [919] = 757, - [920] = 811, - [921] = 756, - [922] = 874, - [923] = 875, - [924] = 856, - [925] = 810, - [926] = 811, - [927] = 811, - [928] = 879, - [929] = 929, - [930] = 811, - [931] = 862, - [932] = 932, - [933] = 882, - [934] = 869, - [935] = 824, - [936] = 825, - [937] = 811, - [938] = 826, - [939] = 827, - [940] = 828, - [941] = 856, - [942] = 810, - [943] = 829, - [944] = 830, - [945] = 853, - [946] = 946, - [947] = 874, - [948] = 810, - [949] = 825, - [950] = 950, - [951] = 869, - [952] = 811, - [953] = 875, - [954] = 811, - [955] = 879, - [956] = 856, - [957] = 810, - [958] = 853, - [959] = 767, - [960] = 862, - [961] = 830, - [962] = 862, - [963] = 882, - [964] = 882, - [965] = 829, - [966] = 876, - [967] = 821, - [968] = 819, - [969] = 820, - [970] = 821, - [971] = 824, - [972] = 811, - [973] = 824, - [974] = 825, - [975] = 826, - [976] = 827, - [977] = 828, - [978] = 829, - [979] = 830, - [980] = 980, - [981] = 826, - [982] = 827, - [983] = 856, - [984] = 810, - [985] = 828, - [986] = 829, - [987] = 830, - [988] = 875, - [989] = 767, + [870] = 612, + [871] = 737, + [872] = 492, + [873] = 498, + [874] = 550, + [875] = 737, + [876] = 474, + [877] = 571, + [878] = 565, + [879] = 860, + [880] = 741, + [881] = 881, + [882] = 743, + [883] = 734, + [884] = 623, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 719, + [889] = 550, + [890] = 561, + [891] = 557, + [892] = 557, + [893] = 723, + [894] = 524, + [895] = 895, + [896] = 561, + [897] = 897, + [898] = 511, + [899] = 637, + [900] = 475, + [901] = 901, + [902] = 479, + [903] = 571, + [904] = 904, + [905] = 561, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 557, + [910] = 910, + [911] = 911, + [912] = 546, + [913] = 653, + [914] = 623, + [915] = 556, + [916] = 622, + [917] = 535, + [918] = 615, + [919] = 619, + [920] = 920, + [921] = 555, + [922] = 737, + [923] = 545, + [924] = 924, + [925] = 550, + [926] = 474, + [927] = 827, + [928] = 741, + [929] = 869, + [930] = 735, + [931] = 931, + [932] = 743, + [933] = 734, + [934] = 546, + [935] = 719, + [936] = 619, + [937] = 546, + [938] = 498, + [939] = 637, + [940] = 924, + [941] = 778, + [942] = 778, + [943] = 920, + [944] = 944, + [945] = 486, + [946] = 859, + [947] = 492, + [948] = 615, + [949] = 571, + [950] = 723, + [951] = 586, + [952] = 561, + [953] = 653, + [954] = 592, + [955] = 944, + [956] = 500, + [957] = 911, + [958] = 603, + [959] = 557, + [960] = 556, + [961] = 555, + [962] = 546, + [963] = 910, + [964] = 498, + [965] = 908, + [966] = 904, + [967] = 901, + [968] = 653, + [969] = 907, + [970] = 622, + [971] = 550, + [972] = 906, + [973] = 550, + [974] = 622, + [975] = 737, + [976] = 619, + [977] = 474, + [978] = 859, + [979] = 741, + [980] = 743, + [981] = 734, + [982] = 623, + [983] = 719, + [984] = 550, + [985] = 555, + [986] = 897, + [987] = 486, + [988] = 653, + [989] = 653, [990] = 990, - [991] = 853, - [992] = 766, - [993] = 765, - [994] = 811, - [995] = 764, - [996] = 763, - [997] = 762, - [998] = 853, - [999] = 854, - [1000] = 856, - [1001] = 810, - [1002] = 761, - [1003] = 760, - [1004] = 757, + [991] = 895, + [992] = 550, + [993] = 603, + [994] = 603, + [995] = 498, + [996] = 565, + [997] = 881, + [998] = 885, + [999] = 886, + [1000] = 887, + [1001] = 592, + [1002] = 931, + [1003] = 603, + [1004] = 859, [1005] = 1005, - [1006] = 756, + [1006] = 1006, [1007] = 1007, - [1008] = 827, - [1009] = 854, - [1010] = 853, - [1011] = 874, - [1012] = 811, - [1013] = 862, - [1014] = 882, - [1015] = 821, - [1016] = 856, - [1017] = 810, - [1018] = 824, - [1019] = 825, - [1020] = 826, - [1021] = 827, - [1022] = 826, - [1023] = 869, - [1024] = 828, - [1025] = 829, - [1026] = 825, - [1027] = 830, - [1028] = 767, - [1029] = 853, - [1030] = 811, - [1031] = 766, - [1032] = 765, - [1033] = 764, - [1034] = 856, - [1035] = 810, - [1036] = 763, - [1037] = 762, - [1038] = 761, - [1039] = 874, - [1040] = 760, - [1041] = 862, - [1042] = 875, - [1043] = 757, - [1044] = 882, - [1045] = 819, - [1046] = 756, - [1047] = 874, - [1048] = 820, - [1049] = 811, - [1050] = 821, - [1051] = 824, - [1052] = 869, - [1053] = 1053, - [1054] = 856, - [1055] = 810, - [1056] = 875, - [1057] = 824, - [1058] = 879, - [1059] = 879, - [1060] = 825, - [1061] = 826, - [1062] = 827, - [1063] = 828, - [1064] = 724, - [1065] = 820, - [1066] = 811, - [1067] = 829, - [1068] = 869, - [1069] = 830, - [1070] = 875, - [1071] = 853, - [1072] = 856, - [1073] = 810, - [1074] = 1074, - [1075] = 879, - [1076] = 754, - [1077] = 821, - [1078] = 754, - [1079] = 820, - [1080] = 724, - [1081] = 882, - [1082] = 820, - [1083] = 862, - [1084] = 869, - [1085] = 811, - [1086] = 747, - [1087] = 875, - [1088] = 819, - [1089] = 879, - [1090] = 856, - [1091] = 810, - [1092] = 820, - [1093] = 821, - [1094] = 747, - [1095] = 820, - [1096] = 821, - [1097] = 879, - [1098] = 1098, - [1099] = 811, - [1100] = 869, - [1101] = 869, - [1102] = 747, - [1103] = 1103, - [1104] = 862, - [1105] = 882, - [1106] = 826, - [1107] = 875, - [1108] = 811, - [1109] = 879, - [1110] = 819, - [1111] = 820, - [1112] = 821, - [1113] = 879, - [1114] = 874, - [1115] = 824, - [1116] = 825, - [1117] = 826, - [1118] = 827, - [1119] = 828, - [1120] = 829, - [1121] = 830, - [1122] = 875, - [1123] = 856, - [1124] = 810, - [1125] = 724, - [1126] = 821, - [1127] = 724, - [1128] = 821, - [1129] = 1129, - [1130] = 874, - [1131] = 821, - [1132] = 820, - [1133] = 821, - [1134] = 820, - [1135] = 821, - [1136] = 821, - [1137] = 821, - [1138] = 821, - [1139] = 821, - [1140] = 853, - [1141] = 854, - [1142] = 869, - [1143] = 821, - [1144] = 1129, - [1145] = 875, - [1146] = 869, - [1147] = 821, - [1148] = 875, - [1149] = 821, - [1150] = 879, - [1151] = 821, - [1152] = 821, - [1153] = 879, - [1154] = 821, - [1155] = 754, - [1156] = 821, - [1157] = 950, - [1158] = 821, - [1159] = 830, - [1160] = 829, - [1161] = 879, - [1162] = 828, - [1163] = 827, - [1164] = 820, - [1165] = 869, - [1166] = 869, - [1167] = 766, - [1168] = 825, - [1169] = 824, - [1170] = 875, - [1171] = 820, - [1172] = 811, - [1173] = 754, - [1174] = 869, - [1175] = 821, - [1176] = 821, - [1177] = 1177, - [1178] = 820, - [1179] = 856, - [1180] = 810, - [1181] = 874, - [1182] = 1182, - [1183] = 819, - [1184] = 875, - [1185] = 879, - [1186] = 747, - [1187] = 747, - [1188] = 879, - [1189] = 1189, - [1190] = 875, - [1191] = 875, - [1192] = 869, - [1193] = 821, - [1194] = 747, - [1195] = 821, - [1196] = 820, - [1197] = 1197, - [1198] = 747, - [1199] = 747, - [1200] = 879, - [1201] = 879, - [1202] = 747, - [1203] = 875, - [1204] = 1204, - [1205] = 869, - [1206] = 747, - [1207] = 821, - [1208] = 820, - [1209] = 747, - [1210] = 1129, - [1211] = 747, - [1212] = 810, - [1213] = 820, - [1214] = 869, - [1215] = 879, - [1216] = 875, - [1217] = 875, - [1218] = 875, - [1219] = 875, - [1220] = 869, - [1221] = 874, - [1222] = 821, - [1223] = 820, - [1224] = 879, - [1225] = 854, - [1226] = 879, - [1227] = 821, - [1228] = 875, - [1229] = 879, - [1230] = 929, - [1231] = 869, - [1232] = 1232, - [1233] = 821, - [1234] = 820, - [1235] = 723, - [1236] = 821, - [1237] = 879, - [1238] = 723, - [1239] = 875, - [1240] = 810, - [1241] = 821, - [1242] = 869, - [1243] = 821, - [1244] = 821, - [1245] = 820, - [1246] = 862, - [1247] = 882, - [1248] = 821, - [1249] = 723, - [1250] = 879, - [1251] = 821, - [1252] = 819, - [1253] = 820, - [1254] = 821, - [1255] = 875, - [1256] = 821, - [1257] = 824, - [1258] = 825, - [1259] = 826, - [1260] = 827, - [1261] = 828, - [1262] = 829, - [1263] = 830, - [1264] = 869, - [1265] = 723, - [1266] = 821, - [1267] = 820, - [1268] = 821, - [1269] = 821, - [1270] = 879, - [1271] = 821, - [1272] = 875, - [1273] = 882, - [1274] = 869, - [1275] = 821, - [1276] = 821, - [1277] = 820, - [1278] = 821, - [1279] = 821, - [1280] = 879, - [1281] = 821, - [1282] = 853, - [1283] = 854, - [1284] = 875, - [1285] = 869, - [1286] = 820, - [1287] = 821, - [1288] = 820, - [1289] = 810, - [1290] = 856, - [1291] = 879, - [1292] = 810, - [1293] = 810, - [1294] = 875, - [1295] = 862, - [1296] = 811, - [1297] = 869, - [1298] = 810, - [1299] = 821, - [1300] = 820, - [1301] = 810, - [1302] = 869, - [1303] = 879, - [1304] = 811, - [1305] = 856, - [1306] = 875, - [1307] = 869, - [1308] = 856, - [1309] = 810, - [1310] = 856, - [1311] = 869, - [1312] = 819, - [1313] = 810, - [1314] = 821, - [1315] = 820, - [1316] = 810, - [1317] = 1129, - [1318] = 856, - [1319] = 946, - [1320] = 950, - [1321] = 879, - [1322] = 811, - [1323] = 874, - [1324] = 879, - [1325] = 875, - [1326] = 875, - [1327] = 856, - [1328] = 875, - [1329] = 856, - [1330] = 869, - [1331] = 876, - [1332] = 821, - [1333] = 820, - [1334] = 869, - [1335] = 990, - [1336] = 1005, - [1337] = 879, - [1338] = 1007, - [1339] = 875, - [1340] = 810, - [1341] = 882, - [1342] = 869, - [1343] = 879, - [1344] = 854, - [1345] = 821, - [1346] = 820, - [1347] = 853, - [1348] = 820, - [1349] = 879, - [1350] = 946, - [1351] = 875, - [1352] = 810, - [1353] = 950, - [1354] = 810, - [1355] = 869, - [1356] = 811, - [1357] = 821, - [1358] = 820, - [1359] = 882, - [1360] = 1007, - [1361] = 727, - [1362] = 879, - [1363] = 1005, - [1364] = 875, - [1365] = 724, - [1366] = 810, - [1367] = 869, - [1368] = 876, - [1369] = 821, - [1370] = 820, - [1371] = 729, - [1372] = 990, - [1373] = 879, - [1374] = 990, - [1375] = 875, - [1376] = 810, - [1377] = 810, - [1378] = 869, - [1379] = 869, - [1380] = 821, - [1381] = 820, - [1382] = 1005, - [1383] = 1007, - [1384] = 879, - [1385] = 730, - [1386] = 875, - [1387] = 811, - [1388] = 862, - [1389] = 882, - [1390] = 821, - [1391] = 869, - [1392] = 830, - [1393] = 821, - [1394] = 819, - [1395] = 820, - [1396] = 821, - [1397] = 820, - [1398] = 829, - [1399] = 824, - [1400] = 825, - [1401] = 826, - [1402] = 827, - [1403] = 828, - [1404] = 829, - [1405] = 830, - [1406] = 828, - [1407] = 879, - [1408] = 827, - [1409] = 875, - [1410] = 874, - [1411] = 724, - [1412] = 869, - [1413] = 826, - [1414] = 821, - [1415] = 820, - [1416] = 825, - [1417] = 824, - [1418] = 778, - [1419] = 854, - [1420] = 775, - [1421] = 1177, - [1422] = 731, - [1423] = 879, - [1424] = 853, - [1425] = 854, - [1426] = 724, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 778, - [1431] = 854, - [1432] = 732, - [1433] = 821, - [1434] = 820, - [1435] = 875, - [1436] = 775, - [1437] = 902, - [1438] = 854, - [1439] = 862, - [1440] = 882, - [1441] = 869, - [1442] = 819, - [1443] = 821, - [1444] = 824, - [1445] = 825, - [1446] = 1053, - [1447] = 1447, - [1448] = 826, - [1449] = 869, - [1450] = 827, - [1451] = 1074, - [1452] = 828, - [1453] = 829, - [1454] = 811, - [1455] = 830, - [1456] = 853, - [1457] = 821, - [1458] = 820, - [1459] = 1182, - [1460] = 854, - [1461] = 733, - [1462] = 1177, - [1463] = 874, - [1464] = 724, - [1465] = 874, - [1466] = 778, - [1467] = 856, - [1468] = 875, - [1469] = 810, - [1470] = 734, - [1471] = 775, - [1472] = 735, - [1473] = 736, - [1474] = 730, - [1475] = 731, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1012, + [1014] = 1014, + [1015] = 1006, + [1016] = 1014, + [1017] = 1012, + [1018] = 1011, + [1019] = 1019, + [1020] = 1010, + [1021] = 1021, + [1022] = 1007, + [1023] = 1023, + [1024] = 1007, + [1025] = 1019, + [1026] = 1014, + [1027] = 1012, + [1028] = 1011, + [1029] = 1010, + [1030] = 1007, + [1031] = 1009, + [1032] = 1032, + [1033] = 1019, + [1034] = 1014, + [1035] = 1012, + [1036] = 1011, + [1037] = 1010, + [1038] = 1007, + [1039] = 1019, + [1040] = 1040, + [1041] = 1014, + [1042] = 1012, + [1043] = 1043, + [1044] = 1011, + [1045] = 1010, + [1046] = 1007, + [1047] = 1040, + [1048] = 1048, + [1049] = 1049, + [1050] = 1019, + [1051] = 1014, + [1052] = 1012, + [1053] = 1011, + [1054] = 1010, + [1055] = 1055, + [1056] = 1007, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1019, + [1061] = 1014, + [1062] = 1012, + [1063] = 1011, + [1064] = 1064, + [1065] = 1065, + [1066] = 1057, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1005, + [1072] = 1072, + [1073] = 1073, + [1074] = 1069, + [1075] = 1068, + [1076] = 1064, + [1077] = 1032, + [1078] = 1073, + [1079] = 1072, + [1080] = 1021, + [1081] = 907, + [1082] = 1005, + [1083] = 1070, + [1084] = 1010, + [1085] = 1007, + [1086] = 1067, + [1087] = 1057, + [1088] = 1065, + [1089] = 1019, + [1090] = 1009, + [1091] = 1014, + [1092] = 1059, + [1093] = 1058, + [1094] = 1007, + [1095] = 1049, + [1096] = 1048, + [1097] = 1006, + [1098] = 1008, + [1099] = 1011, + [1100] = 1010, + [1101] = 1021, + [1102] = 1040, + [1103] = 1032, + [1104] = 1007, + [1105] = 1019, + [1106] = 1014, + [1107] = 1012, + [1108] = 1008, + [1109] = 1006, + [1110] = 1110, + [1111] = 1011, + [1112] = 1010, + [1113] = 1007, + [1114] = 1067, + [1115] = 1019, + [1116] = 906, + [1117] = 1007, + [1118] = 1014, + [1119] = 1067, + [1120] = 1032, + [1121] = 1009, + [1122] = 1110, + [1123] = 1070, + [1124] = 1005, + [1125] = 1072, + [1126] = 1073, + [1127] = 1010, + [1128] = 1012, + [1129] = 1011, + [1130] = 1069, + [1131] = 1021, + [1132] = 1011, + [1133] = 1010, + [1134] = 1011, + [1135] = 1032, + [1136] = 1010, + [1137] = 1023, + [1138] = 1067, + [1139] = 1012, + [1140] = 1021, + [1141] = 1048, + [1142] = 1019, + [1143] = 1049, + [1144] = 1057, + [1145] = 1057, + [1146] = 1065, + [1147] = 1059, + [1148] = 1014, + [1149] = 1058, + [1150] = 1067, + [1151] = 1023, + [1152] = 1014, + [1153] = 1012, + [1154] = 1011, + [1155] = 1010, + [1156] = 1007, + [1157] = 1019, + [1158] = 1009, + [1159] = 1014, + [1160] = 1012, + [1161] = 1040, + [1162] = 1019, + [1163] = 1011, + [1164] = 1007, + [1165] = 1012, + [1166] = 1057, + [1167] = 653, + [1168] = 1032, + [1169] = 1068, + [1170] = 1021, + [1171] = 1010, + [1172] = 1009, + [1173] = 619, + [1174] = 1007, + [1175] = 1019, + [1176] = 1064, + [1177] = 1014, + [1178] = 1012, + [1179] = 1011, + [1180] = 622, + [1181] = 1010, + [1182] = 498, + [1183] = 1183, + [1184] = 546, + [1185] = 555, + [1186] = 1186, + [1187] = 1009, + [1188] = 1006, + [1189] = 1008, + [1190] = 1006, + [1191] = 1008, + [1192] = 1009, + [1193] = 1057, + [1194] = 653, + [1195] = 1040, + [1196] = 944, + [1197] = 1032, + [1198] = 1021, + [1199] = 1023, + [1200] = 1023, + [1201] = 1058, + [1202] = 1202, + [1203] = 1203, + [1204] = 1059, + [1205] = 1009, + [1206] = 897, + [1207] = 1058, + [1208] = 1059, + [1209] = 1065, + [1210] = 1065, + [1211] = 556, + [1212] = 557, + [1213] = 561, + [1214] = 1065, + [1215] = 1057, + [1216] = 1067, + [1217] = 1057, + [1218] = 571, + [1219] = 1070, + [1220] = 1005, + [1221] = 1072, + [1222] = 1073, + [1223] = 1069, + [1224] = 1068, + [1225] = 1064, + [1226] = 1040, + [1227] = 1057, + [1228] = 895, + [1229] = 1008, + [1230] = 1032, + [1231] = 1021, + [1232] = 1032, + [1233] = 1009, + [1234] = 1057, + [1235] = 1049, + [1236] = 1014, + [1237] = 1237, + [1238] = 1238, + [1239] = 1048, + [1240] = 1006, + [1241] = 1241, + [1242] = 1021, + [1243] = 1006, + [1244] = 1049, + [1245] = 1048, + [1246] = 1040, + [1247] = 1008, + [1248] = 1058, + [1249] = 1048, + [1250] = 1023, + [1251] = 1251, + [1252] = 1049, + [1253] = 1253, + [1254] = 1254, + [1255] = 1059, + [1256] = 1256, + [1257] = 1040, + [1258] = 1059, + [1259] = 1023, + [1260] = 1021, + [1261] = 1009, + [1262] = 1058, + [1263] = 1059, + [1264] = 1058, + [1265] = 1006, + [1266] = 1057, + [1267] = 1049, + [1268] = 1008, + [1269] = 1032, + [1270] = 1270, + [1271] = 1057, + [1272] = 1057, + [1273] = 1048, + [1274] = 1032, + [1275] = 1021, + [1276] = 1276, + [1277] = 1277, + [1278] = 859, + [1279] = 1021, + [1280] = 1032, + [1281] = 1281, + [1282] = 1032, + [1283] = 1009, + [1284] = 1021, + [1285] = 1009, + [1286] = 1023, + [1287] = 1032, + [1288] = 1064, + [1289] = 1021, + [1290] = 1068, + [1291] = 1069, + [1292] = 1049, + [1293] = 1073, + [1294] = 1006, + [1295] = 1072, + [1296] = 1005, + [1297] = 1008, + [1298] = 1006, + [1299] = 1070, + [1300] = 1040, + [1301] = 1067, + [1302] = 1019, + [1303] = 1110, + [1304] = 1067, + [1305] = 1021, + [1306] = 1070, + [1307] = 1009, + [1308] = 1008, + [1309] = 1005, + [1310] = 1067, + [1311] = 1072, + [1312] = 1067, + [1313] = 1073, + [1314] = 1069, + [1315] = 1068, + [1316] = 1064, + [1317] = 1067, + [1318] = 1318, + [1319] = 1319, + [1320] = 1067, + [1321] = 1067, + [1322] = 859, + [1323] = 887, + [1324] = 1324, + [1325] = 1057, + [1326] = 619, + [1327] = 1067, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1067, + [1333] = 1333, + [1334] = 1009, + [1335] = 1238, + [1336] = 1067, + [1337] = 1337, + [1338] = 1048, + [1339] = 1008, + [1340] = 1241, + [1341] = 1067, + [1342] = 1006, + [1343] = 1251, + [1344] = 1344, + [1345] = 1345, + [1346] = 1253, + [1347] = 1254, + [1348] = 1067, + [1349] = 1256, + [1350] = 822, + [1351] = 1006, + [1352] = 886, + [1353] = 1067, + [1354] = 1354, + [1355] = 1058, + [1356] = 1059, + [1357] = 1276, + [1358] = 885, + [1359] = 887, + [1360] = 1360, + [1361] = 622, + [1362] = 1065, + [1363] = 1057, + [1364] = 1067, + [1365] = 1365, + [1366] = 1048, + [1367] = 1070, + [1368] = 1005, + [1369] = 1072, + [1370] = 1073, + [1371] = 1069, + [1372] = 1068, + [1373] = 1064, + [1374] = 1318, + [1375] = 1375, + [1376] = 1319, + [1377] = 1049, + [1378] = 1009, + [1379] = 1324, + [1380] = 1328, + [1381] = 1329, + [1382] = 1330, + [1383] = 1331, + [1384] = 546, + [1385] = 1009, + [1386] = 555, + [1387] = 886, + [1388] = 1337, + [1389] = 1021, + [1390] = 1344, + [1391] = 556, + [1392] = 1049, + [1393] = 1048, + [1394] = 1073, + [1395] = 822, + [1396] = 944, + [1397] = 1397, + [1398] = 557, + [1399] = 561, + [1400] = 571, + [1401] = 1401, + [1402] = 1032, + [1403] = 1021, + [1404] = 1360, + [1405] = 885, + [1406] = 1009, + [1407] = 1365, + [1408] = 1408, + [1409] = 1409, + [1410] = 1058, + [1411] = 860, + [1412] = 1277, + [1413] = 1375, + [1414] = 1032, + [1415] = 1057, + [1416] = 1006, + [1417] = 1032, + [1418] = 1048, + [1419] = 881, + [1420] = 1397, + [1421] = 1401, + [1422] = 1408, + [1423] = 1409, + [1424] = 1049, + [1425] = 1067, + [1426] = 1057, + [1427] = 1059, + [1428] = 1058, + [1429] = 1059, + [1430] = 1430, + [1431] = 1431, + [1432] = 1067, + [1433] = 1067, + [1434] = 1023, + [1435] = 887, + [1436] = 1008, + [1437] = 1021, + [1438] = 1067, + [1439] = 886, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 859, + [1444] = 1064, + [1445] = 1445, + [1446] = 1446, + [1447] = 1067, + [1448] = 1068, + [1449] = 1430, + [1450] = 1067, + [1451] = 1451, + [1452] = 1069, + [1453] = 1073, + [1454] = 1072, + [1455] = 1009, + [1456] = 1431, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1005, + [1463] = 1023, + [1464] = 1067, + [1465] = 1070, + [1466] = 1040, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1006, + [1472] = 1472, + [1473] = 1067, + [1474] = 1474, + [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 727, - [1481] = 1476, - [1482] = 1477, - [1483] = 1478, - [1484] = 1479, - [1485] = 879, - [1486] = 732, - [1487] = 752, - [1488] = 862, - [1489] = 753, - [1490] = 1427, - [1491] = 733, - [1492] = 879, - [1493] = 729, - [1494] = 734, - [1495] = 735, - [1496] = 736, - [1497] = 875, - [1498] = 869, - [1499] = 874, - [1500] = 727, - [1501] = 729, - [1502] = 730, - [1503] = 731, - [1504] = 732, - [1505] = 869, - [1506] = 733, - [1507] = 734, - [1508] = 735, - [1509] = 736, - [1510] = 730, - [1511] = 731, - [1512] = 727, - [1513] = 732, - [1514] = 733, - [1515] = 1515, - [1516] = 854, - [1517] = 853, - [1518] = 729, - [1519] = 734, - [1520] = 830, - [1521] = 829, - [1522] = 828, - [1523] = 827, - [1524] = 826, - [1525] = 825, - [1526] = 824, - [1527] = 821, - [1528] = 820, - [1529] = 882, - [1530] = 862, - [1531] = 882, - [1532] = 862, - [1533] = 1533, - [1534] = 778, - [1535] = 735, - [1536] = 819, - [1537] = 820, - [1538] = 821, - [1539] = 777, - [1540] = 736, - [1541] = 824, - [1542] = 825, - [1543] = 826, - [1544] = 827, - [1545] = 828, - [1546] = 829, - [1547] = 830, - [1548] = 946, - [1549] = 1549, - [1550] = 950, - [1551] = 879, - [1552] = 1552, - [1553] = 755, - [1554] = 876, - [1555] = 1428, - [1556] = 875, - [1557] = 854, - [1558] = 874, - [1559] = 758, - [1560] = 1007, - [1561] = 776, - [1562] = 1562, + [1480] = 1057, + [1481] = 1040, + [1482] = 1440, + [1483] = 1067, + [1484] = 1065, + [1485] = 1441, + [1486] = 1442, + [1487] = 1009, + [1488] = 1070, + [1489] = 1067, + [1490] = 1445, + [1491] = 1005, + [1492] = 1072, + [1493] = 1059, + [1494] = 1058, + [1495] = 1008, + [1496] = 1023, + [1497] = 1446, + [1498] = 1021, + [1499] = 1069, + [1500] = 1058, + [1501] = 1059, + [1502] = 1068, + [1503] = 881, + [1504] = 1504, + [1505] = 550, + [1506] = 1065, + [1507] = 1057, + [1508] = 1067, + [1509] = 1064, + [1510] = 1010, + [1511] = 1070, + [1512] = 1005, + [1513] = 1072, + [1514] = 1073, + [1515] = 1069, + [1516] = 1068, + [1517] = 1064, + [1518] = 1057, + [1519] = 1011, + [1520] = 885, + [1521] = 1057, + [1522] = 1522, + [1523] = 1070, + [1524] = 1005, + [1525] = 1451, + [1526] = 1032, + [1527] = 1032, + [1528] = 1021, + [1529] = 1072, + [1530] = 1012, + [1531] = 1065, + [1532] = 1073, + [1533] = 1009, + [1534] = 1069, + [1535] = 1021, + [1536] = 1049, + [1537] = 1048, + [1538] = 1068, + [1539] = 1064, + [1540] = 1457, + [1541] = 1006, + [1542] = 1008, + [1543] = 881, + [1544] = 1010, + [1545] = 1032, + [1546] = 1023, + [1547] = 1021, + [1548] = 1548, + [1549] = 1009, + [1550] = 1057, + [1551] = 1070, + [1552] = 1040, + [1553] = 1072, + [1554] = 1073, + [1555] = 1069, + [1556] = 1068, + [1557] = 1011, + [1558] = 1014, + [1559] = 1064, + [1560] = 1023, + [1561] = 1032, + [1562] = 737, [1563] = 1563, - [1564] = 759, - [1565] = 869, - [1566] = 853, - [1567] = 854, - [1568] = 775, - [1569] = 946, - [1570] = 876, - [1571] = 774, - [1572] = 1007, - [1573] = 1573, - [1574] = 1574, - [1575] = 990, - [1576] = 1576, - [1577] = 773, - [1578] = 854, - [1579] = 853, - [1580] = 1580, - [1581] = 1005, - [1582] = 1582, - [1583] = 768, - [1584] = 1584, - [1585] = 830, - [1586] = 829, - [1587] = 828, - [1588] = 827, - [1589] = 854, - [1590] = 826, - [1591] = 869, - [1592] = 820, - [1593] = 825, - [1594] = 824, - [1595] = 1007, - [1596] = 821, - [1597] = 820, - [1598] = 819, - [1599] = 882, - [1600] = 821, - [1601] = 772, - [1602] = 862, - [1603] = 946, - [1604] = 1604, - [1605] = 1605, - [1606] = 1606, - [1607] = 874, - [1608] = 950, - [1609] = 1609, - [1610] = 875, - [1611] = 1611, - [1612] = 1005, - [1613] = 876, - [1614] = 1129, - [1615] = 1005, - [1616] = 990, - [1617] = 769, - [1618] = 876, - [1619] = 771, - [1620] = 770, - [1621] = 879, - [1622] = 771, - [1623] = 876, - [1624] = 875, - [1625] = 856, - [1626] = 874, - [1627] = 879, - [1628] = 772, - [1629] = 869, - [1630] = 875, - [1631] = 773, - [1632] = 950, - [1633] = 774, - [1634] = 770, - [1635] = 854, - [1636] = 853, - [1637] = 990, - [1638] = 776, - [1639] = 830, - [1640] = 829, - [1641] = 828, - [1642] = 827, - [1643] = 769, - [1644] = 826, - [1645] = 1005, - [1646] = 825, - [1647] = 824, - [1648] = 777, - [1649] = 821, - [1650] = 820, - [1651] = 882, - [1652] = 862, - [1653] = 1007, - [1654] = 946, - [1655] = 1129, - [1656] = 950, - [1657] = 946, - [1658] = 879, - [1659] = 1533, - [1660] = 1007, - [1661] = 1611, - [1662] = 875, - [1663] = 879, - [1664] = 874, - [1665] = 1609, - [1666] = 876, - [1667] = 1606, - [1668] = 1605, - [1669] = 1604, - [1670] = 869, - [1671] = 1671, - [1672] = 862, - [1673] = 882, - [1674] = 1005, - [1675] = 990, - [1676] = 854, - [1677] = 853, - [1678] = 820, - [1679] = 821, - [1680] = 1005, - [1681] = 830, - [1682] = 824, - [1683] = 825, - [1684] = 826, - [1685] = 827, - [1686] = 828, - [1687] = 829, - [1688] = 830, - [1689] = 829, - [1690] = 828, - [1691] = 827, - [1692] = 1584, - [1693] = 826, - [1694] = 825, - [1695] = 824, - [1696] = 821, - [1697] = 820, - [1698] = 1007, - [1699] = 768, - [1700] = 1582, - [1701] = 882, - [1702] = 990, - [1703] = 862, - [1704] = 1580, - [1705] = 946, - [1706] = 990, - [1707] = 853, - [1708] = 854, - [1709] = 950, - [1710] = 1574, - [1711] = 1573, - [1712] = 876, - [1713] = 1515, - [1714] = 950, - [1715] = 879, - [1716] = 876, - [1717] = 946, - [1718] = 990, - [1719] = 875, - [1720] = 1005, - [1721] = 1007, - [1722] = 862, - [1723] = 946, - [1724] = 950, - [1725] = 1007, - [1726] = 1005, - [1727] = 990, - [1728] = 874, - [1729] = 882, - [1730] = 824, - [1731] = 869, - [1732] = 869, - [1733] = 825, - [1734] = 826, - [1735] = 876, - [1736] = 876, - [1737] = 854, - [1738] = 853, - [1739] = 759, - [1740] = 1563, - [1741] = 1562, - [1742] = 950, - [1743] = 758, - [1744] = 830, - [1745] = 829, - [1746] = 990, - [1747] = 1005, - [1748] = 874, - [1749] = 854, - [1750] = 828, - [1751] = 875, - [1752] = 827, - [1753] = 1007, - [1754] = 826, - [1755] = 825, - [1756] = 824, - [1757] = 821, - [1758] = 820, - [1759] = 752, - [1760] = 946, - [1761] = 882, - [1762] = 755, - [1763] = 1552, - [1764] = 862, + [1564] = 474, + [1565] = 741, + [1566] = 1057, + [1567] = 1067, + [1568] = 1023, + [1569] = 1012, + [1570] = 1040, + [1571] = 1458, + [1572] = 1032, + [1573] = 1021, + [1574] = 1067, + [1575] = 1070, + [1576] = 1009, + [1577] = 1023, + [1578] = 1005, + [1579] = 1072, + [1580] = 1021, + [1581] = 1073, + [1582] = 1069, + [1583] = 1040, + [1584] = 1068, + [1585] = 1006, + [1586] = 1064, + [1587] = 1023, + [1588] = 1008, + [1589] = 550, + [1590] = 881, + [1591] = 1040, + [1592] = 885, + [1593] = 1067, + [1594] = 1057, + [1595] = 886, + [1596] = 1040, + [1597] = 1009, + [1598] = 1019, + [1599] = 887, + [1600] = 1032, + [1601] = 653, + [1602] = 1021, + [1603] = 1008, + [1604] = 1006, + [1605] = 1057, + [1606] = 1067, + [1607] = 1459, + [1608] = 1007, + [1609] = 1009, + [1610] = 1610, + [1611] = 1032, + [1612] = 1006, + [1613] = 1021, + [1614] = 1040, + [1615] = 1009, + [1616] = 1006, + [1617] = 1040, + [1618] = 1006, + [1619] = 1281, + [1620] = 1040, + [1621] = 1006, + [1622] = 1006, + [1623] = 1040, + [1624] = 1460, + [1625] = 1006, + [1626] = 1461, + [1627] = 1006, + [1628] = 1628, + [1629] = 1006, + [1630] = 1006, + [1631] = 1006, + [1632] = 1040, + [1633] = 743, + [1634] = 1032, + [1635] = 1009, + [1636] = 1021, + [1637] = 1021, + [1638] = 1032, + [1639] = 1009, + [1640] = 1057, + [1641] = 1040, + [1642] = 1058, + [1643] = 1059, + [1644] = 1057, + [1645] = 1006, + [1646] = 1040, + [1647] = 1008, + [1648] = 1065, + [1649] = 1057, + [1650] = 1067, + [1651] = 1006, + [1652] = 1110, + [1653] = 1070, + [1654] = 1005, + [1655] = 1072, + [1656] = 1073, + [1657] = 1069, + [1658] = 1068, + [1659] = 1064, + [1660] = 1202, + [1661] = 1067, + [1662] = 859, + [1663] = 1009, + [1664] = 1067, + [1665] = 734, + [1666] = 1021, + [1667] = 1032, + [1668] = 1067, + [1669] = 1057, + [1670] = 1040, + [1671] = 1008, + [1672] = 1008, + [1673] = 1006, + [1674] = 1006, + [1675] = 1058, + [1676] = 1009, + [1677] = 596, + [1678] = 1049, + [1679] = 1048, + [1680] = 1040, + [1681] = 1059, + [1682] = 1009, + [1683] = 1021, + [1684] = 1032, + [1685] = 1006, + [1686] = 1040, + [1687] = 1467, + [1688] = 1049, + [1689] = 1006, + [1690] = 1048, + [1691] = 1040, + [1692] = 1058, + [1693] = 1021, + [1694] = 1067, + [1695] = 1059, + [1696] = 1057, + [1697] = 1067, + [1698] = 1049, + [1699] = 1032, + [1700] = 1048, + [1701] = 1468, + [1702] = 1032, + [1703] = 1032, + [1704] = 1057, + [1705] = 1067, + [1706] = 1067, + [1707] = 1067, + [1708] = 1067, + [1709] = 1021, + [1710] = 859, + [1711] = 1067, + [1712] = 1469, + [1713] = 1009, + [1714] = 1067, + [1715] = 1067, + [1716] = 616, + [1717] = 612, + [1718] = 1023, + [1719] = 1006, + [1720] = 1067, + [1721] = 1021, + [1722] = 1058, + [1723] = 1059, + [1724] = 1067, + [1725] = 1067, + [1726] = 1057, + [1727] = 1067, + [1728] = 1067, + [1729] = 1049, + [1730] = 603, + [1731] = 1048, + [1732] = 1009, + [1733] = 1032, + [1734] = 1032, + [1735] = 1470, + [1736] = 1009, + [1737] = 1021, + [1738] = 1009, + [1739] = 1014, + [1740] = 1009, + [1741] = 1021, + [1742] = 1032, + [1743] = 1006, + [1744] = 1067, + [1745] = 1008, + [1746] = 1057, + [1747] = 1067, + [1748] = 1057, + [1749] = 869, + [1750] = 1032, + [1751] = 1021, + [1752] = 859, + [1753] = 1009, + [1754] = 1472, + [1755] = 550, + [1756] = 1008, + [1757] = 550, + [1758] = 1057, + [1759] = 1032, + [1760] = 1021, + [1761] = 1474, + [1762] = 1009, + [1763] = 1475, + [1764] = 1008, [1765] = 1765, - [1766] = 950, - [1767] = 879, - [1768] = 879, - [1769] = 950, - [1770] = 879, - [1771] = 876, - [1772] = 875, - [1773] = 810, - [1774] = 874, - [1775] = 946, - [1776] = 1776, - [1777] = 1549, - [1778] = 990, - [1779] = 869, - [1780] = 827, - [1781] = 1007, - [1782] = 854, - [1783] = 853, - [1784] = 1005, - [1785] = 830, - [1786] = 1007, - [1787] = 829, - [1788] = 828, - [1789] = 827, - [1790] = 826, - [1791] = 825, - [1792] = 824, - [1793] = 821, - [1794] = 820, - [1795] = 819, - [1796] = 882, - [1797] = 862, - [1798] = 753, - [1799] = 946, - [1800] = 950, - [1801] = 879, - [1802] = 1005, - [1803] = 875, - [1804] = 828, - [1805] = 874, - [1806] = 829, - [1807] = 869, - [1808] = 830, - [1809] = 990, - [1810] = 854, - [1811] = 853, - [1812] = 830, - [1813] = 862, - [1814] = 882, - [1815] = 829, - [1816] = 828, - [1817] = 827, - [1818] = 826, - [1819] = 820, - [1820] = 821, - [1821] = 825, - [1822] = 824, - [1823] = 824, - [1824] = 825, - [1825] = 826, - [1826] = 827, - [1827] = 828, - [1828] = 829, - [1829] = 830, - [1830] = 821, - [1831] = 820, - [1832] = 882, - [1833] = 862, - [1834] = 876, - [1835] = 950, - [1836] = 879, - [1837] = 990, - [1838] = 875, - [1839] = 853, - [1840] = 1005, - [1841] = 874, - [1842] = 856, - [1843] = 869, - [1844] = 946, - [1845] = 1007, - [1846] = 854, - [1847] = 853, - [1848] = 853, - [1849] = 854, - [1850] = 830, - [1851] = 829, - [1852] = 828, - [1853] = 827, - [1854] = 826, - [1855] = 825, - [1856] = 824, - [1857] = 821, - [1858] = 946, - [1859] = 820, - [1860] = 882, - [1861] = 862, - [1862] = 950, - [1863] = 876, - [1864] = 875, - [1865] = 990, - [1866] = 1005, - [1867] = 1007, - [1868] = 946, - [1869] = 874, - [1870] = 932, + [1766] = 1476, + [1767] = 1057, + [1768] = 1477, + [1769] = 1769, + [1770] = 860, + [1771] = 1478, + [1772] = 901, + [1773] = 1006, + [1774] = 1067, + [1775] = 1479, + [1776] = 904, + [1777] = 1070, + [1778] = 908, + [1779] = 910, + [1780] = 911, + [1781] = 1006, + [1782] = 500, + [1783] = 1058, + [1784] = 1059, + [1785] = 1032, + [1786] = 1067, + [1787] = 735, + [1788] = 1005, + [1789] = 1057, + [1790] = 1067, + [1791] = 1032, + [1792] = 1072, + [1793] = 1070, + [1794] = 1005, + [1795] = 1072, + [1796] = 1073, + [1797] = 1069, + [1798] = 1068, + [1799] = 1064, + [1800] = 1073, + [1801] = 1021, + [1802] = 1055, + [1803] = 920, + [1804] = 1203, + [1805] = 1068, + [1806] = 1064, + [1807] = 1019, + [1808] = 1808, + [1809] = 1040, + [1810] = 1067, + [1811] = 924, + [1812] = 1009, + [1813] = 1008, + [1814] = 653, + [1815] = 931, + [1816] = 1816, + [1817] = 1057, + [1818] = 1049, + [1819] = 1048, + [1820] = 735, + [1821] = 1067, + [1822] = 869, + [1823] = 1048, + [1824] = 1032, + [1825] = 1070, + [1826] = 1049, + [1827] = 1057, + [1828] = 1059, + [1829] = 1058, + [1830] = 1007, + [1831] = 737, + [1832] = 474, + [1833] = 1005, + [1834] = 741, + [1835] = 743, + [1836] = 734, + [1837] = 623, + [1838] = 719, + [1839] = 1072, + [1840] = 1021, + [1841] = 1333, + [1842] = 1032, + [1843] = 1009, + [1844] = 1073, + [1845] = 1069, + [1846] = 1064, + [1847] = 1068, + [1848] = 1040, + [1849] = 1069, + [1850] = 907, + [1851] = 906, + [1852] = 1040, + [1853] = 1006, + [1854] = 1073, + [1855] = 1072, + [1856] = 1006, + [1857] = 1006, + [1858] = 1023, + [1859] = 1859, + [1860] = 1005, + [1861] = 1021, + [1862] = 1067, + [1863] = 1040, + [1864] = 1070, + [1865] = 1068, + [1866] = 1064, + [1867] = 931, + [1868] = 1067, + [1869] = 1869, + [1870] = 1021, [1871] = 1871, - [1872] = 879, - [1873] = 869, - [1874] = 1562, - [1875] = 756, - [1876] = 723, - [1877] = 775, - [1878] = 1129, - [1879] = 724, - [1880] = 1129, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1584, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 760, - [1894] = 761, - [1895] = 762, - [1896] = 763, - [1897] = 1129, - [1898] = 1898, - [1899] = 1129, - [1900] = 724, - [1901] = 1129, - [1902] = 764, - [1903] = 1903, - [1904] = 767, - [1905] = 1905, - [1906] = 723, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 765, - [1911] = 1129, - [1912] = 1912, - [1913] = 1913, - [1914] = 747, - [1915] = 1574, - [1916] = 1129, - [1917] = 1917, - [1918] = 1918, - [1919] = 766, - [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 778, - [1925] = 1604, - [1926] = 1574, - [1927] = 1927, - [1928] = 1476, - [1929] = 1477, - [1930] = 1605, - [1931] = 1931, - [1932] = 1580, - [1933] = 1573, - [1934] = 1606, - [1935] = 1478, - [1936] = 1609, - [1937] = 1479, - [1938] = 1476, - [1939] = 1611, - [1940] = 1940, - [1941] = 1889, - [1942] = 1888, - [1943] = 724, - [1944] = 1944, - [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1582, - [1952] = 1913, - [1953] = 1953, - [1954] = 1580, - [1955] = 1927, - [1956] = 757, - [1957] = 1957, - [1958] = 1549, - [1959] = 775, - [1960] = 756, - [1961] = 1573, - [1962] = 1582, - [1963] = 1477, - [1964] = 1886, - [1965] = 1883, - [1966] = 1881, - [1967] = 1918, - [1968] = 1478, - [1969] = 1969, - [1970] = 1917, - [1971] = 1479, - [1972] = 1892, - [1973] = 1909, - [1974] = 1912, - [1975] = 1940, - [1976] = 1931, - [1977] = 1907, - [1978] = 1903, - [1979] = 1898, - [1980] = 1950, - [1981] = 754, - [1982] = 1515, - [1983] = 1891, - [1984] = 1890, - [1985] = 1882, - [1986] = 1563, - [1987] = 1884, - [1988] = 1562, - [1989] = 1887, - [1990] = 1584, - [1991] = 1905, - [1992] = 1908, - [1993] = 1950, - [1994] = 754, - [1995] = 766, - [1996] = 1953, - [1997] = 1920, - [1998] = 1923, - [1999] = 1944, - [2000] = 1945, - [2001] = 1515, - [2002] = 2002, - [2003] = 1479, - [2004] = 2004, - [2005] = 1946, - [2006] = 1515, - [2007] = 1947, - [2008] = 1948, - [2009] = 765, - [2010] = 1552, - [2011] = 1949, - [2012] = 1552, - [2013] = 1478, - [2014] = 767, - [2015] = 2015, - [2016] = 778, - [2017] = 1604, - [2018] = 1605, - [2019] = 2019, - [2020] = 1515, - [2021] = 1477, - [2022] = 1476, - [2023] = 1549, - [2024] = 1606, - [2025] = 1609, - [2026] = 1611, - [2027] = 1533, - [2028] = 1479, - [2029] = 2029, - [2030] = 1478, - [2031] = 1477, - [2032] = 764, - [2033] = 724, - [2034] = 763, - [2035] = 1129, - [2036] = 762, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 1574, - [2042] = 2042, - [2043] = 730, - [2044] = 731, - [2045] = 732, - [2046] = 733, - [2047] = 747, - [2048] = 734, - [2049] = 747, - [2050] = 2050, - [2051] = 761, - [2052] = 735, - [2053] = 2053, - [2054] = 736, - [2055] = 747, - [2056] = 1950, - [2057] = 1921, - [2058] = 747, - [2059] = 2059, - [2060] = 1476, - [2061] = 727, - [2062] = 1922, - [2063] = 729, - [2064] = 760, - [2065] = 1129, - [2066] = 1957, - [2067] = 1969, - [2068] = 1574, - [2069] = 1940, - [2070] = 1563, - [2071] = 2015, - [2072] = 1533, - [2073] = 1950, - [2074] = 2029, - [2075] = 2019, - [2076] = 2037, - [2077] = 2002, - [2078] = 747, - [2079] = 2004, - [2080] = 2040, - [2081] = 729, - [2082] = 2038, - [2083] = 2059, - [2084] = 727, - [2085] = 757, - [2086] = 1950, - [2087] = 1940, - [2088] = 736, - [2089] = 2039, - [2090] = 735, - [2091] = 734, - [2092] = 733, - [2093] = 732, - [2094] = 731, - [2095] = 730, - [2096] = 2042, - [2097] = 2050, - [2098] = 1129, - [2099] = 2053, - [2100] = 1953, - [2101] = 1478, - [2102] = 1129, - [2103] = 1574, - [2104] = 1940, - [2105] = 1940, - [2106] = 2040, - [2107] = 1940, - [2108] = 2042, - [2109] = 2050, - [2110] = 2053, - [2111] = 1479, - [2112] = 1909, - [2113] = 1477, - [2114] = 1476, - [2115] = 312, - [2116] = 2059, - [2117] = 1908, - [2118] = 1927, - [2119] = 1940, - [2120] = 1515, - [2121] = 1515, - [2122] = 1913, - [2123] = 1918, - [2124] = 2004, - [2125] = 1953, - [2126] = 2038, - [2127] = 1479, - [2128] = 312, - [2129] = 1889, - [2130] = 2002, - [2131] = 1477, - [2132] = 1888, - [2133] = 1886, - [2134] = 1883, - [2135] = 1881, - [2136] = 1920, - [2137] = 312, - [2138] = 1476, - [2139] = 1917, - [2140] = 1923, - [2141] = 1892, - [2142] = 1944, - [2143] = 1912, - [2144] = 312, - [2145] = 1945, - [2146] = 1949, - [2147] = 1950, - [2148] = 1948, - [2149] = 1969, - [2150] = 1957, - [2151] = 1950, - [2152] = 1947, - [2153] = 2015, - [2154] = 1950, - [2155] = 1950, - [2156] = 1946, - [2157] = 1946, - [2158] = 312, - [2159] = 1945, - [2160] = 1944, - [2161] = 1907, - [2162] = 1921, - [2163] = 1922, - [2164] = 1129, - [2165] = 1950, - [2166] = 1923, - [2167] = 1957, - [2168] = 1969, - [2169] = 1903, - [2170] = 1947, - [2171] = 1920, - [2172] = 312, - [2173] = 2039, - [2174] = 1478, - [2175] = 2002, - [2176] = 2004, - [2177] = 1908, - [2178] = 2040, - [2179] = 1905, - [2180] = 1887, - [2181] = 1884, - [2182] = 1882, - [2183] = 1890, - [2184] = 1891, - [2185] = 2019, - [2186] = 1948, - [2187] = 1898, - [2188] = 1898, - [2189] = 1903, - [2190] = 1907, - [2191] = 1949, - [2192] = 1912, - [2193] = 1917, - [2194] = 1950, - [2195] = 2059, - [2196] = 2029, - [2197] = 2019, - [2198] = 1918, - [2199] = 1950, - [2200] = 1927, - [2201] = 2053, - [2202] = 1913, - [2203] = 1891, - [2204] = 1129, - [2205] = 1889, - [2206] = 1888, - [2207] = 1931, - [2208] = 1129, - [2209] = 1950, - [2210] = 1950, - [2211] = 2050, - [2212] = 2042, - [2213] = 2039, - [2214] = 1886, - [2215] = 1883, - [2216] = 1890, - [2217] = 1881, - [2218] = 1882, - [2219] = 1892, - [2220] = 1909, - [2221] = 1931, - [2222] = 1884, - [2223] = 2038, - [2224] = 2037, - [2225] = 1887, - [2226] = 1574, - [2227] = 1922, - [2228] = 2015, - [2229] = 2029, - [2230] = 1905, - [2231] = 1950, - [2232] = 2037, - [2233] = 1921, - [2234] = 312, - [2235] = 312, - [2236] = 1950, - [2237] = 1950, - [2238] = 312, - [2239] = 1950, - [2240] = 1950, - [2241] = 312, - [2242] = 312, - [2243] = 312, - [2244] = 312, - [2245] = 312, - [2246] = 312, - [2247] = 727, - [2248] = 760, - [2249] = 761, - [2250] = 762, - [2251] = 312, - [2252] = 724, - [2253] = 778, - [2254] = 773, - [2255] = 757, - [2256] = 763, - [2257] = 764, - [2258] = 765, - [2259] = 762, - [2260] = 756, - [2261] = 761, - [2262] = 760, - [2263] = 757, - [2264] = 768, - [2265] = 767, - [2266] = 777, - [2267] = 312, - [2268] = 756, - [2269] = 776, - [2270] = 723, - [2271] = 766, - [2272] = 727, - [2273] = 774, - [2274] = 723, - [2275] = 763, - [2276] = 747, - [2277] = 764, - [2278] = 765, - [2279] = 759, - [2280] = 766, - [2281] = 754, - [2282] = 772, - [2283] = 773, - [2284] = 771, - [2285] = 773, - [2286] = 775, - [2287] = 724, - [2288] = 777, - [2289] = 729, - [2290] = 736, - [2291] = 736, - [2292] = 767, - [2293] = 777, - [2294] = 735, - [2295] = 755, - [2296] = 747, - [2297] = 734, - [2298] = 770, - [2299] = 747, - [2300] = 769, - [2301] = 733, - [2302] = 312, - [2303] = 732, - [2304] = 731, - [2305] = 730, - [2306] = 747, - [2307] = 753, - [2308] = 754, - [2309] = 747, - [2310] = 730, - [2311] = 731, - [2312] = 752, - [2313] = 724, - [2314] = 724, - [2315] = 732, - [2316] = 733, - [2317] = 734, - [2318] = 778, - [2319] = 747, - [2320] = 758, - [2321] = 735, - [2322] = 729, - [2323] = 1478, - [2324] = 1515, - [2325] = 312, - [2326] = 1129, - [2327] = 1129, - [2328] = 1129, - [2329] = 1129, - [2330] = 771, - [2331] = 1549, - [2332] = 1552, - [2333] = 1562, - [2334] = 1611, - [2335] = 1563, - [2336] = 312, - [2337] = 312, - [2338] = 1129, - [2339] = 1580, - [2340] = 770, - [2341] = 312, - [2342] = 1582, - [2343] = 1604, - [2344] = 312, - [2345] = 1605, - [2346] = 1606, - [2347] = 1609, - [2348] = 1476, - [2349] = 769, - [2350] = 723, - [2351] = 724, - [2352] = 1129, - [2353] = 1477, - [2354] = 1478, - [2355] = 1479, - [2356] = 312, - [2357] = 747, - [2358] = 754, - [2359] = 312, - [2360] = 756, - [2361] = 757, - [2362] = 1515, - [2363] = 760, - [2364] = 1574, - [2365] = 1533, - [2366] = 772, - [2367] = 761, - [2368] = 762, - [2369] = 763, - [2370] = 764, - [2371] = 765, - [2372] = 766, - [2373] = 747, - [2374] = 730, - [2375] = 731, - [2376] = 732, - [2377] = 733, - [2378] = 734, - [2379] = 735, - [2380] = 736, - [2381] = 727, - [2382] = 312, - [2383] = 729, - [2384] = 1573, - [2385] = 775, - [2386] = 767, - [2387] = 1476, - [2388] = 1477, - [2389] = 1479, - [2390] = 752, - [2391] = 774, - [2392] = 1573, - [2393] = 752, - [2394] = 775, - [2395] = 753, - [2396] = 1533, - [2397] = 312, - [2398] = 778, - [2399] = 724, - [2400] = 753, - [2401] = 755, - [2402] = 1129, - [2403] = 776, - [2404] = 1584, - [2405] = 768, - [2406] = 759, - [2407] = 1533, - [2408] = 747, - [2409] = 758, - [2410] = 774, - [2411] = 1949, - [2412] = 1909, - [2413] = 2037, - [2414] = 1582, - [2415] = 1580, - [2416] = 2029, - [2417] = 2029, - [2418] = 1580, - [2419] = 2015, - [2420] = 1582, - [2421] = 768, - [2422] = 2037, - [2423] = 2038, - [2424] = 2042, - [2425] = 2050, - [2426] = 1584, - [2427] = 2053, - [2428] = 1931, - [2429] = 2059, - [2430] = 2004, - [2431] = 1909, - [2432] = 312, - [2433] = 2019, - [2434] = 2040, - [2435] = 1604, - [2436] = 1605, - [2437] = 1892, - [2438] = 1606, - [2439] = 2040, - [2440] = 1881, - [2441] = 1609, - [2442] = 2004, - [2443] = 1883, - [2444] = 1886, - [2445] = 1888, - [2446] = 1889, - [2447] = 2002, - [2448] = 1563, - [2449] = 1562, - [2450] = 1913, - [2451] = 1927, - [2452] = 1611, - [2453] = 1950, - [2454] = 1969, - [2455] = 1957, - [2456] = 1969, - [2457] = 1881, - [2458] = 1957, - [2459] = 1922, - [2460] = 1918, - [2461] = 1917, - [2462] = 1912, - [2463] = 1921, - [2464] = 1907, - [2465] = 1903, - [2466] = 769, - [2467] = 770, - [2468] = 2039, - [2469] = 1552, - [2470] = 1898, - [2471] = 754, - [2472] = 2042, - [2473] = 752, - [2474] = 771, - [2475] = 1940, - [2476] = 1891, - [2477] = 1890, - [2478] = 1882, - [2479] = 1884, - [2480] = 1887, - [2481] = 756, - [2482] = 2050, - [2483] = 1549, - [2484] = 757, - [2485] = 772, - [2486] = 1905, - [2487] = 1908, - [2488] = 1953, - [2489] = 1920, - [2490] = 1940, - [2491] = 1923, - [2492] = 2019, - [2493] = 1944, - [2494] = 1945, - [2495] = 1946, - [2496] = 1947, - [2497] = 1948, - [2498] = 2002, - [2499] = 2059, - [2500] = 1584, - [2501] = 760, - [2502] = 761, - [2503] = 762, - [2504] = 763, - [2505] = 1129, - [2506] = 2053, - [2507] = 764, - [2508] = 765, - [2509] = 766, - [2510] = 1922, - [2511] = 773, - [2512] = 774, - [2513] = 2053, - [2514] = 1574, - [2515] = 775, - [2516] = 2050, - [2517] = 1921, - [2518] = 767, - [2519] = 2015, - [2520] = 2059, - [2521] = 2042, - [2522] = 776, - [2523] = 2039, - [2524] = 2038, - [2525] = 2037, - [2526] = 1940, - [2527] = 1574, - [2528] = 747, - [2529] = 2029, - [2530] = 1476, - [2531] = 1477, - [2532] = 777, - [2533] = 1478, - [2534] = 1479, - [2535] = 778, - [2536] = 1950, - [2537] = 2015, - [2538] = 724, - [2539] = 753, - [2540] = 747, - [2541] = 1931, - [2542] = 2038, - [2543] = 1950, - [2544] = 747, - [2545] = 1892, - [2546] = 1918, - [2547] = 1912, - [2548] = 1883, - [2549] = 1515, - [2550] = 747, - [2551] = 747, - [2552] = 747, - [2553] = 767, - [2554] = 1886, - [2555] = 1888, - [2556] = 1889, - [2557] = 2019, - [2558] = 1950, - [2559] = 759, - [2560] = 778, - [2561] = 1563, - [2562] = 1604, - [2563] = 1605, - [2564] = 1931, - [2565] = 1606, - [2566] = 2040, - [2567] = 766, - [2568] = 765, - [2569] = 1909, - [2570] = 764, - [2571] = 763, - [2572] = 762, - [2573] = 761, - [2574] = 760, - [2575] = 1609, - [2576] = 2004, - [2577] = 2002, - [2578] = 1562, - [2579] = 1611, - [2580] = 1969, - [2581] = 1892, - [2582] = 1881, - [2583] = 1883, - [2584] = 1886, - [2585] = 1888, - [2586] = 1889, - [2587] = 1913, - [2588] = 1957, - [2589] = 1927, - [2590] = 724, - [2591] = 758, - [2592] = 1918, - [2593] = 757, - [2594] = 756, - [2595] = 1917, - [2596] = 1922, - [2597] = 1907, - [2598] = 1903, - [2599] = 1898, - [2600] = 1913, - [2601] = 1891, - [2602] = 1890, - [2603] = 1882, - [2604] = 1884, - [2605] = 729, - [2606] = 1940, - [2607] = 727, - [2608] = 736, - [2609] = 735, - [2610] = 734, - [2611] = 733, - [2612] = 754, - [2613] = 732, - [2614] = 1921, - [2615] = 1887, - [2616] = 731, - [2617] = 730, - [2618] = 1950, - [2619] = 729, - [2620] = 727, - [2621] = 1950, - [2622] = 736, - [2623] = 1949, - [2624] = 735, - [2625] = 734, - [2626] = 733, - [2627] = 732, - [2628] = 731, - [2629] = 730, - [2630] = 1905, - [2631] = 1908, - [2632] = 1948, - [2633] = 1947, - [2634] = 1946, - [2635] = 1945, - [2636] = 1944, - [2637] = 1927, - [2638] = 1923, - [2639] = 1953, - [2640] = 1920, - [2641] = 1923, - [2642] = 1944, - [2643] = 1945, - [2644] = 1950, - [2645] = 1947, - [2646] = 1948, - [2647] = 1949, - [2648] = 1946, - [2649] = 1940, - [2650] = 1920, - [2651] = 1953, - [2652] = 1908, - [2653] = 1905, - [2654] = 312, - [2655] = 2039, - [2656] = 1549, - [2657] = 1887, - [2658] = 1884, - [2659] = 1882, - [2660] = 1129, - [2661] = 1890, - [2662] = 1891, - [2663] = 312, - [2664] = 1898, - [2665] = 1552, - [2666] = 755, - [2667] = 1903, - [2668] = 723, - [2669] = 724, - [2670] = 1907, - [2671] = 1912, - [2672] = 724, - [2673] = 1917, - [2674] = 723, - [2675] = 771, - [2676] = 735, - [2677] = 1129, - [2678] = 724, - [2679] = 723, - [2680] = 1129, - [2681] = 1129, - [2682] = 730, - [2683] = 731, - [2684] = 732, - [2685] = 733, - [2686] = 734, - [2687] = 768, - [2688] = 736, - [2689] = 727, - [2690] = 729, - [2691] = 1950, - [2692] = 747, - [2693] = 312, - [2694] = 767, - [2695] = 747, - [2696] = 747, - [2697] = 1476, - [2698] = 769, - [2699] = 1477, - [2700] = 1478, - [2701] = 1479, - [2702] = 1476, - [2703] = 1477, - [2704] = 1478, - [2705] = 1479, - [2706] = 1129, - [2707] = 1533, - [2708] = 766, - [2709] = 765, - [2710] = 1611, - [2711] = 764, - [2712] = 763, - [2713] = 762, - [2714] = 761, - [2715] = 760, - [2716] = 1609, - [2717] = 1606, - [2718] = 770, - [2719] = 1605, - [2720] = 1604, - [2721] = 752, - [2722] = 1584, - [2723] = 753, - [2724] = 1582, - [2725] = 1580, - [2726] = 759, - [2727] = 1573, - [2728] = 755, - [2729] = 1515, - [2730] = 758, - [2731] = 1574, - [2732] = 1562, - [2733] = 757, - [2734] = 756, - [2735] = 1552, - [2736] = 1549, - [2737] = 1563, - [2738] = 1129, - [2739] = 1940, - [2740] = 776, - [2741] = 775, - [2742] = 1573, - [2743] = 1950, - [2744] = 772, - [2745] = 771, - [2746] = 770, - [2747] = 758, - [2748] = 769, - [2749] = 755, - [2750] = 772, - [2751] = 724, - [2752] = 754, - [2753] = 778, - [2754] = 777, - [2755] = 768, - [2756] = 776, - [2757] = 759, - [2758] = 775, - [2759] = 774, - [2760] = 1515, - [2761] = 773, - [2762] = 733, - [2763] = 1478, - [2764] = 772, - [2765] = 723, - [2766] = 724, - [2767] = 758, - [2768] = 757, - [2769] = 731, - [2770] = 771, - [2771] = 755, - [2772] = 754, - [2773] = 747, - [2774] = 1573, - [2775] = 1574, - [2776] = 747, - [2777] = 763, - [2778] = 1883, - [2779] = 1580, - [2780] = 759, - [2781] = 762, - [2782] = 761, - [2783] = 1582, - [2784] = 1563, - [2785] = 776, - [2786] = 760, - [2787] = 769, - [2788] = 761, - [2789] = 762, - [2790] = 760, - [2791] = 1584, - [2792] = 763, - [2793] = 724, - [2794] = 747, - [2795] = 747, - [2796] = 1476, - [2797] = 1477, - [2798] = 1940, - [2799] = 732, - [2800] = 772, - [2801] = 757, - [2802] = 756, - [2803] = 752, - [2804] = 1129, - [2805] = 1479, - [2806] = 747, - [2807] = 753, - [2808] = 771, - [2809] = 1604, - [2810] = 1515, - [2811] = 1605, - [2812] = 1606, - [2813] = 764, - [2814] = 1609, - [2815] = 777, - [2816] = 765, - [2817] = 753, - [2818] = 1611, - [2819] = 1921, - [2820] = 1922, - [2821] = 747, - [2822] = 754, - [2823] = 1562, - [2824] = 1129, - [2825] = 770, - [2826] = 1957, - [2827] = 766, - [2828] = 773, - [2829] = 778, - [2830] = 774, - [2831] = 770, - [2832] = 1969, - [2833] = 752, - [2834] = 769, - [2835] = 724, - [2836] = 1940, - [2837] = 1129, - [2838] = 1950, - [2839] = 1950, - [2840] = 724, - [2841] = 769, - [2842] = 2002, - [2843] = 2004, - [2844] = 1549, - [2845] = 2040, - [2846] = 1574, - [2847] = 2019, - [2848] = 723, - [2849] = 1950, - [2850] = 724, - [2851] = 775, - [2852] = 747, - [2853] = 778, - [2854] = 765, - [2855] = 730, - [2856] = 1950, - [2857] = 776, - [2858] = 731, - [2859] = 730, - [2860] = 756, - [2861] = 772, - [2862] = 770, - [2863] = 734, - [2864] = 735, - [2865] = 736, - [2866] = 727, - [2867] = 729, - [2868] = 766, - [2869] = 727, - [2870] = 1533, - [2871] = 777, - [2872] = 732, - [2873] = 747, - [2874] = 733, - [2875] = 2059, - [2876] = 2053, - [2877] = 729, - [2878] = 767, - [2879] = 724, - [2880] = 734, - [2881] = 735, - [2882] = 736, - [2883] = 730, - [2884] = 767, - [2885] = 731, - [2886] = 2050, - [2887] = 1949, - [2888] = 1948, - [2889] = 2042, - [2890] = 1947, - [2891] = 1946, - [2892] = 1945, - [2893] = 1944, - [2894] = 2039, - [2895] = 773, - [2896] = 1940, - [2897] = 764, - [2898] = 758, - [2899] = 1923, - [2900] = 1920, - [2901] = 1953, - [2902] = 1908, - [2903] = 1905, - [2904] = 771, - [2905] = 766, - [2906] = 732, - [2907] = 733, - [2908] = 734, - [2909] = 775, - [2910] = 765, - [2911] = 1887, - [2912] = 1884, - [2913] = 1882, - [2914] = 735, - [2915] = 1890, - [2916] = 1891, - [2917] = 764, - [2918] = 775, - [2919] = 763, - [2920] = 762, - [2921] = 2038, - [2922] = 736, - [2923] = 1898, - [2924] = 2037, - [2925] = 768, - [2926] = 755, - [2927] = 1950, - [2928] = 2029, - [2929] = 761, - [2930] = 767, - [2931] = 774, - [2932] = 1903, - [2933] = 1907, - [2934] = 760, - [2935] = 1912, - [2936] = 1917, - [2937] = 1918, - [2938] = 757, - [2939] = 727, - [2940] = 756, - [2941] = 2015, - [2942] = 778, - [2943] = 747, - [2944] = 754, - [2945] = 723, - [2946] = 1881, - [2947] = 729, - [2948] = 747, - [2949] = 1927, - [2950] = 1913, - [2951] = 758, - [2952] = 1892, - [2953] = 1909, - [2954] = 759, - [2955] = 1889, - [2956] = 1931, - [2957] = 768, - [2958] = 1888, - [2959] = 1552, - [2960] = 1886, - [2961] = 776, - [2962] = 1912, - [2963] = 1573, - [2964] = 1574, - [2965] = 1609, - [2966] = 1907, - [2967] = 1903, - [2968] = 1584, - [2969] = 1582, - [2970] = 1580, - [2971] = 1606, - [2972] = 1604, - [2973] = 754, - [2974] = 1479, - [2975] = 736, - [2976] = 730, - [2977] = 731, - [2978] = 732, - [2979] = 1478, - [2980] = 1898, - [2981] = 1515, - [2982] = 768, - [2983] = 1573, - [2984] = 759, - [2985] = 755, - [2986] = 1891, - [2987] = 733, - [2988] = 734, - [2989] = 1950, - [2990] = 1611, - [2991] = 756, - [2992] = 735, - [2993] = 1533, - [2994] = 1881, - [2995] = 727, - [2996] = 1515, - [2997] = 1890, - [2998] = 729, - [2999] = 775, - [3000] = 1940, - [3001] = 757, - [3002] = 1477, - [3003] = 1882, - [3004] = 1476, - [3005] = 1129, - [3006] = 778, - [3007] = 724, - [3008] = 767, - [3009] = 1950, - [3010] = 724, - [3011] = 1604, - [3012] = 1605, - [3013] = 1574, - [3014] = 1606, - [3015] = 1609, - [3016] = 1584, - [3017] = 1129, - [3018] = 1884, - [3019] = 1887, - [3020] = 766, - [3021] = 1562, - [3022] = 1917, - [3023] = 1129, - [3024] = 1918, - [3025] = 1923, - [3026] = 1611, - [3027] = 1533, - [3028] = 1129, - [3029] = 1905, - [3030] = 1479, - [3031] = 1478, - [3032] = 1477, - [3033] = 1476, - [3034] = 1927, - [3035] = 1913, - [3036] = 1949, - [3037] = 1573, - [3038] = 761, - [3039] = 1948, - [3040] = 1129, - [3041] = 1515, - [3042] = 1129, - [3043] = 1549, - [3044] = 1574, - [3045] = 1479, - [3046] = 1478, - [3047] = 1477, - [3048] = 1476, - [3049] = 1908, - [3050] = 1953, - [3051] = 1921, - [3052] = 765, - [3053] = 764, - [3054] = 747, - [3055] = 1957, - [3056] = 1969, - [3057] = 1950, - [3058] = 2002, - [3059] = 2004, - [3060] = 2040, - [3061] = 763, - [3062] = 1920, - [3063] = 1922, - [3064] = 1552, - [3065] = 2019, - [3066] = 760, - [3067] = 1562, - [3068] = 1940, - [3069] = 1563, - [3070] = 2059, - [3071] = 747, - [3072] = 747, - [3073] = 1129, - [3074] = 2053, - [3075] = 2050, - [3076] = 2042, - [3077] = 2039, - [3078] = 1580, - [3079] = 2038, - [3080] = 723, - [3081] = 1944, - [3082] = 2037, - [3083] = 1563, - [3084] = 1549, - [3085] = 2029, - [3086] = 2015, - [3087] = 1889, - [3088] = 762, - [3089] = 1945, - [3090] = 1946, - [3091] = 1888, - [3092] = 1552, - [3093] = 1886, - [3094] = 1129, - [3095] = 1947, - [3096] = 1582, - [3097] = 1605, - [3098] = 1883, - [3099] = 1931, - [3100] = 1909, - [3101] = 1892, - [3102] = 2037, - [3103] = 1945, - [3104] = 1479, - [3105] = 1891, - [3106] = 1903, - [3107] = 1907, - [3108] = 1912, - [3109] = 1917, - [3110] = 1918, - [3111] = 2038, - [3112] = 2037, - [3113] = 1478, - [3114] = 1940, - [3115] = 2039, - [3116] = 1884, - [3117] = 1892, - [3118] = 1881, - [3119] = 1927, - [3120] = 1913, - [3121] = 1882, - [3122] = 1898, - [3123] = 1890, - [3124] = 1950, - [3125] = 2042, - [3126] = 1889, - [3127] = 1888, - [3128] = 1886, - [3129] = 1883, - [3130] = 1909, - [3131] = 1905, - [3132] = 2029, - [3133] = 1881, - [3134] = 1908, - [3135] = 1892, - [3136] = 1953, - [3137] = 1920, - [3138] = 1923, - [3139] = 2050, - [3140] = 1944, - [3141] = 1945, - [3142] = 1946, - [3143] = 1947, - [3144] = 1950, - [3145] = 1883, - [3146] = 1948, - [3147] = 1949, - [3148] = 1476, - [3149] = 1886, - [3150] = 1888, - [3151] = 1889, - [3152] = 1913, - [3153] = 1931, - [3154] = 1927, - [3155] = 1476, - [3156] = 1918, - [3157] = 2015, - [3158] = 1477, - [3159] = 1917, - [3160] = 1912, - [3161] = 1907, - [3162] = 1478, - [3163] = 1903, - [3164] = 1940, - [3165] = 1898, - [3166] = 1479, - [3167] = 1891, - [3168] = 1890, - [3169] = 1950, - [3170] = 1882, - [3171] = 1884, - [3172] = 1887, - [3173] = 1905, - [3174] = 1908, - [3175] = 1953, - [3176] = 1950, - [3177] = 2053, - [3178] = 2059, - [3179] = 1909, - [3180] = 2019, - [3181] = 1940, - [3182] = 1940, - [3183] = 1920, - [3184] = 1923, - [3185] = 1479, - [3186] = 1944, - [3187] = 2015, - [3188] = 1515, - [3189] = 1887, - [3190] = 2029, - [3191] = 2040, - [3192] = 1946, - [3193] = 1478, - [3194] = 1947, - [3195] = 2038, - [3196] = 2039, - [3197] = 2042, - [3198] = 2050, - [3199] = 1948, - [3200] = 2053, - [3201] = 2059, - [3202] = 1949, - [3203] = 1921, - [3204] = 2004, - [3205] = 2002, - [3206] = 1940, - [3207] = 1922, - [3208] = 1477, - [3209] = 1476, - [3210] = 1957, - [3211] = 1969, - [3212] = 1940, - [3213] = 1950, - [3214] = 1477, - [3215] = 2002, - [3216] = 2004, - [3217] = 774, - [3218] = 2040, - [3219] = 1129, - [3220] = 1950, - [3221] = 1969, - [3222] = 1950, - [3223] = 1957, - [3224] = 1129, - [3225] = 1574, - [3226] = 1922, - [3227] = 1921, - [3228] = 1931, - [3229] = 2019, - [3230] = 1950, - [3231] = 1580, - [3232] = 1477, - [3233] = 1950, - [3234] = 1478, - [3235] = 1479, - [3236] = 1479, - [3237] = 1478, - [3238] = 1479, - [3239] = 1477, - [3240] = 1478, - [3241] = 1476, - [3242] = 1477, - [3243] = 1476, - [3244] = 1479, - [3245] = 1478, - [3246] = 1950, - [3247] = 1477, - [3248] = 1476, - [3249] = 1476, - [3250] = 1476, - [3251] = 1478, - [3252] = 1477, - [3253] = 1478, - [3254] = 1477, - [3255] = 1479, - [3256] = 1476, - [3257] = 1479, - [3258] = 1476, - [3259] = 1477, - [3260] = 1478, - [3261] = 1479, - [3262] = 1476, - [3263] = 1477, - [3264] = 1478, - [3265] = 1479, - [3266] = 735, - [3267] = 730, - [3268] = 731, - [3269] = 727, - [3270] = 734, - [3271] = 729, - [3272] = 734, - [3273] = 729, - [3274] = 727, - [3275] = 736, - [3276] = 723, - [3277] = 1479, - [3278] = 1478, - [3279] = 736, - [3280] = 1477, - [3281] = 1476, - [3282] = 731, - [3283] = 730, - [3284] = 733, - [3285] = 312, - [3286] = 735, - [3287] = 732, - [3288] = 723, - [3289] = 733, - [3290] = 312, - [3291] = 312, - [3292] = 732, - [3293] = 731, - [3294] = 1479, - [3295] = 736, - [3296] = 727, - [3297] = 735, - [3298] = 730, - [3299] = 1476, - [3300] = 730, - [3301] = 731, - [3302] = 732, - [3303] = 733, - [3304] = 1477, - [3305] = 734, - [3306] = 735, - [3307] = 732, - [3308] = 736, - [3309] = 733, - [3310] = 730, - [3311] = 723, - [3312] = 731, - [3313] = 727, - [3314] = 729, - [3315] = 729, - [3316] = 723, - [3317] = 1478, - [3318] = 732, - [3319] = 733, - [3320] = 727, - [3321] = 734, - [3322] = 1477, - [3323] = 1478, - [3324] = 729, - [3325] = 734, - [3326] = 735, - [3327] = 1479, - [3328] = 736, - [3329] = 1476, - [3330] = 723, - [3331] = 729, - [3332] = 730, - [3333] = 723, - [3334] = 731, - [3335] = 735, - [3336] = 736, - [3337] = 727, - [3338] = 732, - [3339] = 733, - [3340] = 734, - [3341] = 1476, - [3342] = 723, - [3343] = 729, - [3344] = 312, - [3345] = 727, - [3346] = 312, - [3347] = 3347, - [3348] = 1477, - [3349] = 1478, - [3350] = 1479, - [3351] = 3347, - [3352] = 730, - [3353] = 732, - [3354] = 736, - [3355] = 731, - [3356] = 3356, - [3357] = 735, - [3358] = 734, - [3359] = 732, - [3360] = 733, - [3361] = 729, - [3362] = 727, - [3363] = 723, - [3364] = 731, - [3365] = 312, - [3366] = 312, - [3367] = 312, - [3368] = 730, - [3369] = 734, - [3370] = 3370, - [3371] = 735, - [3372] = 312, - [3373] = 3370, - [3374] = 733, - [3375] = 736, - [3376] = 3376, - [3377] = 3377, - [3378] = 1478, - [3379] = 1477, - [3380] = 1476, - [3381] = 312, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3385, - [3386] = 1479, + [1872] = 1040, + [1873] = 897, + [1874] = 1874, + [1875] = 723, + [1876] = 1040, + [1877] = 1877, + [1878] = 1009, + [1879] = 1067, + [1880] = 1067, + [1881] = 1057, + [1882] = 1058, + [1883] = 1058, + [1884] = 1059, + [1885] = 623, + [1886] = 719, + [1887] = 895, + [1888] = 1023, + [1889] = 1023, + [1890] = 1628, + [1891] = 1059, + [1892] = 596, + [1893] = 1049, + [1894] = 723, + [1895] = 1048, + [1896] = 1251, + [1897] = 944, + [1898] = 822, + [1899] = 603, + [1900] = 1816, + [1901] = 1064, + [1902] = 1032, + [1903] = 924, + [1904] = 1068, + [1905] = 603, + [1906] = 1251, + [1907] = 1043, + [1908] = 1069, + [1909] = 1067, + [1910] = 1073, + [1911] = 1021, + [1912] = 920, + [1913] = 1072, + [1914] = 1069, + [1915] = 1040, + [1916] = 1065, + [1917] = 1009, + [1918] = 1040, + [1919] = 1064, + [1920] = 1068, + [1921] = 1009, + [1922] = 1069, + [1923] = 1058, + [1924] = 1059, + [1925] = 1058, + [1926] = 1059, + [1927] = 1067, + [1928] = 1021, + [1929] = 1065, + [1930] = 1057, + [1931] = 1067, + [1932] = 1073, + [1933] = 1070, + [1934] = 1070, + [1935] = 1005, + [1936] = 1072, + [1937] = 1073, + [1938] = 1069, + [1939] = 1068, + [1940] = 1064, + [1941] = 1005, + [1942] = 1072, + [1943] = 1073, + [1944] = 1072, + [1945] = 1070, + [1946] = 1032, + [1947] = 1069, + [1948] = 1068, + [1949] = 1067, + [1950] = 1057, + [1951] = 1064, + [1952] = 1005, + [1953] = 1040, + [1954] = 1070, + [1955] = 859, + [1956] = 1808, + [1957] = 1049, + [1958] = 1048, + [1959] = 1049, + [1960] = 1048, + [1961] = 1067, + [1962] = 603, + [1963] = 1023, + [1964] = 500, + [1965] = 1040, + [1966] = 1040, + [1967] = 1040, + [1968] = 1040, + [1969] = 1057, + [1970] = 911, + [1971] = 1009, + [1972] = 910, + [1973] = 908, + [1974] = 1974, + [1975] = 1057, + [1976] = 904, + [1977] = 1067, + [1978] = 1040, + [1979] = 901, + [1980] = 1021, + [1981] = 550, + [1982] = 1040, + [1983] = 1032, + [1984] = 1067, + [1985] = 1032, + [1986] = 1032, + [1987] = 1057, + [1988] = 498, + [1989] = 1048, + [1990] = 1040, + [1991] = 1049, + [1992] = 1769, + [1993] = 1023, + [1994] = 1023, + [1995] = 1049, + [1996] = 1067, + [1997] = 1070, + [1998] = 1070, + [1999] = 1023, + [2000] = 1005, + [2001] = 1765, + [2002] = 1021, + [2003] = 1072, + [2004] = 1073, + [2005] = 1057, + [2006] = 1059, + [2007] = 1058, + [2008] = 603, + [2009] = 1040, + [2010] = 1069, + [2011] = 1005, + [2012] = 1354, + [2013] = 1068, + [2014] = 1021, + [2015] = 1006, + [2016] = 1064, + [2017] = 550, + [2018] = 1009, + [2019] = 1009, + [2020] = 1072, + [2021] = 1040, + [2022] = 1064, + [2023] = 1021, + [2024] = 603, + [2025] = 1006, + [2026] = 653, + [2027] = 1040, + [2028] = 550, + [2029] = 1008, + [2030] = 1068, + [2031] = 1186, + [2032] = 1032, + [2033] = 1021, + [2034] = 1006, + [2035] = 1006, + [2036] = 1040, + [2037] = 1032, + [2038] = 1067, + [2039] = 1057, + [2040] = 1006, + [2041] = 653, + [2042] = 1058, + [2043] = 1009, + [2044] = 1059, + [2045] = 1006, + [2046] = 1021, + [2047] = 1009, + [2048] = 550, + [2049] = 1005, + [2050] = 1032, + [2051] = 1058, + [2052] = 1059, + [2053] = 1067, + [2054] = 1057, + [2055] = 1057, + [2056] = 859, + [2057] = 1049, + [2058] = 1049, + [2059] = 1009, + [2060] = 1048, + [2061] = 1021, + [2062] = 1048, + [2063] = 1110, + [2064] = 822, + [2065] = 1019, + [2066] = 944, + [2067] = 1032, + [2068] = 1067, + [2069] = 1009, + [2070] = 1069, + [2071] = 1070, + [2072] = 1005, + [2073] = 1072, + [2074] = 1073, + [2075] = 1069, + [2076] = 1068, + [2077] = 1064, + [2078] = 1067, + [2079] = 1057, + [2080] = 1073, + [2081] = 1040, + [2082] = 1277, + [2083] = 1040, + [2084] = 1006, + [2085] = 1009, + [2086] = 1040, + [2087] = 1006, + [2088] = 1073, + [2089] = 1032, + [2090] = 1008, + [2091] = 1021, + [2092] = 1021, + [2093] = 1009, + [2094] = 1040, + [2095] = 1032, + [2096] = 1048, + [2097] = 1006, + [2098] = 1049, + [2099] = 1023, + [2100] = 1032, + [2101] = 1277, + [2102] = 1006, + [2103] = 1008, + [2104] = 1064, + [2105] = 1040, + [2106] = 1068, + [2107] = 1069, + [2108] = 1006, + [2109] = 1067, + [2110] = 1070, + [2111] = 1023, + [2112] = 612, + [2113] = 616, + [2114] = 1067, + [2115] = 1281, + [2116] = 1057, + [2117] = 1048, + [2118] = 1005, + [2119] = 1072, + [2120] = 1475, + [2121] = 1408, + [2122] = 1430, + [2123] = 859, + [2124] = 1431, + [2125] = 881, + [2126] = 1440, + [2127] = 550, + [2128] = 1441, + [2129] = 1238, + [2130] = 287, + [2131] = 1442, + [2132] = 1241, + [2133] = 1445, + [2134] = 1446, + [2135] = 881, + [2136] = 550, + [2137] = 859, + [2138] = 1277, + [2139] = 1055, + [2140] = 1451, + [2141] = 1277, + [2142] = 885, + [2143] = 1457, + [2144] = 1333, + [2145] = 1253, + [2146] = 1254, + [2147] = 1256, + [2148] = 1458, + [2149] = 886, + [2150] = 1251, + [2151] = 287, + [2152] = 1251, + [2153] = 1251, + [2154] = 1459, + [2155] = 1276, + [2156] = 887, + [2157] = 1460, + [2158] = 1461, + [2159] = 1277, + [2160] = 1318, + [2161] = 1251, + [2162] = 1251, + [2163] = 1467, + [2164] = 1319, + [2165] = 1324, + [2166] = 1328, + [2167] = 1329, + [2168] = 1330, + [2169] = 1331, + [2170] = 1479, + [2171] = 1478, + [2172] = 1477, + [2173] = 1468, + [2174] = 1476, + [2175] = 1475, + [2176] = 1474, + [2177] = 1277, + [2178] = 1472, + [2179] = 1470, + [2180] = 1469, + [2181] = 1468, + [2182] = 1469, + [2183] = 1467, + [2184] = 1461, + [2185] = 1460, + [2186] = 1459, + [2187] = 1409, + [2188] = 1457, + [2189] = 1251, + [2190] = 1408, + [2191] = 859, + [2192] = 1470, + [2193] = 1451, + [2194] = 1337, + [2195] = 1446, + [2196] = 1445, + [2197] = 1442, + [2198] = 1441, + [2199] = 1440, + [2200] = 1344, + [2201] = 1431, + [2202] = 1430, + [2203] = 1251, + [2204] = 1251, + [2205] = 287, + [2206] = 1401, + [2207] = 1397, + [2208] = 1375, + [2209] = 1365, + [2210] = 1360, + [2211] = 1401, + [2212] = 1397, + [2213] = 822, + [2214] = 1344, + [2215] = 1337, + [2216] = 1331, + [2217] = 1330, + [2218] = 1329, + [2219] = 1328, + [2220] = 1324, + [2221] = 1319, + [2222] = 1318, + [2223] = 1769, + [2224] = 859, + [2225] = 603, + [2226] = 1765, + [2227] = 885, + [2228] = 1276, + [2229] = 1256, + [2230] = 1254, + [2231] = 1253, + [2232] = 1375, + [2233] = 1241, + [2234] = 1365, + [2235] = 1238, + [2236] = 822, + [2237] = 1472, + [2238] = 653, + [2239] = 944, + [2240] = 859, + [2241] = 1333, + [2242] = 1474, + [2243] = 944, + [2244] = 887, + [2245] = 653, + [2246] = 1769, + [2247] = 603, + [2248] = 1765, + [2249] = 1360, + [2250] = 1476, + [2251] = 1477, + [2252] = 1478, + [2253] = 1479, + [2254] = 859, + [2255] = 1409, + [2256] = 886, + [2257] = 1458, + [2258] = 1055, + [2259] = 859, + [2260] = 287, + [2261] = 1251, + [2262] = 287, + [2263] = 287, + [2264] = 1251, + [2265] = 287, + [2266] = 287, + [2267] = 1251, + [2268] = 1251, + [2269] = 1251, + [2270] = 859, + [2271] = 287, + [2272] = 1251, + [2273] = 287, + [2274] = 287, + [2275] = 287, + [2276] = 1251, + [2277] = 1251, + [2278] = 778, + [2279] = 623, + [2280] = 556, + [2281] = 475, + [2282] = 557, + [2283] = 561, + [2284] = 571, + [2285] = 550, + [2286] = 550, + [2287] = 498, + [2288] = 592, + [2289] = 612, + [2290] = 637, + [2291] = 565, + [2292] = 287, + [2293] = 550, + [2294] = 603, + [2295] = 616, + [2296] = 619, + [2297] = 637, + [2298] = 546, + [2299] = 723, + [2300] = 719, + [2301] = 555, + [2302] = 524, + [2303] = 622, + [2304] = 734, + [2305] = 743, + [2306] = 741, + [2307] = 492, + [2308] = 287, + [2309] = 735, + [2310] = 500, + [2311] = 653, + [2312] = 535, + [2313] = 586, + [2314] = 603, + [2315] = 474, + [2316] = 737, + [2317] = 653, + [2318] = 615, + [2319] = 486, + [2320] = 596, + [2321] = 545, + [2322] = 586, + [2323] = 287, + [2324] = 511, + [2325] = 479, + [2326] = 931, + [2327] = 592, + [2328] = 897, + [2329] = 586, + [2330] = 653, + [2331] = 622, + [2332] = 571, + [2333] = 498, + [2334] = 561, + [2335] = 557, + [2336] = 556, + [2337] = 561, + [2338] = 555, + [2339] = 907, + [2340] = 546, + [2341] = 287, + [2342] = 887, + [2343] = 778, + [2344] = 653, + [2345] = 944, + [2346] = 616, + [2347] = 612, + [2348] = 622, + [2349] = 619, + [2350] = 860, + [2351] = 596, + [2352] = 719, + [2353] = 906, + [2354] = 653, + [2355] = 500, + [2356] = 623, + [2357] = 859, + [2358] = 924, + [2359] = 734, + [2360] = 637, + [2361] = 859, + [2362] = 743, + [2363] = 741, + [2364] = 287, + [2365] = 603, + [2366] = 822, + [2367] = 895, + [2368] = 619, + [2369] = 603, + [2370] = 474, + [2371] = 859, + [2372] = 550, + [2373] = 603, + [2374] = 723, + [2375] = 498, + [2376] = 911, + [2377] = 910, + [2378] = 908, + [2379] = 737, + [2380] = 653, + [2381] = 719, + [2382] = 623, + [2383] = 734, + [2384] = 743, + [2385] = 741, + [2386] = 616, + [2387] = 612, + [2388] = 904, + [2389] = 550, + [2390] = 474, + [2391] = 723, + [2392] = 737, + [2393] = 859, + [2394] = 287, + [2395] = 550, + [2396] = 869, + [2397] = 287, + [2398] = 486, + [2399] = 550, + [2400] = 287, + [2401] = 550, + [2402] = 550, + [2403] = 735, + [2404] = 596, + [2405] = 603, + [2406] = 860, + [2407] = 920, + [2408] = 901, + [2409] = 886, + [2410] = 571, + [2411] = 546, + [2412] = 555, + [2413] = 556, + [2414] = 881, + [2415] = 885, + [2416] = 557, + [2417] = 500, + [2418] = 1430, + [2419] = 1375, + [2420] = 287, + [2421] = 622, + [2422] = 524, + [2423] = 546, + [2424] = 555, + [2425] = 550, + [2426] = 619, + [2427] = 550, + [2428] = 859, + [2429] = 287, + [2430] = 1238, + [2431] = 1765, + [2432] = 287, + [2433] = 603, + [2434] = 1241, + [2435] = 1769, + [2436] = 860, + [2437] = 887, + [2438] = 901, + [2439] = 1253, + [2440] = 1254, + [2441] = 904, + [2442] = 1256, + [2443] = 908, + [2444] = 910, + [2445] = 911, + [2446] = 881, + [2447] = 500, + [2448] = 1276, + [2449] = 885, + [2450] = 886, + [2451] = 886, + [2452] = 887, + [2453] = 603, + [2454] = 535, + [2455] = 498, + [2456] = 859, + [2457] = 287, + [2458] = 859, + [2459] = 1277, + [2460] = 885, + [2461] = 1472, + [2462] = 1318, + [2463] = 1479, + [2464] = 1319, + [2465] = 920, + [2466] = 1277, + [2467] = 1324, + [2468] = 1328, + [2469] = 1329, + [2470] = 1330, + [2471] = 1331, + [2472] = 492, + [2473] = 924, + [2474] = 556, + [2475] = 1478, + [2476] = 1337, + [2477] = 931, + [2478] = 1344, + [2479] = 596, + [2480] = 1477, + [2481] = 1476, + [2482] = 1475, + [2483] = 881, + [2484] = 944, + [2485] = 545, + [2486] = 1474, + [2487] = 1445, + [2488] = 1470, + [2489] = 1360, + [2490] = 1469, + [2491] = 1468, + [2492] = 1365, + [2493] = 1467, + [2494] = 1461, + [2495] = 1460, + [2496] = 1459, + [2497] = 565, + [2498] = 1375, + [2499] = 557, + [2500] = 1333, + [2501] = 1397, + [2502] = 1401, + [2503] = 1408, + [2504] = 1409, + [2505] = 1458, + [2506] = 479, + [2507] = 907, + [2508] = 906, + [2509] = 1457, + [2510] = 475, + [2511] = 1430, + [2512] = 1431, + [2513] = 616, + [2514] = 612, + [2515] = 1451, + [2516] = 561, + [2517] = 1251, + [2518] = 1446, + [2519] = 1440, + [2520] = 1441, + [2521] = 1442, + [2522] = 1276, + [2523] = 1445, + [2524] = 1446, + [2525] = 1442, + [2526] = 1441, + [2527] = 511, + [2528] = 897, + [2529] = 1451, + [2530] = 1440, + [2531] = 1431, + [2532] = 1409, + [2533] = 1408, + [2534] = 1457, + [2535] = 1458, + [2536] = 1459, + [2537] = 1460, + [2538] = 1461, + [2539] = 1401, + [2540] = 1397, + [2541] = 895, + [2542] = 1333, + [2543] = 1467, + [2544] = 1468, + [2545] = 1469, + [2546] = 1470, + [2547] = 723, + [2548] = 1472, + [2549] = 1474, + [2550] = 1475, + [2551] = 1476, + [2552] = 1477, + [2553] = 1478, + [2554] = 1479, + [2555] = 1365, + [2556] = 1277, + [2557] = 571, + [2558] = 486, + [2559] = 550, + [2560] = 869, + [2561] = 1251, + [2562] = 735, + [2563] = 1360, + [2564] = 944, + [2565] = 653, + [2566] = 822, + [2567] = 615, + [2568] = 1344, + [2569] = 1337, + [2570] = 1331, + [2571] = 1330, + [2572] = 1329, + [2573] = 1328, + [2574] = 778, + [2575] = 1324, + [2576] = 1319, + [2577] = 1318, + [2578] = 287, + [2579] = 1256, + [2580] = 1254, + [2581] = 719, + [2582] = 592, + [2583] = 623, + [2584] = 734, + [2585] = 743, + [2586] = 741, + [2587] = 1253, + [2588] = 474, + [2589] = 737, + [2590] = 1769, + [2591] = 653, + [2592] = 1241, + [2593] = 859, + [2594] = 859, + [2595] = 1765, + [2596] = 1238, + [2597] = 1251, + [2598] = 287, + [2599] = 287, + [2600] = 1251, + [2601] = 545, + [2602] = 1409, + [2603] = 492, + [2604] = 885, + [2605] = 524, + [2606] = 1238, + [2607] = 1277, + [2608] = 1765, + [2609] = 1241, + [2610] = 1769, + [2611] = 944, + [2612] = 556, + [2613] = 1251, + [2614] = 1251, + [2615] = 555, + [2616] = 535, + [2617] = 901, + [2618] = 1253, + [2619] = 1254, + [2620] = 904, + [2621] = 1256, + [2622] = 908, + [2623] = 910, + [2624] = 881, + [2625] = 1276, + [2626] = 1318, + [2627] = 1319, + [2628] = 920, + [2629] = 546, + [2630] = 1251, + [2631] = 723, + [2632] = 1324, + [2633] = 479, + [2634] = 1328, + [2635] = 592, + [2636] = 1329, + [2637] = 475, + [2638] = 622, + [2639] = 545, + [2640] = 653, + [2641] = 1330, + [2642] = 1331, + [2643] = 492, + [2644] = 619, + [2645] = 924, + [2646] = 557, + [2647] = 1337, + [2648] = 931, + [2649] = 1344, + [2650] = 822, + [2651] = 561, + [2652] = 612, + [2653] = 616, + [2654] = 511, + [2655] = 1360, + [2656] = 603, + [2657] = 524, + [2658] = 1365, + [2659] = 653, + [2660] = 565, + [2661] = 535, + [2662] = 1375, + [2663] = 1333, + [2664] = 1397, + [2665] = 887, + [2666] = 1408, + [2667] = 1401, + [2668] = 886, + [2669] = 550, + [2670] = 479, + [2671] = 911, + [2672] = 719, + [2673] = 623, + [2674] = 734, + [2675] = 743, + [2676] = 741, + [2677] = 565, + [2678] = 474, + [2679] = 737, + [2680] = 906, + [2681] = 637, + [2682] = 1277, + [2683] = 475, + [2684] = 486, + [2685] = 1430, + [2686] = 1431, + [2687] = 287, + [2688] = 735, + [2689] = 596, + [2690] = 1440, + [2691] = 1441, + [2692] = 1442, + [2693] = 1445, + [2694] = 1446, + [2695] = 869, + [2696] = 615, + [2697] = 287, + [2698] = 735, + [2699] = 615, + [2700] = 511, + [2701] = 897, + [2702] = 1451, + [2703] = 1457, + [2704] = 859, + [2705] = 1458, + [2706] = 1459, + [2707] = 1251, + [2708] = 1251, + [2709] = 1277, + [2710] = 1460, + [2711] = 1461, + [2712] = 287, + [2713] = 895, + [2714] = 498, + [2715] = 550, + [2716] = 586, + [2717] = 1467, + [2718] = 907, + [2719] = 603, + [2720] = 859, + [2721] = 1479, + [2722] = 500, + [2723] = 1478, + [2724] = 1468, + [2725] = 550, + [2726] = 778, + [2727] = 1477, + [2728] = 1476, + [2729] = 1475, + [2730] = 1474, + [2731] = 1472, + [2732] = 1470, + [2733] = 1469, + [2734] = 571, + [2735] = 910, + [2736] = 859, + [2737] = 886, + [2738] = 904, + [2739] = 615, + [2740] = 885, + [2741] = 287, + [2742] = 881, + [2743] = 901, + [2744] = 735, + [2745] = 592, + [2746] = 822, + [2747] = 486, + [2748] = 653, + [2749] = 571, + [2750] = 778, + [2751] = 860, + [2752] = 637, + [2753] = 546, + [2754] = 653, + [2755] = 859, + [2756] = 603, + [2757] = 1251, + [2758] = 596, + [2759] = 555, + [2760] = 571, + [2761] = 895, + [2762] = 511, + [2763] = 556, + [2764] = 897, + [2765] = 550, + [2766] = 616, + [2767] = 475, + [2768] = 612, + [2769] = 911, + [2770] = 565, + [2771] = 619, + [2772] = 479, + [2773] = 561, + [2774] = 557, + [2775] = 561, + [2776] = 906, + [2777] = 907, + [2778] = 653, + [2779] = 887, + [2780] = 622, + [2781] = 723, + [2782] = 557, + [2783] = 511, + [2784] = 545, + [2785] = 944, + [2786] = 869, + [2787] = 822, + [2788] = 778, + [2789] = 556, + [2790] = 492, + [2791] = 500, + [2792] = 555, + [2793] = 475, + [2794] = 931, + [2795] = 550, + [2796] = 592, + [2797] = 535, + [2798] = 479, + [2799] = 524, + [2800] = 550, + [2801] = 1251, + [2802] = 546, + [2803] = 524, + [2804] = 586, + [2805] = 535, + [2806] = 550, + [2807] = 498, + [2808] = 622, + [2809] = 550, + [2810] = 723, + [2811] = 719, + [2812] = 545, + [2813] = 619, + [2814] = 612, + [2815] = 616, + [2816] = 565, + [2817] = 623, + [2818] = 734, + [2819] = 743, + [2820] = 719, + [2821] = 623, + [2822] = 734, + [2823] = 743, + [2824] = 741, + [2825] = 474, + [2826] = 737, + [2827] = 637, + [2828] = 741, + [2829] = 486, + [2830] = 474, + [2831] = 737, + [2832] = 924, + [2833] = 920, + [2834] = 735, + [2835] = 596, + [2836] = 1277, + [2837] = 615, + [2838] = 603, + [2839] = 908, + [2840] = 586, + [2841] = 500, + [2842] = 859, + [2843] = 492, + [2844] = 498, + [2845] = 603, + [2846] = 859, + [2847] = 550, + [2848] = 901, + [2849] = 904, + [2850] = 860, + [2851] = 908, + [2852] = 603, + [2853] = 910, + [2854] = 623, + [2855] = 1276, + [2856] = 603, + [2857] = 498, + [2858] = 911, + [2859] = 1277, + [2860] = 920, + [2861] = 859, + [2862] = 1318, + [2863] = 550, + [2864] = 924, + [2865] = 1319, + [2866] = 931, + [2867] = 822, + [2868] = 1324, + [2869] = 1328, + [2870] = 1329, + [2871] = 869, + [2872] = 592, + [2873] = 1277, + [2874] = 944, + [2875] = 907, + [2876] = 906, + [2877] = 860, + [2878] = 897, + [2879] = 859, + [2880] = 895, + [2881] = 1256, + [2882] = 1330, + [2883] = 1331, + [2884] = 859, + [2885] = 1251, + [2886] = 550, + [2887] = 895, + [2888] = 492, + [2889] = 603, + [2890] = 920, + [2891] = 500, + [2892] = 586, + [2893] = 911, + [2894] = 910, + [2895] = 908, + [2896] = 904, + [2897] = 1337, + [2898] = 615, + [2899] = 778, + [2900] = 901, + [2901] = 1344, + [2902] = 897, + [2903] = 596, + [2904] = 859, + [2905] = 735, + [2906] = 1360, + [2907] = 887, + [2908] = 486, + [2909] = 1365, + [2910] = 1375, + [2911] = 637, + [2912] = 886, + [2913] = 885, + [2914] = 881, + [2915] = 1333, + [2916] = 1397, + [2917] = 737, + [2918] = 1401, + [2919] = 1408, + [2920] = 474, + [2921] = 1409, + [2922] = 479, + [2923] = 741, + [2924] = 743, + [2925] = 734, + [2926] = 653, + [2927] = 475, + [2928] = 1430, + [2929] = 1431, + [2930] = 719, + [2931] = 1440, + [2932] = 1441, + [2933] = 1442, + [2934] = 565, + [2935] = 1445, + [2936] = 906, + [2937] = 907, + [2938] = 616, + [2939] = 612, + [2940] = 511, + [2941] = 475, + [2942] = 1451, + [2943] = 545, + [2944] = 1457, + [2945] = 1458, + [2946] = 1459, + [2947] = 1460, + [2948] = 1461, + [2949] = 723, + [2950] = 535, + [2951] = 1467, + [2952] = 1468, + [2953] = 1469, + [2954] = 1470, + [2955] = 615, + [2956] = 735, + [2957] = 565, + [2958] = 550, + [2959] = 545, + [2960] = 535, + [2961] = 524, + [2962] = 524, + [2963] = 1472, + [2964] = 1474, + [2965] = 571, + [2966] = 1475, + [2967] = 561, + [2968] = 557, + [2969] = 556, + [2970] = 555, + [2971] = 546, + [2972] = 622, + [2973] = 619, + [2974] = 1476, + [2975] = 1477, + [2976] = 1478, + [2977] = 1479, + [2978] = 619, + [2979] = 1446, + [2980] = 653, + [2981] = 1238, + [2982] = 653, + [2983] = 1765, + [2984] = 622, + [2985] = 603, + [2986] = 1241, + [2987] = 737, + [2988] = 474, + [2989] = 741, + [2990] = 743, + [2991] = 734, + [2992] = 623, + [2993] = 719, + [2994] = 723, + [2995] = 1769, + [2996] = 550, + [2997] = 1251, + [2998] = 571, + [2999] = 881, + [3000] = 550, + [3001] = 653, + [3002] = 550, + [3003] = 550, + [3004] = 885, + [3005] = 886, + [3006] = 603, + [3007] = 944, + [3008] = 498, + [3009] = 887, + [3010] = 1251, + [3011] = 546, + [3012] = 869, + [3013] = 555, + [3014] = 556, + [3015] = 561, + [3016] = 822, + [3017] = 557, + [3018] = 500, + [3019] = 596, + [3020] = 653, + [3021] = 616, + [3022] = 1253, + [3023] = 612, + [3024] = 931, + [3025] = 1254, + [3026] = 924, + [3027] = 1401, + [3028] = 1477, + [3029] = 479, + [3030] = 511, + [3031] = 492, + [3032] = 498, + [3033] = 550, + [3034] = 859, + [3035] = 550, + [3036] = 1277, + [3037] = 1251, + [3038] = 1238, + [3039] = 859, + [3040] = 1277, + [3041] = 1765, + [3042] = 859, + [3043] = 822, + [3044] = 859, + [3045] = 1241, + [3046] = 1769, + [3047] = 1253, + [3048] = 1254, + [3049] = 1256, + [3050] = 1251, + [3051] = 1318, + [3052] = 1319, + [3053] = 1324, + [3054] = 859, + [3055] = 1328, + [3056] = 1329, + [3057] = 1330, + [3058] = 887, + [3059] = 1331, + [3060] = 1337, + [3061] = 1344, + [3062] = 1360, + [3063] = 1365, + [3064] = 1375, + [3065] = 1333, + [3066] = 1397, + [3067] = 886, + [3068] = 881, + [3069] = 885, + [3070] = 886, + [3071] = 887, + [3072] = 1408, + [3073] = 885, + [3074] = 1409, + [3075] = 881, + [3076] = 1430, + [3077] = 1431, + [3078] = 1440, + [3079] = 550, + [3080] = 1441, + [3081] = 1442, + [3082] = 1445, + [3083] = 1446, + [3084] = 1451, + [3085] = 1457, + [3086] = 1458, + [3087] = 1459, + [3088] = 1460, + [3089] = 1461, + [3090] = 1251, + [3091] = 1467, + [3092] = 1468, + [3093] = 1469, + [3094] = 1470, + [3095] = 1472, + [3096] = 1474, + [3097] = 1475, + [3098] = 1476, + [3099] = 1478, + [3100] = 1479, + [3101] = 1251, + [3102] = 859, + [3103] = 1479, + [3104] = 1478, + [3105] = 1477, + [3106] = 1476, + [3107] = 1475, + [3108] = 1474, + [3109] = 1472, + [3110] = 1470, + [3111] = 1469, + [3112] = 1276, + [3113] = 1468, + [3114] = 1467, + [3115] = 860, + [3116] = 1461, + [3117] = 1460, + [3118] = 1459, + [3119] = 901, + [3120] = 571, + [3121] = 1458, + [3122] = 1457, + [3123] = 561, + [3124] = 557, + [3125] = 556, + [3126] = 904, + [3127] = 908, + [3128] = 910, + [3129] = 911, + [3130] = 1451, + [3131] = 1446, + [3132] = 1445, + [3133] = 555, + [3134] = 546, + [3135] = 1442, + [3136] = 1441, + [3137] = 1440, + [3138] = 622, + [3139] = 1431, + [3140] = 1430, + [3141] = 1251, + [3142] = 1409, + [3143] = 1408, + [3144] = 920, + [3145] = 924, + [3146] = 1401, + [3147] = 931, + [3148] = 1397, + [3149] = 1375, + [3150] = 822, + [3151] = 1365, + [3152] = 1360, + [3153] = 944, + [3154] = 869, + [3155] = 1344, + [3156] = 1337, + [3157] = 1331, + [3158] = 1330, + [3159] = 1329, + [3160] = 1328, + [3161] = 944, + [3162] = 619, + [3163] = 1277, + [3164] = 1324, + [3165] = 1319, + [3166] = 907, + [3167] = 612, + [3168] = 1318, + [3169] = 616, + [3170] = 486, + [3171] = 906, + [3172] = 735, + [3173] = 596, + [3174] = 500, + [3175] = 1276, + [3176] = 603, + [3177] = 897, + [3178] = 895, + [3179] = 1277, + [3180] = 723, + [3181] = 869, + [3182] = 1256, + [3183] = 737, + [3184] = 474, + [3185] = 1254, + [3186] = 741, + [3187] = 1253, + [3188] = 743, + [3189] = 734, + [3190] = 623, + [3191] = 719, + [3192] = 653, + [3193] = 653, + [3194] = 1241, + [3195] = 1238, + [3196] = 603, + [3197] = 1765, + [3198] = 1769, + [3199] = 1333, + [3200] = 1441, + [3201] = 887, + [3202] = 1446, + [3203] = 881, + [3204] = 1277, + [3205] = 885, + [3206] = 886, + [3207] = 1277, + [3208] = 1251, + [3209] = 1277, + [3210] = 1329, + [3211] = 1451, + [3212] = 859, + [3213] = 1251, + [3214] = 887, + [3215] = 859, + [3216] = 1330, + [3217] = 1457, + [3218] = 881, + [3219] = 885, + [3220] = 1251, + [3221] = 886, + [3222] = 1344, + [3223] = 887, + [3224] = 886, + [3225] = 885, + [3226] = 1277, + [3227] = 881, + [3228] = 1238, + [3229] = 1251, + [3230] = 1458, + [3231] = 1459, + [3232] = 1241, + [3233] = 1460, + [3234] = 1461, + [3235] = 1331, + [3236] = 1251, + [3237] = 1467, + [3238] = 1253, + [3239] = 1254, + [3240] = 1256, + [3241] = 1276, + [3242] = 1769, + [3243] = 1468, + [3244] = 1319, + [3245] = 1442, + [3246] = 1765, + [3247] = 1469, + [3248] = 1470, + [3249] = 1440, + [3250] = 1472, + [3251] = 1328, + [3252] = 1445, + [3253] = 1431, + [3254] = 1430, + [3255] = 822, + [3256] = 1251, + [3257] = 1409, + [3258] = 1408, + [3259] = 1401, + [3260] = 1337, + [3261] = 1324, + [3262] = 1397, + [3263] = 1333, + [3264] = 1375, + [3265] = 1365, + [3266] = 944, + [3267] = 1360, + [3268] = 931, + [3269] = 1474, + [3270] = 1475, + [3271] = 1318, + [3272] = 1479, + [3273] = 1478, + [3274] = 1477, + [3275] = 1476, + [3276] = 887, + [3277] = 885, + [3278] = 885, + [3279] = 887, + [3280] = 881, + [3281] = 887, + [3282] = 881, + [3283] = 887, + [3284] = 1251, + [3285] = 881, + [3286] = 885, + [3287] = 886, + [3288] = 886, + [3289] = 1251, + [3290] = 886, + [3291] = 881, + [3292] = 885, + [3293] = 886, + [3294] = 885, + [3295] = 887, + [3296] = 881, + [3297] = 885, + [3298] = 886, + [3299] = 887, + [3300] = 881, + [3301] = 886, + [3302] = 885, + [3303] = 881, + [3304] = 887, + [3305] = 886, + [3306] = 887, + [3307] = 886, + [3308] = 885, + [3309] = 881, + [3310] = 885, + [3311] = 886, + [3312] = 887, + [3313] = 881, + [3314] = 887, + [3315] = 561, + [3316] = 546, + [3317] = 619, + [3318] = 881, + [3319] = 556, + [3320] = 557, + [3321] = 561, + [3322] = 498, + [3323] = 571, + [3324] = 287, + [3325] = 546, + [3326] = 498, + [3327] = 555, + [3328] = 557, + [3329] = 886, + [3330] = 622, + [3331] = 287, + [3332] = 571, + [3333] = 885, + [3334] = 287, + [3335] = 619, + [3336] = 556, + [3337] = 555, + [3338] = 622, + [3339] = 556, + [3340] = 546, + [3341] = 571, + [3342] = 561, + [3343] = 557, + [3344] = 287, + [3345] = 556, + [3346] = 881, + [3347] = 555, + [3348] = 546, + [3349] = 886, + [3350] = 498, + [3351] = 619, + [3352] = 885, + [3353] = 287, + [3354] = 619, + [3355] = 622, + [3356] = 622, + [3357] = 557, + [3358] = 287, + [3359] = 561, + [3360] = 571, + [3361] = 498, + [3362] = 619, + [3363] = 546, + [3364] = 555, + [3365] = 498, + [3366] = 546, + [3367] = 555, + [3368] = 555, + [3369] = 571, + [3370] = 561, + [3371] = 498, + [3372] = 887, + [3373] = 622, + [3374] = 619, + [3375] = 556, + [3376] = 557, + [3377] = 557, + [3378] = 556, + [3379] = 561, + [3380] = 622, + [3381] = 571, + [3382] = 637, + [3383] = 561, + [3384] = 498, + [3385] = 571, + [3386] = 586, [3387] = 3387, - [3388] = 3376, - [3389] = 3389, - [3390] = 1478, - [3391] = 3387, - [3392] = 3389, - [3393] = 1479, - [3394] = 1478, - [3395] = 1477, - [3396] = 1476, - [3397] = 773, - [3398] = 3398, - [3399] = 1477, - [3400] = 1479, - [3401] = 3401, - [3402] = 3402, - [3403] = 1476, - [3404] = 312, - [3405] = 3405, - [3406] = 3401, - [3407] = 3377, - [3408] = 3385, - [3409] = 3409, - [3410] = 3410, - [3411] = 3356, - [3412] = 3384, - [3413] = 3383, - [3414] = 3402, - [3415] = 3382, - [3416] = 3405, - [3417] = 3398, - [3418] = 1479, - [3419] = 3409, - [3420] = 1478, - [3421] = 1477, - [3422] = 1476, - [3423] = 777, - [3424] = 312, - [3425] = 735, - [3426] = 734, - [3427] = 747, - [3428] = 773, - [3429] = 312, - [3430] = 733, - [3431] = 732, - [3432] = 724, - [3433] = 731, - [3434] = 767, - [3435] = 766, - [3436] = 312, - [3437] = 764, - [3438] = 730, - [3439] = 763, - [3440] = 312, - [3441] = 762, - [3442] = 761, - [3443] = 312, - [3444] = 747, - [3445] = 760, - [3446] = 1129, - [3447] = 312, - [3448] = 312, + [3388] = 287, + [3389] = 561, + [3390] = 557, + [3391] = 498, + [3392] = 622, + [3393] = 619, + [3394] = 556, + [3395] = 571, + [3396] = 3396, + [3397] = 555, + [3398] = 287, + [3399] = 546, + [3400] = 557, + [3401] = 622, + [3402] = 619, + [3403] = 3396, + [3404] = 881, + [3405] = 287, + [3406] = 546, + [3407] = 885, + [3408] = 886, + [3409] = 555, + [3410] = 887, + [3411] = 3411, + [3412] = 3387, + [3413] = 556, + [3414] = 3414, + [3415] = 887, + [3416] = 3416, + [3417] = 3417, + [3418] = 885, + [3419] = 3419, + [3420] = 3419, + [3421] = 887, + [3422] = 3422, + [3423] = 881, + [3424] = 3416, + [3425] = 887, + [3426] = 3426, + [3427] = 3427, + [3428] = 3428, + [3429] = 3429, + [3430] = 3414, + [3431] = 3428, + [3432] = 778, + [3433] = 592, + [3434] = 3426, + [3435] = 881, + [3436] = 881, + [3437] = 885, + [3438] = 885, + [3439] = 885, + [3440] = 287, + [3441] = 886, + [3442] = 886, + [3443] = 887, + [3444] = 886, + [3445] = 3445, + [3446] = 3446, + [3447] = 3417, + [3448] = 3448, [3449] = 3449, - [3450] = 312, - [3451] = 312, - [3452] = 765, - [3453] = 736, - [3454] = 777, - [3455] = 723, - [3456] = 752, - [3457] = 778, - [3458] = 747, - [3459] = 312, - [3460] = 1533, - [3461] = 3449, - [3462] = 727, - [3463] = 729, - [3464] = 724, - [3465] = 753, - [3466] = 757, - [3467] = 756, - [3468] = 754, - [3469] = 1549, - [3470] = 1931, - [3471] = 1604, - [3472] = 735, - [3473] = 736, - [3474] = 733, - [3475] = 732, - [3476] = 1605, - [3477] = 1905, - [3478] = 1882, - [3479] = 2040, - [3480] = 734, - [3481] = 1923, - [3482] = 1944, - [3483] = 727, - [3484] = 729, - [3485] = 1950, - [3486] = 752, - [3487] = 1891, - [3488] = 1582, - [3489] = 753, - [3490] = 1890, - [3491] = 1945, - [3492] = 1891, - [3493] = 1898, - [3494] = 1946, - [3495] = 731, - [3496] = 1947, - [3497] = 771, - [3498] = 1903, - [3499] = 1907, - [3500] = 1912, - [3501] = 1917, - [3502] = 1918, - [3503] = 1918, - [3504] = 768, - [3505] = 1887, - [3506] = 1563, - [3507] = 1927, - [3508] = 1129, - [3509] = 1562, - [3510] = 1913, - [3511] = 730, - [3512] = 312, - [3513] = 772, - [3514] = 1889, - [3515] = 1888, - [3516] = 1886, - [3517] = 1883, - [3518] = 1881, - [3519] = 1892, - [3520] = 1552, - [3521] = 1606, - [3522] = 1909, - [3523] = 769, - [3524] = 1884, - [3525] = 774, - [3526] = 2019, - [3527] = 2015, - [3528] = 1609, - [3529] = 2029, - [3530] = 776, - [3531] = 2037, - [3532] = 2059, - [3533] = 2038, - [3534] = 2039, - [3535] = 1921, - [3536] = 1479, - [3537] = 1478, - [3538] = 1948, - [3539] = 1477, - [3540] = 1949, - [3541] = 1476, - [3542] = 1922, - [3543] = 2042, - [3544] = 2050, - [3545] = 770, - [3546] = 1584, - [3547] = 1957, - [3548] = 755, - [3549] = 2053, - [3550] = 775, - [3551] = 1573, - [3552] = 2059, - [3553] = 1515, - [3554] = 1129, - [3555] = 1905, - [3556] = 1931, - [3557] = 1908, - [3558] = 1129, - [3559] = 759, - [3560] = 1969, - [3561] = 1953, - [3562] = 1920, - [3563] = 2002, - [3564] = 758, - [3565] = 2004, - [3566] = 1611, - [3567] = 1886, - [3568] = 727, - [3569] = 1888, - [3570] = 734, - [3571] = 1945, - [3572] = 1923, - [3573] = 312, - [3574] = 732, - [3575] = 1920, - [3576] = 1953, - [3577] = 1883, - [3578] = 3578, - [3579] = 1881, - [3580] = 735, - [3581] = 736, - [3582] = 3582, - [3583] = 1908, - [3584] = 1892, - [3585] = 3585, - [3586] = 754, - [3587] = 731, - [3588] = 730, - [3589] = 1887, - [3590] = 3585, - [3591] = 1609, - [3592] = 1950, - [3593] = 730, - [3594] = 731, - [3595] = 1606, - [3596] = 1605, - [3597] = 732, - [3598] = 1604, - [3599] = 1950, - [3600] = 778, - [3601] = 723, - [3602] = 1909, - [3603] = 733, - [3604] = 1927, - [3605] = 1889, - [3606] = 1884, - [3607] = 1882, - [3608] = 724, - [3609] = 734, - [3610] = 758, - [3611] = 723, - [3612] = 756, - [3613] = 735, - [3614] = 727, - [3615] = 729, - [3616] = 747, - [3617] = 3617, - [3618] = 736, - [3619] = 757, - [3620] = 1890, - [3621] = 769, - [3622] = 1574, - [3623] = 770, - [3624] = 727, - [3625] = 729, - [3626] = 729, - [3627] = 1946, - [3628] = 1898, - [3629] = 760, - [3630] = 761, - [3631] = 2015, - [3632] = 762, - [3633] = 747, - [3634] = 763, - [3635] = 754, - [3636] = 764, - [3637] = 2029, - [3638] = 755, - [3639] = 1552, - [3640] = 765, - [3641] = 766, - [3642] = 747, - [3643] = 1903, - [3644] = 723, - [3645] = 3582, - [3646] = 3617, - [3647] = 2037, - [3648] = 2038, - [3649] = 2039, - [3650] = 2042, - [3651] = 2050, - [3652] = 1907, - [3653] = 1549, - [3654] = 747, - [3655] = 1584, - [3656] = 2053, - [3657] = 724, - [3658] = 771, - [3659] = 773, - [3660] = 1912, - [3661] = 747, - [3662] = 1917, - [3663] = 1533, - [3664] = 772, - [3665] = 1921, - [3666] = 774, - [3667] = 775, - [3668] = 759, - [3669] = 776, - [3670] = 768, - [3671] = 1922, - [3672] = 736, - [3673] = 735, - [3674] = 734, - [3675] = 733, - [3676] = 3676, - [3677] = 732, - [3678] = 767, - [3679] = 1957, - [3680] = 1562, - [3681] = 1913, - [3682] = 1563, - [3683] = 1582, - [3684] = 753, - [3685] = 3685, - [3686] = 752, - [3687] = 1949, - [3688] = 312, - [3689] = 1580, - [3690] = 731, - [3691] = 1947, - [3692] = 1948, - [3693] = 3676, - [3694] = 723, - [3695] = 733, - [3696] = 767, - [3697] = 1944, - [3698] = 777, - [3699] = 1969, - [3700] = 760, - [3701] = 1950, - [3702] = 1611, - [3703] = 2019, - [3704] = 778, - [3705] = 761, - [3706] = 762, - [3707] = 2002, - [3708] = 2004, - [3709] = 747, - [3710] = 763, - [3711] = 3685, - [3712] = 764, - [3713] = 757, - [3714] = 3578, - [3715] = 2040, - [3716] = 724, - [3717] = 724, - [3718] = 730, - [3719] = 1533, - [3720] = 756, - [3721] = 765, - [3722] = 766, - [3723] = 766, - [3724] = 1476, - [3725] = 736, - [3726] = 1129, - [3727] = 1129, - [3728] = 1611, - [3729] = 724, - [3730] = 1515, - [3731] = 729, - [3732] = 727, - [3733] = 758, - [3734] = 736, - [3735] = 735, - [3736] = 1573, - [3737] = 734, - [3738] = 733, - [3739] = 732, - [3740] = 759, - [3741] = 731, - [3742] = 730, - [3743] = 1549, - [3744] = 778, - [3745] = 1584, - [3746] = 1905, - [3747] = 755, - [3748] = 776, - [3749] = 767, - [3750] = 768, - [3751] = 775, - [3752] = 759, - [3753] = 729, - [3754] = 730, - [3755] = 758, - [3756] = 1552, - [3757] = 1580, - [3758] = 769, - [3759] = 727, - [3760] = 770, - [3761] = 724, - [3762] = 774, - [3763] = 769, - [3764] = 1609, - [3765] = 770, - [3766] = 768, - [3767] = 1606, - [3768] = 771, - [3769] = 1605, - [3770] = 772, - [3771] = 778, - [3772] = 1573, - [3773] = 747, - [3774] = 755, - [3775] = 730, - [3776] = 776, - [3777] = 731, - [3778] = 1515, - [3779] = 752, - [3780] = 1604, - [3781] = 1129, - [3782] = 773, - [3783] = 732, - [3784] = 1479, - [3785] = 1478, - [3786] = 1477, - [3787] = 765, - [3788] = 753, - [3789] = 1574, - [3790] = 767, - [3791] = 2059, - [3792] = 733, - [3793] = 1562, - [3794] = 734, - [3795] = 747, - [3796] = 747, - [3797] = 735, - [3798] = 1563, - [3799] = 754, - [3800] = 766, - [3801] = 736, - [3802] = 764, - [3803] = 765, - [3804] = 771, - [3805] = 764, - [3806] = 747, - [3807] = 1533, - [3808] = 777, - [3809] = 1476, - [3810] = 1477, - [3811] = 727, - [3812] = 1478, - [3813] = 1479, - [3814] = 723, - [3815] = 747, - [3816] = 723, - [3817] = 734, - [3818] = 1931, - [3819] = 729, - [3820] = 775, - [3821] = 723, - [3822] = 763, - [3823] = 747, - [3824] = 762, - [3825] = 724, - [3826] = 761, - [3827] = 760, - [3828] = 763, - [3829] = 735, - [3830] = 756, - [3831] = 731, - [3832] = 1129, - [3833] = 1918, - [3834] = 1582, - [3835] = 1129, - [3836] = 762, - [3837] = 769, - [3838] = 761, - [3839] = 760, - [3840] = 770, - [3841] = 724, - [3842] = 757, - [3843] = 757, - [3844] = 756, - [3845] = 771, - [3846] = 772, - [3847] = 776, - [3848] = 732, - [3849] = 772, - [3850] = 758, - [3851] = 1891, - [3852] = 733, - [3853] = 754, - [3854] = 775, - [3855] = 736, - [3856] = 3856, - [3857] = 758, - [3858] = 1884, - [3859] = 754, - [3860] = 3860, - [3861] = 1584, - [3862] = 724, - [3863] = 1882, - [3864] = 729, - [3865] = 1890, - [3866] = 2059, - [3867] = 778, - [3868] = 3868, - [3869] = 747, - [3870] = 3870, - [3871] = 3871, - [3872] = 724, - [3873] = 3873, - [3874] = 1533, - [3875] = 723, - [3876] = 730, - [3877] = 1887, - [3878] = 755, - [3879] = 3879, - [3880] = 3880, - [3881] = 3881, - [3882] = 3882, - [3883] = 730, - [3884] = 3884, - [3885] = 3885, - [3886] = 3886, - [3887] = 727, - [3888] = 1898, - [3889] = 777, - [3890] = 3890, - [3891] = 3891, - [3892] = 759, - [3893] = 1582, - [3894] = 1905, - [3895] = 747, - [3896] = 3896, - [3897] = 752, - [3898] = 1549, - [3899] = 3896, - [3900] = 3900, - [3901] = 3901, - [3902] = 770, - [3903] = 1921, - [3904] = 1922, - [3905] = 755, - [3906] = 3870, - [3907] = 3868, - [3908] = 3860, - [3909] = 747, - [3910] = 723, - [3911] = 756, - [3912] = 771, - [3913] = 1574, - [3914] = 757, - [3915] = 1903, - [3916] = 1606, - [3917] = 3901, - [3918] = 1907, - [3919] = 3900, - [3920] = 1957, - [3921] = 1969, - [3922] = 1609, - [3923] = 3891, - [3924] = 3886, - [3925] = 768, - [3926] = 3885, - [3927] = 1479, - [3928] = 3928, - [3929] = 1950, - [3930] = 1478, - [3931] = 1477, - [3932] = 1476, - [3933] = 1912, - [3934] = 1891, - [3935] = 731, - [3936] = 753, - [3937] = 1574, - [3938] = 1917, - [3939] = 1950, - [3940] = 729, - [3941] = 732, - [3942] = 733, - [3943] = 1129, - [3944] = 727, - [3945] = 1886, - [3946] = 3884, - [3947] = 1950, - [3948] = 734, - [3949] = 1552, - [3950] = 735, - [3951] = 736, - [3952] = 736, - [3953] = 3953, - [3954] = 735, - [3955] = 734, - [3956] = 723, - [3957] = 1611, - [3958] = 747, - [3959] = 1479, - [3960] = 1927, - [3961] = 1913, - [3962] = 733, - [3963] = 758, - [3964] = 732, - [3965] = 727, - [3966] = 2002, - [3967] = 1478, - [3968] = 1477, - [3969] = 1476, - [3970] = 3882, - [3971] = 731, - [3972] = 730, - [3973] = 774, - [3974] = 752, - [3975] = 769, - [3976] = 3881, - [3977] = 3977, - [3978] = 772, - [3979] = 2004, - [3980] = 770, - [3981] = 1129, - [3982] = 753, - [3983] = 3983, - [3984] = 3984, - [3985] = 729, - [3986] = 755, - [3987] = 3987, - [3988] = 771, - [3989] = 1918, - [3990] = 759, - [3991] = 727, - [3992] = 767, - [3993] = 775, + [3450] = 3450, + [3451] = 3451, + [3452] = 3427, + [3453] = 3445, + [3454] = 287, + [3455] = 3455, + [3456] = 3456, + [3457] = 3451, + [3458] = 859, + [3459] = 3456, + [3460] = 3460, + [3461] = 886, + [3462] = 3449, + [3463] = 3463, + [3464] = 881, + [3465] = 287, + [3466] = 3450, + [3467] = 287, + [3468] = 287, + [3469] = 3469, + [3470] = 3446, + [3471] = 3455, + [3472] = 3448, + [3473] = 3411, + [3474] = 3463, + [3475] = 3460, + [3476] = 3429, + [3477] = 3469, + [3478] = 1467, + [3479] = 623, + [3480] = 616, + [3481] = 612, + [3482] = 860, + [3483] = 908, + [3484] = 910, + [3485] = 911, + [3486] = 550, + [3487] = 550, + [3488] = 637, + [3489] = 723, + [3490] = 287, + [3491] = 653, + [3492] = 1479, + [3493] = 1478, + [3494] = 1477, + [3495] = 1476, + [3496] = 1475, + [3497] = 1474, + [3498] = 1472, + [3499] = 1470, + [3500] = 1469, + [3501] = 1468, + [3502] = 1461, + [3503] = 1460, + [3504] = 1459, + [3505] = 1458, + [3506] = 1457, + [3507] = 737, + [3508] = 1451, + [3509] = 474, + [3510] = 586, + [3511] = 1446, + [3512] = 1445, + [3513] = 1442, + [3514] = 1441, + [3515] = 1440, + [3516] = 619, + [3517] = 622, + [3518] = 924, + [3519] = 1431, + [3520] = 1430, + [3521] = 741, + [3522] = 743, + [3523] = 1409, + [3524] = 1408, + [3525] = 1401, + [3526] = 1397, + [3527] = 734, + [3528] = 1375, + [3529] = 3529, + [3530] = 719, + [3531] = 653, + [3532] = 500, + [3533] = 603, + [3534] = 1365, + [3535] = 596, + [3536] = 498, + [3537] = 1360, + [3538] = 555, + [3539] = 556, + [3540] = 557, + [3541] = 561, + [3542] = 571, + [3543] = 1251, + [3544] = 603, + [3545] = 287, + [3546] = 1344, + [3547] = 907, + [3548] = 1337, + [3549] = 1765, + [3550] = 1331, + [3551] = 1330, + [3552] = 1329, + [3553] = 1328, + [3554] = 1324, + [3555] = 1319, + [3556] = 1318, + [3557] = 906, + [3558] = 1276, + [3559] = 1769, + [3560] = 901, + [3561] = 1256, + [3562] = 1254, + [3563] = 1253, + [3564] = 287, + [3565] = 1241, + [3566] = 897, + [3567] = 287, + [3568] = 1238, + [3569] = 895, + [3570] = 3529, + [3571] = 546, + [3572] = 904, + [3573] = 1333, + [3574] = 920, + [3575] = 550, + [3576] = 287, + [3577] = 287, + [3578] = 287, + [3579] = 546, + [3580] = 571, + [3581] = 545, + [3582] = 571, + [3583] = 603, + [3584] = 561, + [3585] = 557, + [3586] = 498, + [3587] = 622, + [3588] = 556, + [3589] = 546, + [3590] = 619, + [3591] = 546, + [3592] = 565, + [3593] = 860, + [3594] = 556, + [3595] = 524, + [3596] = 622, + [3597] = 557, + [3598] = 557, + [3599] = 561, + [3600] = 486, + [3601] = 612, + [3602] = 615, + [3603] = 616, + [3604] = 535, + [3605] = 596, + [3606] = 561, + [3607] = 571, + [3608] = 653, + [3609] = 556, + [3610] = 555, + [3611] = 555, + [3612] = 619, + [3613] = 859, + [3614] = 887, + [3615] = 622, + [3616] = 603, + [3617] = 500, + [3618] = 859, + [3619] = 492, + [3620] = 619, + [3621] = 555, + [3622] = 498, + [3623] = 737, + [3624] = 474, + [3625] = 741, + [3626] = 743, + [3627] = 778, + [3628] = 859, + [3629] = 1318, + [3630] = 734, + [3631] = 1467, + [3632] = 592, + [3633] = 623, + [3634] = 719, + [3635] = 886, + [3636] = 479, + [3637] = 475, + [3638] = 550, + [3639] = 1457, + [3640] = 511, + [3641] = 723, + [3642] = 1360, + [3643] = 881, + [3644] = 885, + [3645] = 944, + [3646] = 869, + [3647] = 287, + [3648] = 1440, + [3649] = 550, + [3650] = 653, + [3651] = 735, + [3652] = 931, + [3653] = 492, + [3654] = 1475, + [3655] = 1474, + [3656] = 1472, + [3657] = 1470, + [3658] = 1469, + [3659] = 1468, + [3660] = 881, + [3661] = 885, + [3662] = 1461, + [3663] = 1460, + [3664] = 1459, + [3665] = 1458, + [3666] = 886, + [3667] = 1451, + [3668] = 1446, + [3669] = 887, + [3670] = 1445, + [3671] = 1442, + [3672] = 1441, + [3673] = 1431, + [3674] = 1409, + [3675] = 1408, + [3676] = 1401, + [3677] = 1397, + [3678] = 1333, + [3679] = 1375, + [3680] = 1365, + [3681] = 822, + [3682] = 1344, + [3683] = 1337, + [3684] = 1331, + [3685] = 1330, + [3686] = 1329, + [3687] = 1328, + [3688] = 1324, + [3689] = 550, + [3690] = 920, + [3691] = 1319, + [3692] = 735, + [3693] = 592, + [3694] = 1276, + [3695] = 1256, + [3696] = 1254, + [3697] = 1253, + [3698] = 778, + [3699] = 3699, + [3700] = 901, + [3701] = 1251, + [3702] = 1769, + [3703] = 1241, + [3704] = 1765, + [3705] = 615, + [3706] = 1238, + [3707] = 550, + [3708] = 565, + [3709] = 944, + [3710] = 545, + [3711] = 535, + [3712] = 475, + [3713] = 619, + [3714] = 869, + [3715] = 622, + [3716] = 1251, + [3717] = 546, + [3718] = 555, + [3719] = 556, + [3720] = 653, + [3721] = 557, + [3722] = 3722, + [3723] = 723, + [3724] = 561, + [3725] = 3725, + [3726] = 571, + [3727] = 524, + [3728] = 535, + [3729] = 524, + [3730] = 511, + [3731] = 545, + [3732] = 612, + [3733] = 616, + [3734] = 565, + [3735] = 479, + [3736] = 3736, + [3737] = 615, + [3738] = 492, + [3739] = 859, + [3740] = 719, + [3741] = 623, + [3742] = 734, + [3743] = 743, + [3744] = 741, + [3745] = 895, + [3746] = 474, + [3747] = 737, + [3748] = 1251, + [3749] = 637, + [3750] = 550, + [3751] = 897, + [3752] = 3752, + [3753] = 3753, + [3754] = 486, + [3755] = 3755, + [3756] = 859, + [3757] = 735, + [3758] = 596, + [3759] = 498, + [3760] = 906, + [3761] = 3699, + [3762] = 1430, + [3763] = 498, + [3764] = 571, + [3765] = 586, + [3766] = 3722, + [3767] = 500, + [3768] = 653, + [3769] = 475, + [3770] = 511, + [3771] = 924, + [3772] = 561, + [3773] = 557, + [3774] = 1477, + [3775] = 1478, + [3776] = 479, + [3777] = 1479, + [3778] = 860, + [3779] = 603, + [3780] = 1476, + [3781] = 907, + [3782] = 911, + [3783] = 619, + [3784] = 287, + [3785] = 556, + [3786] = 3736, + [3787] = 622, + [3788] = 555, + [3789] = 910, + [3790] = 3725, + [3791] = 908, + [3792] = 550, + [3793] = 904, + [3794] = 546, + [3795] = 3752, + [3796] = 287, + [3797] = 3755, + [3798] = 3753, + [3799] = 498, + [3800] = 603, + [3801] = 622, + [3802] = 737, + [3803] = 908, + [3804] = 524, + [3805] = 924, + [3806] = 550, + [3807] = 907, + [3808] = 906, + [3809] = 897, + [3810] = 557, + [3811] = 571, + [3812] = 895, + [3813] = 911, + [3814] = 571, + [3815] = 723, + [3816] = 524, + [3817] = 3699, + [3818] = 474, + [3819] = 901, + [3820] = 603, + [3821] = 653, + [3822] = 653, + [3823] = 596, + [3824] = 741, + [3825] = 743, + [3826] = 561, + [3827] = 619, + [3828] = 734, + [3829] = 535, + [3830] = 623, + [3831] = 719, + [3832] = 3699, + [3833] = 1318, + [3834] = 920, + [3835] = 486, + [3836] = 556, + [3837] = 743, + [3838] = 492, + [3839] = 555, + [3840] = 723, + [3841] = 615, + [3842] = 546, + [3843] = 3843, + [3844] = 3725, + [3845] = 1251, + [3846] = 3846, + [3847] = 741, + [3848] = 931, + [3849] = 778, + [3850] = 592, + [3851] = 619, + [3852] = 571, + [3853] = 565, + [3854] = 561, + [3855] = 822, + [3856] = 869, + [3857] = 944, + [3858] = 3858, + [3859] = 3859, + [3860] = 557, + [3861] = 719, + [3862] = 3736, + [3863] = 556, + [3864] = 622, + [3865] = 623, + [3866] = 546, + [3867] = 555, + [3868] = 546, + [3869] = 622, + [3870] = 1360, + [3871] = 859, + [3872] = 619, + [3873] = 555, + [3874] = 723, + [3875] = 734, + [3876] = 556, + [3877] = 603, + [3878] = 561, + [3879] = 3725, + [3880] = 498, + [3881] = 479, + [3882] = 565, + [3883] = 475, + [3884] = 1251, + [3885] = 612, + [3886] = 616, + [3887] = 859, + [3888] = 910, + [3889] = 557, + [3890] = 1440, + [3891] = 653, + [3892] = 615, + [3893] = 535, + [3894] = 3736, + [3895] = 596, + [3896] = 545, + [3897] = 545, + [3898] = 498, + [3899] = 511, + [3900] = 859, + [3901] = 603, + [3902] = 719, + [3903] = 623, + [3904] = 734, + [3905] = 743, + [3906] = 741, + [3907] = 615, + [3908] = 474, + [3909] = 737, + [3910] = 1457, + [3911] = 535, + [3912] = 565, + [3913] = 612, + [3914] = 637, + [3915] = 3846, + [3916] = 822, + [3917] = 881, + [3918] = 885, + [3919] = 603, + [3920] = 1467, + [3921] = 886, + [3922] = 486, + [3923] = 735, + [3924] = 596, + [3925] = 500, + [3926] = 887, + [3927] = 735, + [3928] = 524, + [3929] = 550, + [3930] = 3859, + [3931] = 550, + [3932] = 3858, + [3933] = 616, + [3934] = 612, + [3935] = 571, + [3936] = 603, + [3937] = 561, + [3938] = 557, + [3939] = 556, + [3940] = 555, + [3941] = 546, + [3942] = 550, + [3943] = 550, + [3944] = 586, + [3945] = 498, + [3946] = 550, + [3947] = 616, + [3948] = 860, + [3949] = 475, + [3950] = 778, + [3951] = 500, + [3952] = 653, + [3953] = 592, + [3954] = 500, + [3955] = 586, + [3956] = 511, + [3957] = 735, + [3958] = 550, + [3959] = 637, + [3960] = 550, + [3961] = 622, + [3962] = 904, + [3963] = 475, + [3964] = 653, + [3965] = 479, + [3966] = 498, + [3967] = 492, + [3968] = 860, + [3969] = 545, + [3970] = 619, + [3971] = 3843, + [3972] = 737, + [3973] = 474, + [3974] = 475, + [3975] = 859, + [3976] = 603, + [3977] = 901, + [3978] = 3978, + [3979] = 653, + [3980] = 1318, + [3981] = 3981, + [3982] = 920, + [3983] = 822, + [3984] = 869, + [3985] = 944, + [3986] = 3986, + [3987] = 550, + [3988] = 1360, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, + [3992] = 1440, + [3993] = 3993, [3994] = 3994, - [3995] = 772, - [3996] = 3856, - [3997] = 759, - [3998] = 2040, - [3999] = 776, - [4000] = 1129, - [4001] = 768, - [4002] = 3880, - [4003] = 729, - [4004] = 1129, - [4005] = 1889, - [4006] = 3879, - [4007] = 3890, - [4008] = 1580, - [4009] = 1950, - [4010] = 1888, - [4011] = 736, - [4012] = 3873, + [3995] = 3995, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, + [3999] = 3999, + [4000] = 4000, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, + [4005] = 1457, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, + [4011] = 4011, + [4012] = 4012, [4013] = 4013, - [4014] = 735, - [4015] = 747, - [4016] = 773, - [4017] = 1883, - [4018] = 1881, - [4019] = 1950, - [4020] = 732, - [4021] = 734, - [4022] = 2019, - [4023] = 760, - [4024] = 761, - [4025] = 766, - [4026] = 765, - [4027] = 1129, + [4014] = 4014, + [4015] = 1467, + [4016] = 4016, + [4017] = 4017, + [4018] = 4018, + [4019] = 4019, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 4027, [4028] = 4028, - [4029] = 764, - [4030] = 762, - [4031] = 1892, - [4032] = 733, - [4033] = 732, - [4034] = 3871, - [4035] = 1908, - [4036] = 1574, - [4037] = 1953, - [4038] = 763, - [4039] = 1920, - [4040] = 1573, - [4041] = 769, - [4042] = 1604, - [4043] = 724, - [4044] = 4013, - [4045] = 763, - [4046] = 3928, - [4047] = 731, - [4048] = 754, - [4049] = 764, - [4050] = 4050, - [4051] = 1923, - [4052] = 765, - [4053] = 766, - [4054] = 4054, - [4055] = 733, - [4056] = 724, - [4057] = 4057, - [4058] = 4058, - [4059] = 1909, - [4060] = 762, - [4061] = 1515, - [4062] = 730, - [4063] = 1944, - [4064] = 761, - [4065] = 760, - [4066] = 4066, - [4067] = 4067, - [4068] = 773, - [4069] = 1945, - [4070] = 1946, - [4071] = 747, - [4072] = 4072, - [4073] = 2053, - [4074] = 4074, - [4075] = 4066, - [4076] = 774, - [4077] = 1562, - [4078] = 1947, - [4079] = 1515, - [4080] = 4080, - [4081] = 1948, - [4082] = 1533, - [4083] = 4067, - [4084] = 731, - [4085] = 775, - [4086] = 4086, - [4087] = 1949, - [4088] = 767, - [4089] = 4089, - [4090] = 4090, - [4091] = 1563, - [4092] = 734, - [4093] = 1605, - [4094] = 2050, - [4095] = 2042, - [4096] = 4090, - [4097] = 4089, - [4098] = 735, - [4099] = 4058, - [4100] = 4086, - [4101] = 3953, - [4102] = 3977, - [4103] = 4054, - [4104] = 4050, - [4105] = 2039, - [4106] = 2038, - [4107] = 2037, - [4108] = 4080, - [4109] = 778, - [4110] = 768, - [4111] = 1533, - [4112] = 1573, - [4113] = 776, - [4114] = 1931, - [4115] = 3983, - [4116] = 3984, - [4117] = 3987, - [4118] = 4072, - [4119] = 3994, - [4120] = 4074, - [4121] = 777, - [4122] = 2015, - [4123] = 723, - [4124] = 2029, - [4125] = 757, - [4126] = 756, - [4127] = 1907, - [4128] = 1515, - [4129] = 1947, - [4130] = 2053, - [4131] = 1584, - [4132] = 1948, - [4133] = 1604, - [4134] = 1605, - [4135] = 1606, - [4136] = 4057, - [4137] = 1949, - [4138] = 1891, - [4139] = 1129, - [4140] = 1129, - [4141] = 1892, - [4142] = 1950, - [4143] = 1881, - [4144] = 1476, - [4145] = 1883, - [4146] = 1918, - [4147] = 1477, - [4148] = 1905, - [4149] = 1478, - [4150] = 1479, - [4151] = 2039, - [4152] = 1886, - [4153] = 1563, - [4154] = 1582, - [4155] = 2042, - [4156] = 1898, - [4157] = 1888, - [4158] = 1945, - [4159] = 1889, - [4160] = 1921, - [4161] = 1944, - [4162] = 1923, - [4163] = 2038, - [4164] = 1950, - [4165] = 1479, - [4166] = 1920, - [4167] = 1953, - [4168] = 1552, - [4169] = 1552, - [4170] = 2037, - [4171] = 1908, - [4172] = 1584, - [4173] = 1478, - [4174] = 1580, - [4175] = 1887, - [4176] = 1918, - [4177] = 1477, - [4178] = 1611, - [4179] = 729, - [4180] = 1582, - [4181] = 1609, - [4182] = 1905, - [4183] = 1884, - [4184] = 2029, - [4185] = 1611, - [4186] = 1882, - [4187] = 1950, - [4188] = 1574, - [4189] = 1890, - [4190] = 1573, - [4191] = 2059, - [4192] = 1922, - [4193] = 1549, - [4194] = 2004, - [4195] = 2002, - [4196] = 1476, - [4197] = 723, - [4198] = 1580, - [4199] = 1562, - [4200] = 1563, - [4201] = 1515, - [4202] = 747, - [4203] = 1909, - [4204] = 730, - [4205] = 731, - [4206] = 2050, - [4207] = 1913, - [4208] = 1950, - [4209] = 733, - [4210] = 1931, - [4211] = 1562, - [4212] = 1903, - [4213] = 727, - [4214] = 1129, - [4215] = 1946, - [4216] = 1927, - [4217] = 1609, - [4218] = 2059, - [4219] = 732, - [4220] = 1969, - [4221] = 1912, - [4222] = 723, - [4223] = 1549, - [4224] = 1129, - [4225] = 1917, - [4226] = 1574, - [4227] = 734, - [4228] = 736, - [4229] = 1950, - [4230] = 1129, - [4231] = 2040, - [4232] = 1604, - [4233] = 2015, - [4234] = 2019, - [4235] = 1605, - [4236] = 1891, - [4237] = 1606, - [4238] = 735, - [4239] = 1957, - [4240] = 1931, - [4241] = 1573, - [4242] = 1129, - [4243] = 2015, - [4244] = 761, - [4245] = 723, - [4246] = 723, - [4247] = 731, - [4248] = 1892, - [4249] = 1950, - [4250] = 4250, - [4251] = 1890, - [4252] = 1881, - [4253] = 1882, - [4254] = 1884, - [4255] = 730, - [4256] = 2037, - [4257] = 747, - [4258] = 731, - [4259] = 736, - [4260] = 1921, - [4261] = 1886, - [4262] = 732, - [4263] = 1898, - [4264] = 729, - [4265] = 723, - [4266] = 1909, - [4267] = 727, - [4268] = 1922, - [4269] = 733, - [4270] = 1892, - [4271] = 734, - [4272] = 2029, - [4273] = 1888, - [4274] = 775, - [4275] = 1950, - [4276] = 1881, - [4277] = 735, - [4278] = 1889, - [4279] = 1913, - [4280] = 4280, - [4281] = 723, - [4282] = 1948, - [4283] = 724, - [4284] = 1887, - [4285] = 2002, - [4286] = 1903, - [4287] = 736, - [4288] = 735, - [4289] = 729, - [4290] = 2040, - [4291] = 723, - [4292] = 734, - [4293] = 747, - [4294] = 1950, - [4295] = 1907, - [4296] = 1957, - [4297] = 1969, - [4298] = 1913, - [4299] = 1950, - [4300] = 1909, - [4301] = 2002, - [4302] = 2004, - [4303] = 2015, - [4304] = 1927, - [4305] = 2037, - [4306] = 1883, - [4307] = 2038, - [4308] = 2039, - [4309] = 1908, - [4310] = 1953, - [4311] = 767, - [4312] = 2042, - [4313] = 766, - [4314] = 765, - [4315] = 764, - [4316] = 763, - [4317] = 1883, - [4318] = 730, - [4319] = 2050, - [4320] = 4320, - [4321] = 762, - [4322] = 2040, - [4323] = 1949, - [4324] = 730, - [4325] = 727, - [4326] = 1917, - [4327] = 730, - [4328] = 1912, - [4329] = 760, - [4330] = 731, - [4331] = 1886, - [4332] = 1907, - [4333] = 729, - [4334] = 2029, - [4335] = 1920, - [4336] = 2053, - [4337] = 1888, - [4338] = 731, - [4339] = 1950, - [4340] = 732, - [4341] = 730, - [4342] = 731, - [4343] = 1947, - [4344] = 732, - [4345] = 733, - [4346] = 1923, - [4347] = 1946, - [4348] = 734, - [4349] = 727, - [4350] = 1945, - [4351] = 732, - [4352] = 1903, - [4353] = 735, - [4354] = 757, - [4355] = 736, - [4356] = 756, - [4357] = 1944, - [4358] = 733, - [4359] = 727, - [4360] = 729, - [4361] = 1889, - [4362] = 1944, - [4363] = 734, - [4364] = 733, - [4365] = 1923, - [4366] = 735, - [4367] = 1945, - [4368] = 1912, - [4369] = 736, - [4370] = 724, - [4371] = 1920, - [4372] = 778, - [4373] = 1953, - [4374] = 1908, - [4375] = 2038, - [4376] = 1917, - [4377] = 2039, - [4378] = 1950, - [4379] = 2019, - [4380] = 2019, - [4381] = 1946, - [4382] = 1969, - [4383] = 2042, - [4384] = 1947, - [4385] = 1948, - [4386] = 732, - [4387] = 1949, - [4388] = 733, - [4389] = 1887, - [4390] = 1957, - [4391] = 727, - [4392] = 1884, - [4393] = 1882, - [4394] = 2050, - [4395] = 1890, - [4396] = 1922, - [4397] = 734, - [4398] = 736, - [4399] = 754, - [4400] = 735, - [4401] = 1921, - [4402] = 2004, - [4403] = 1927, - [4404] = 729, - [4405] = 1898, - [4406] = 2053, - [4407] = 1478, - [4408] = 1476, - [4409] = 1574, - [4410] = 1479, - [4411] = 1477, - [4412] = 752, - [4413] = 1515, - [4414] = 1129, - [4415] = 4415, - [4416] = 1950, - [4417] = 4417, - [4418] = 4418, - [4419] = 4419, - [4420] = 4420, - [4421] = 4419, - [4422] = 4420, - [4423] = 4423, - [4424] = 4423, - [4425] = 4423, - [4426] = 4419, - [4427] = 4420, - [4428] = 4423, - [4429] = 4419, - [4430] = 4423, - [4431] = 4418, - [4432] = 4419, - [4433] = 4433, - [4434] = 4423, - [4435] = 4423, - [4436] = 4436, - [4437] = 4419, - [4438] = 4419, - [4439] = 4419, - [4440] = 4419, - [4441] = 4433, - [4442] = 4423, - [4443] = 4420, - [4444] = 4423, - [4445] = 4433, - [4446] = 4418, - [4447] = 4418, - [4448] = 4418, - [4449] = 4418, - [4450] = 4418, - [4451] = 4418, - [4452] = 4433, - [4453] = 4433, - [4454] = 4420, - [4455] = 4418, - [4456] = 4418, - [4457] = 4423, - [4458] = 4418, - [4459] = 4423, - [4460] = 4423, - [4461] = 4433, - [4462] = 4418, - [4463] = 4419, - [4464] = 4418, - [4465] = 4433, - [4466] = 4419, - [4467] = 4418, - [4468] = 4420, - [4469] = 4423, - [4470] = 4420, - [4471] = 4418, - [4472] = 4420, - [4473] = 4419, - [4474] = 4433, - [4475] = 4433, - [4476] = 4420, - [4477] = 4418, - [4478] = 4433, - [4479] = 4418, - [4480] = 4420, - [4481] = 4433, - [4482] = 4418, - [4483] = 4423, - [4484] = 4433, - [4485] = 4418, - [4486] = 4423, - [4487] = 4420, - [4488] = 4420, - [4489] = 4423, - [4490] = 4418, - [4491] = 4433, - [4492] = 4420, - [4493] = 4419, - [4494] = 4419, - [4495] = 4433, - [4496] = 4419, - [4497] = 4420, - [4498] = 4433, - [4499] = 4419, - [4500] = 4418, - [4501] = 4418, - [4502] = 4423, - [4503] = 4433, - [4504] = 4420, - [4505] = 4505, - [4506] = 4433, - [4507] = 4418, - [4508] = 4419, - [4509] = 4420, - [4510] = 4420, - [4511] = 4418, + [4029] = 4029, + [4030] = 4030, + [4031] = 4031, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 3981, + [4042] = 931, + [4043] = 3986, + [4044] = 3989, + [4045] = 3990, + [4046] = 869, + [4047] = 3993, + [4048] = 3991, + [4049] = 3994, + [4050] = 3996, + [4051] = 3997, + [4052] = 3998, + [4053] = 3999, + [4054] = 4000, + [4055] = 4001, + [4056] = 4002, + [4057] = 4003, + [4058] = 4006, + [4059] = 4007, + [4060] = 4008, + [4061] = 4009, + [4062] = 4010, + [4063] = 3995, + [4064] = 4012, + [4065] = 4013, + [4066] = 4014, + [4067] = 3846, + [4068] = 4016, + [4069] = 4017, + [4070] = 4018, + [4071] = 4019, + [4072] = 4020, + [4073] = 4021, + [4074] = 4022, + [4075] = 4023, + [4076] = 4024, + [4077] = 4025, + [4078] = 4026, + [4079] = 4027, + [4080] = 3859, + [4081] = 3858, + [4082] = 4028, + [4083] = 4029, + [4084] = 4030, + [4085] = 4031, + [4086] = 4032, + [4087] = 4033, + [4088] = 4034, + [4089] = 4035, + [4090] = 4036, + [4091] = 4037, + [4092] = 4038, + [4093] = 4039, + [4094] = 4040, + [4095] = 603, + [4096] = 860, + [4097] = 4011, + [4098] = 653, + [4099] = 500, + [4100] = 586, + [4101] = 1055, + [4102] = 596, + [4103] = 735, + [4104] = 486, + [4105] = 550, + [4106] = 637, + [4107] = 737, + [4108] = 474, + [4109] = 741, + [4110] = 743, + [4111] = 734, + [4112] = 623, + [4113] = 719, + [4114] = 616, + [4115] = 612, + [4116] = 723, + [4117] = 1238, + [4118] = 1765, + [4119] = 1241, + [4120] = 1769, + [4121] = 1251, + [4122] = 1253, + [4123] = 1254, + [4124] = 904, + [4125] = 1256, + [4126] = 910, + [4127] = 911, + [4128] = 1276, + [4129] = 1319, + [4130] = 1324, + [4131] = 1328, + [4132] = 1329, + [4133] = 1330, + [4134] = 1331, + [4135] = 924, + [4136] = 1337, + [4137] = 1344, + [4138] = 1365, + [4139] = 1375, + [4140] = 1333, + [4141] = 1397, + [4142] = 1401, + [4143] = 1408, + [4144] = 1409, + [4145] = 907, + [4146] = 906, + [4147] = 1430, + [4148] = 1431, + [4149] = 1441, + [4150] = 1442, + [4151] = 1445, + [4152] = 1446, + [4153] = 897, + [4154] = 908, + [4155] = 1458, + [4156] = 1459, + [4157] = 1460, + [4158] = 1461, + [4159] = 895, + [4160] = 1468, + [4161] = 1469, + [4162] = 1470, + [4163] = 1472, + [4164] = 1474, + [4165] = 1475, + [4166] = 1476, + [4167] = 1477, + [4168] = 1478, + [4169] = 1479, + [4170] = 1451, + [4171] = 3846, + [4172] = 3859, + [4173] = 3858, + [4174] = 492, + [4175] = 479, + [4176] = 511, + [4177] = 1251, + [4178] = 778, + [4179] = 592, + [4180] = 931, + [4181] = 859, + [4182] = 901, + [4183] = 904, + [4184] = 908, + [4185] = 910, + [4186] = 911, + [4187] = 1318, + [4188] = 920, + [4189] = 944, + [4190] = 924, + [4191] = 822, + [4192] = 869, + [4193] = 1360, + [4194] = 907, + [4195] = 906, + [4196] = 1440, + [4197] = 897, + [4198] = 1457, + [4199] = 895, + [4200] = 1467, + [4201] = 550, + [4202] = 881, + [4203] = 885, + [4204] = 886, + [4205] = 887, + [4206] = 498, + [4207] = 571, + [4208] = 561, + [4209] = 557, + [4210] = 556, + [4211] = 555, + [4212] = 546, + [4213] = 944, + [4214] = 622, + [4215] = 619, + [4216] = 860, + [4217] = 653, + [4218] = 550, + [4219] = 881, + [4220] = 885, + [4221] = 887, + [4222] = 550, + [4223] = 886, + [4224] = 859, + [4225] = 619, + [4226] = 622, + [4227] = 1251, + [4228] = 546, + [4229] = 555, + [4230] = 556, + [4231] = 557, + [4232] = 561, + [4233] = 571, + [4234] = 524, + [4235] = 535, + [4236] = 511, + [4237] = 545, + [4238] = 565, + [4239] = 479, + [4240] = 615, + [4241] = 492, + [4242] = 603, + [4243] = 498, + [4244] = 822, + [4245] = 859, + [4246] = 859, + [4247] = 885, + [4248] = 886, + [4249] = 887, + [4250] = 859, + [4251] = 881, + [4252] = 859, + [4253] = 1442, + [4254] = 1470, + [4255] = 901, + [4256] = 1251, + [4257] = 1238, + [4258] = 904, + [4259] = 1765, + [4260] = 859, + [4261] = 1241, + [4262] = 1769, + [4263] = 1318, + [4264] = 920, + [4265] = 1253, + [4266] = 1254, + [4267] = 895, + [4268] = 1251, + [4269] = 931, + [4270] = 822, + [4271] = 897, + [4272] = 1251, + [4273] = 619, + [4274] = 1251, + [4275] = 622, + [4276] = 859, + [4277] = 498, + [4278] = 546, + [4279] = 555, + [4280] = 556, + [4281] = 557, + [4282] = 561, + [4283] = 571, + [4284] = 887, + [4285] = 886, + [4286] = 885, + [4287] = 881, + [4288] = 869, + [4289] = 944, + [4290] = 1360, + [4291] = 908, + [4292] = 906, + [4293] = 907, + [4294] = 924, + [4295] = 1256, + [4296] = 911, + [4297] = 910, + [4298] = 3978, + [4299] = 1479, + [4300] = 1478, + [4301] = 1477, + [4302] = 1440, + [4303] = 1476, + [4304] = 1475, + [4305] = 1474, + [4306] = 1276, + [4307] = 1251, + [4308] = 1472, + [4309] = 859, + [4310] = 1457, + [4311] = 1467, + [4312] = 1469, + [4313] = 1468, + [4314] = 1319, + [4315] = 1461, + [4316] = 1324, + [4317] = 1328, + [4318] = 1460, + [4319] = 1459, + [4320] = 1329, + [4321] = 859, + [4322] = 1458, + [4323] = 1330, + [4324] = 1331, + [4325] = 1451, + [4326] = 1251, + [4327] = 1765, + [4328] = 1769, + [4329] = 1446, + [4330] = 1333, + [4331] = 1475, + [4332] = 1441, + [4333] = 1479, + [4334] = 1337, + [4335] = 1344, + [4336] = 1478, + [4337] = 1445, + [4338] = 1238, + [4339] = 1241, + [4340] = 1477, + [4341] = 1476, + [4342] = 1251, + [4343] = 1253, + [4344] = 1442, + [4345] = 1254, + [4346] = 1328, + [4347] = 1431, + [4348] = 1474, + [4349] = 1256, + [4350] = 1472, + [4351] = 1470, + [4352] = 1469, + [4353] = 1468, + [4354] = 1430, + [4355] = 1365, + [4356] = 1375, + [4357] = 1333, + [4358] = 1461, + [4359] = 1460, + [4360] = 1459, + [4361] = 1458, + [4362] = 1451, + [4363] = 1446, + [4364] = 1445, + [4365] = 498, + [4366] = 1441, + [4367] = 1276, + [4368] = 1319, + [4369] = 1397, + [4370] = 1431, + [4371] = 1430, + [4372] = 1409, + [4373] = 1401, + [4374] = 1408, + [4375] = 1408, + [4376] = 1401, + [4377] = 1397, + [4378] = 1375, + [4379] = 1365, + [4380] = 1344, + [4381] = 1337, + [4382] = 1409, + [4383] = 1331, + [4384] = 1330, + [4385] = 1329, + [4386] = 1324, + [4387] = 1451, + [4388] = 1461, + [4389] = 619, + [4390] = 622, + [4391] = 571, + [4392] = 555, + [4393] = 556, + [4394] = 561, + [4395] = 498, + [4396] = 4396, + [4397] = 1765, + [4398] = 1238, + [4399] = 571, + [4400] = 561, + [4401] = 557, + [4402] = 556, + [4403] = 555, + [4404] = 546, + [4405] = 498, + [4406] = 1241, + [4407] = 1769, + [4408] = 622, + [4409] = 1251, + [4410] = 1251, + [4411] = 612, + [4412] = 616, + [4413] = 619, + [4414] = 1251, + [4415] = 596, + [4416] = 653, + [4417] = 1253, + [4418] = 653, + [4419] = 1328, + [4420] = 498, + [4421] = 571, + [4422] = 571, + [4423] = 622, + [4424] = 557, + [4425] = 1254, + [4426] = 1479, + [4427] = 1478, + [4428] = 561, + [4429] = 1477, + [4430] = 1476, + [4431] = 1475, + [4432] = 1474, + [4433] = 1472, + [4434] = 1470, + [4435] = 557, + [4436] = 619, + [4437] = 1469, + [4438] = 550, + [4439] = 1468, + [4440] = 556, + [4441] = 1446, + [4442] = 1460, + [4443] = 1459, + [4444] = 1458, + [4445] = 555, + [4446] = 546, + [4447] = 592, + [4448] = 498, + [4449] = 737, + [4450] = 546, + [4451] = 603, + [4452] = 1445, + [4453] = 561, + [4454] = 1442, + [4455] = 1441, + [4456] = 550, + [4457] = 557, + [4458] = 556, + [4459] = 555, + [4460] = 1431, + [4461] = 546, + [4462] = 619, + [4463] = 622, + [4464] = 622, + [4465] = 546, + [4466] = 1430, + [4467] = 1409, + [4468] = 1408, + [4469] = 1401, + [4470] = 4470, + [4471] = 555, + [4472] = 1397, + [4473] = 1333, + [4474] = 4474, + [4475] = 1375, + [4476] = 723, + [4477] = 1256, + [4478] = 735, + [4479] = 500, + [4480] = 556, + [4481] = 498, + [4482] = 1365, + [4483] = 557, + [4484] = 561, + [4485] = 619, + [4486] = 603, + [4487] = 571, + [4488] = 719, + [4489] = 623, + [4490] = 1344, + [4491] = 734, + [4492] = 743, + [4493] = 1337, + [4494] = 1331, + [4495] = 1330, + [4496] = 1329, + [4497] = 1324, + [4498] = 741, + [4499] = 474, + [4500] = 1319, + [4501] = 1251, + [4502] = 1276, + [4503] = 822, + [4504] = 859, + [4505] = 881, + [4506] = 944, + [4507] = 885, + [4508] = 886, + [4509] = 887, + [4510] = 4510, + [4511] = 1251, [4512] = 4512, [4513] = 4513, [4514] = 4514, [4515] = 4515, - [4516] = 4513, - [4517] = 4517, - [4518] = 4518, - [4519] = 4518, + [4516] = 4516, + [4517] = 4515, + [4518] = 4516, + [4519] = 4514, [4520] = 4520, - [4521] = 4518, - [4522] = 4522, - [4523] = 4518, - [4524] = 4518, - [4525] = 4514, - [4526] = 4526, - [4527] = 4518, - [4528] = 4514, - [4529] = 4513, - [4530] = 4515, - [4531] = 4512, - [4532] = 4513, - [4533] = 4526, - [4534] = 4526, - [4535] = 4520, - [4536] = 4515, - [4537] = 4512, - [4538] = 4518, - [4539] = 4539, - [4540] = 4512, - [4541] = 4515, - [4542] = 4515, - [4543] = 4513, - [4544] = 4518, - [4545] = 4515, - [4546] = 4518, - [4547] = 4514, - [4548] = 4548, + [4521] = 4513, + [4522] = 4513, + [4523] = 4520, + [4524] = 4515, + [4525] = 4515, + [4526] = 4520, + [4527] = 4513, + [4528] = 4516, + [4529] = 4514, + [4530] = 4514, + [4531] = 4515, + [4532] = 4520, + [4533] = 4514, + [4534] = 4513, + [4535] = 4513, + [4536] = 4513, + [4537] = 4516, + [4538] = 4538, + [4539] = 4516, + [4540] = 4515, + [4541] = 4516, + [4542] = 4514, + [4543] = 4515, + [4544] = 4515, + [4545] = 4520, + [4546] = 4516, + [4547] = 4515, + [4548] = 4513, [4549] = 4520, - [4550] = 4514, - [4551] = 4551, - [4552] = 4518, - [4553] = 4526, - [4554] = 4520, - [4555] = 4520, - [4556] = 4556, + [4550] = 4515, + [4551] = 4514, + [4552] = 4515, + [4553] = 4515, + [4554] = 4514, + [4555] = 4514, + [4556] = 4520, [4557] = 4515, - [4558] = 4518, - [4559] = 4512, - [4560] = 4514, - [4561] = 4515, - [4562] = 4512, - [4563] = 4518, - [4564] = 4514, - [4565] = 4520, + [4558] = 4513, + [4559] = 4515, + [4560] = 4516, + [4561] = 4516, + [4562] = 4513, + [4563] = 4516, + [4564] = 4564, + [4565] = 4514, [4566] = 4513, - [4567] = 4522, - [4568] = 4539, - [4569] = 4518, - [4570] = 4551, - [4571] = 4515, - [4572] = 4512, - [4573] = 4526, - [4574] = 4520, - [4575] = 4514, - [4576] = 4515, - [4577] = 4526, - [4578] = 4513, - [4579] = 4513, - [4580] = 4580, - [4581] = 4520, - [4582] = 4514, - [4583] = 4513, - [4584] = 4526, - [4585] = 4520, - [4586] = 4515, + [4567] = 4520, + [4568] = 4515, + [4569] = 4516, + [4570] = 4514, + [4571] = 4520, + [4572] = 4515, + [4573] = 4515, + [4574] = 4515, + [4575] = 4513, + [4576] = 4514, + [4577] = 4520, + [4578] = 4516, + [4579] = 4514, + [4580] = 4516, + [4581] = 4514, + [4582] = 4513, + [4583] = 4516, + [4584] = 4515, + [4585] = 4516, + [4586] = 4520, [4587] = 4520, - [4588] = 4518, + [4588] = 4513, [4589] = 4515, - [4590] = 4512, - [4591] = 4526, + [4590] = 4515, + [4591] = 4520, [4592] = 4514, - [4593] = 4513, - [4594] = 4514, - [4595] = 4526, - [4596] = 4512, - [4597] = 4514, - [4598] = 4526, - [4599] = 4520, - [4600] = 4514, - [4601] = 4513, - [4602] = 4513, - [4603] = 4518, - [4604] = 4518, - [4605] = 4515, - [4606] = 4513, - [4607] = 4515, - [4608] = 4515, - [4609] = 4514, - [4610] = 4512, - [4611] = 4514, - [4612] = 4518, - [4613] = 4514, - [4614] = 4518, - [4615] = 4520, - [4616] = 4520, - [4617] = 4526, - [4618] = 4515, - [4619] = 4520, - [4620] = 4526, - [4621] = 4513, - [4622] = 4512, - [4623] = 4514, - [4624] = 4513, - [4625] = 4515, - [4626] = 4518, - [4627] = 4514, - [4628] = 4514, - [4629] = 4520, - [4630] = 4512, - [4631] = 4518, - [4632] = 4514, - [4633] = 4520, - [4634] = 4515, - [4635] = 4513, - [4636] = 4513, - [4637] = 4513, - [4638] = 4514, - [4639] = 4513, - [4640] = 4520, - [4641] = 4512, - [4642] = 4518, - [4643] = 4518, - [4644] = 4526, - [4645] = 4513, - [4646] = 4526, - [4647] = 4513, - [4648] = 4518, - [4649] = 4526, - [4650] = 4520, - [4651] = 4512, - [4652] = 4515, - [4653] = 4520, - [4654] = 4520, - [4655] = 4520, - [4656] = 4513, - [4657] = 4513, - [4658] = 4515, - [4659] = 4526, - [4660] = 4517, - [4661] = 4515, - [4662] = 4512, - [4663] = 4518, - [4664] = 4526, - [4665] = 4515, - [4666] = 4666, - [4667] = 4667, - [4668] = 4513, - [4669] = 4526, - [4670] = 4512, - [4671] = 4513, - [4672] = 4526, - [4673] = 4520, - [4674] = 4512, - [4675] = 4675, - [4676] = 4514, - [4677] = 4518, - [4678] = 4513, - [4679] = 1479, - [4680] = 1477, - [4681] = 1478, - [4682] = 1476, - [4683] = 1479, - [4684] = 1478, - [4685] = 1477, - [4686] = 1476, - [4687] = 1476, - [4688] = 1479, - [4689] = 1478, - [4690] = 1477, - [4691] = 1477, - [4692] = 1479, - [4693] = 1477, - [4694] = 1476, - [4695] = 1478, - [4696] = 1479, - [4697] = 1476, - [4698] = 1478, - [4699] = 1479, - [4700] = 4700, - [4701] = 1476, - [4702] = 1477, - [4703] = 1478, - [4704] = 1478, - [4705] = 1479, - [4706] = 1477, - [4707] = 4700, - [4708] = 1476, - [4709] = 4700, - [4710] = 4710, - [4711] = 4711, - [4712] = 4711, - [4713] = 4711, - [4714] = 4711, - [4715] = 4711, - [4716] = 4711, - [4717] = 4711, - [4718] = 4711, - [4719] = 4711, - [4720] = 4711, - [4721] = 4711, - [4722] = 4711, - [4723] = 4711, - [4724] = 4711, - [4725] = 4725, - [4726] = 4711, - [4727] = 4711, - [4728] = 4711, - [4729] = 4729, - [4730] = 1476, - [4731] = 1479, - [4732] = 1478, - [4733] = 1477, - [4734] = 4734, + [4593] = 4515, + [4594] = 4520, + [4595] = 4513, + [4596] = 4516, + [4597] = 4516, + [4598] = 4520, + [4599] = 4514, + [4600] = 4513, + [4601] = 4515, + [4602] = 4514, + [4603] = 4520, + [4604] = 4520, + [4605] = 4513, + [4606] = 4515, + [4607] = 4607, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, + [4611] = 4609, + [4612] = 4612, + [4613] = 4610, + [4614] = 4610, + [4615] = 4609, + [4616] = 4616, + [4617] = 4610, + [4618] = 4610, + [4619] = 4609, + [4620] = 4609, + [4621] = 4610, + [4622] = 4609, + [4623] = 4612, + [4624] = 4612, + [4625] = 4609, + [4626] = 4608, + [4627] = 4627, + [4628] = 4610, + [4629] = 4609, + [4630] = 4610, + [4631] = 4609, + [4632] = 4627, + [4633] = 4610, + [4634] = 4634, + [4635] = 4610, + [4636] = 4609, + [4637] = 4634, + [4638] = 4638, + [4639] = 4639, + [4640] = 4640, + [4641] = 4608, + [4642] = 4642, + [4643] = 4612, + [4644] = 4609, + [4645] = 4610, + [4646] = 4609, + [4647] = 4647, + [4648] = 4610, + [4649] = 4647, + [4650] = 4650, + [4651] = 4647, + [4652] = 4647, + [4653] = 4608, + [4654] = 4610, + [4655] = 4610, + [4656] = 4608, + [4657] = 4616, + [4658] = 4609, + [4659] = 4610, + [4660] = 4616, + [4661] = 4612, + [4662] = 4662, + [4663] = 4608, + [4664] = 4609, + [4665] = 4612, + [4666] = 4627, + [4667] = 4616, + [4668] = 4612, + [4669] = 4608, + [4670] = 4627, + [4671] = 4616, + [4672] = 4612, + [4673] = 4638, + [4674] = 4627, + [4675] = 4616, + [4676] = 4612, + [4677] = 4608, + [4678] = 4612, + [4679] = 4612, + [4680] = 4627, + [4681] = 4608, + [4682] = 4627, + [4683] = 4647, + [4684] = 4616, + [4685] = 4627, + [4686] = 4647, + [4687] = 4608, + [4688] = 4647, + [4689] = 4616, + [4690] = 4616, + [4691] = 4627, + [4692] = 4627, + [4693] = 4608, + [4694] = 4662, + [4695] = 4647, + [4696] = 4609, + [4697] = 4609, + [4698] = 4612, + [4699] = 4647, + [4700] = 4609, + [4701] = 4616, + [4702] = 4627, + [4703] = 4610, + [4704] = 4612, + [4705] = 4616, + [4706] = 4627, + [4707] = 4612, + [4708] = 4608, + [4709] = 4616, + [4710] = 4627, + [4711] = 4616, + [4712] = 4612, + [4713] = 4608, + [4714] = 4612, + [4715] = 4612, + [4716] = 4608, + [4717] = 4609, + [4718] = 4608, + [4719] = 4719, + [4720] = 4616, + [4721] = 4627, + [4722] = 4616, + [4723] = 4612, + [4724] = 4610, + [4725] = 4627, + [4726] = 4627, + [4727] = 4647, + [4728] = 4608, + [4729] = 4609, + [4730] = 4608, + [4731] = 4609, + [4732] = 4609, + [4733] = 4612, + [4734] = 4627, [4735] = 4735, - [4736] = 4736, - [4737] = 4737, - [4738] = 4738, - [4739] = 4739, - [4740] = 752, - [4741] = 4741, - [4742] = 736, - [4743] = 729, - [4744] = 4741, - [4745] = 4741, - [4746] = 727, - [4747] = 4741, - [4748] = 734, - [4749] = 4741, - [4750] = 4741, - [4751] = 4751, - [4752] = 4741, - [4753] = 731, - [4754] = 723, - [4755] = 4741, - [4756] = 4741, - [4757] = 733, - [4758] = 4741, - [4759] = 4751, - [4760] = 4741, - [4761] = 735, - [4762] = 4741, - [4763] = 730, - [4764] = 4741, - [4765] = 4741, - [4766] = 4741, - [4767] = 4741, - [4768] = 4741, - [4769] = 732, - [4770] = 730, - [4771] = 729, - [4772] = 727, - [4773] = 731, - [4774] = 736, - [4775] = 735, - [4776] = 732, - [4777] = 734, - [4778] = 733, - [4779] = 4779, - [4780] = 4780, - [4781] = 727, - [4782] = 4782, - [4783] = 4782, - [4784] = 723, - [4785] = 731, - [4786] = 730, - [4787] = 729, - [4788] = 732, - [4789] = 4782, - [4790] = 4782, - [4791] = 4782, - [4792] = 4780, - [4793] = 4780, - [4794] = 4782, - [4795] = 4780, - [4796] = 4782, - [4797] = 4780, - [4798] = 733, - [4799] = 4779, - [4800] = 4780, - [4801] = 4780, - [4802] = 4780, - [4803] = 4780, - [4804] = 734, - [4805] = 4780, - [4806] = 4780, - [4807] = 752, - [4808] = 4780, - [4809] = 736, - [4810] = 4782, - [4811] = 4780, - [4812] = 735, - [4813] = 4782, - [4814] = 4780, - [4815] = 4780, - [4816] = 4782, - [4817] = 723, - [4818] = 4782, - [4819] = 4782, - [4820] = 4780, - [4821] = 4782, - [4822] = 4780, - [4823] = 4782, - [4824] = 4782, - [4825] = 4782, - [4826] = 4782, + [4736] = 4627, + [4737] = 4612, + [4738] = 4647, + [4739] = 4647, + [4740] = 4616, + [4741] = 4609, + [4742] = 4647, + [4743] = 4608, + [4744] = 4610, + [4745] = 4616, + [4746] = 4612, + [4747] = 4627, + [4748] = 4616, + [4749] = 4612, + [4750] = 4627, + [4751] = 4647, + [4752] = 4647, + [4753] = 4608, + [4754] = 4616, + [4755] = 4647, + [4756] = 4608, + [4757] = 4612, + [4758] = 4616, + [4759] = 4627, + [4760] = 4650, + [4761] = 4616, + [4762] = 4610, + [4763] = 4609, + [4764] = 4616, + [4765] = 4612, + [4766] = 4612, + [4767] = 4609, + [4768] = 4608, + [4769] = 4609, + [4770] = 4627, + [4771] = 4608, + [4772] = 4609, + [4773] = 4647, + [4774] = 887, + [4775] = 887, + [4776] = 881, + [4777] = 885, + [4778] = 886, + [4779] = 881, + [4780] = 885, + [4781] = 886, + [4782] = 887, + [4783] = 885, + [4784] = 881, + [4785] = 886, + [4786] = 887, + [4787] = 886, + [4788] = 885, + [4789] = 881, + [4790] = 886, + [4791] = 885, + [4792] = 887, + [4793] = 881, + [4794] = 885, + [4795] = 4795, + [4796] = 886, + [4797] = 881, + [4798] = 887, + [4799] = 4795, + [4800] = 4795, + [4801] = 885, + [4802] = 881, + [4803] = 887, + [4804] = 886, + [4805] = 4805, + [4806] = 4806, + [4807] = 4805, + [4808] = 4805, + [4809] = 4805, + [4810] = 4805, + [4811] = 4811, + [4812] = 4805, + [4813] = 4805, + [4814] = 4805, + [4815] = 4805, + [4816] = 4805, + [4817] = 4805, + [4818] = 4805, + [4819] = 4805, + [4820] = 4805, + [4821] = 4805, + [4822] = 4805, + [4823] = 4805, + [4824] = 881, + [4825] = 4825, + [4826] = 4826, [4827] = 4827, - [4828] = 736, - [4829] = 730, + [4828] = 887, + [4829] = 886, [4830] = 4830, - [4831] = 4827, - [4832] = 4830, + [4831] = 885, + [4832] = 4832, [4833] = 4833, - [4834] = 4830, - [4835] = 4827, - [4836] = 723, - [4837] = 4833, - [4838] = 4833, - [4839] = 4827, - [4840] = 731, - [4841] = 4830, - [4842] = 4842, - [4843] = 4830, - [4844] = 4280, - [4845] = 4833, - [4846] = 4827, - [4847] = 736, + [4834] = 4834, + [4835] = 592, + [4836] = 557, + [4837] = 4837, + [4838] = 4837, + [4839] = 571, + [4840] = 4837, + [4841] = 4837, + [4842] = 561, + [4843] = 557, + [4844] = 556, + [4845] = 555, + [4846] = 546, + [4847] = 4837, [4848] = 4848, - [4849] = 4833, - [4850] = 4827, - [4851] = 727, - [4852] = 4830, - [4853] = 4830, - [4854] = 4827, - [4855] = 4855, - [4856] = 4830, - [4857] = 4857, - [4858] = 4833, - [4859] = 4855, - [4860] = 4830, - [4861] = 4830, - [4862] = 4833, - [4863] = 729, - [4864] = 727, - [4865] = 4827, - [4866] = 723, - [4867] = 4867, - [4868] = 4833, - [4869] = 4833, - [4870] = 4827, - [4871] = 729, - [4872] = 735, - [4873] = 734, - [4874] = 733, - [4875] = 732, - [4876] = 4833, - [4877] = 4827, - [4878] = 4830, - [4879] = 4830, - [4880] = 4833, - [4881] = 4827, - [4882] = 735, - [4883] = 4827, - [4884] = 4833, - [4885] = 734, - [4886] = 4830, - [4887] = 4830, - [4888] = 4830, - [4889] = 4889, - [4890] = 4827, - [4891] = 731, - [4892] = 4320, - [4893] = 4833, - [4894] = 4833, - [4895] = 4827, - [4896] = 4827, - [4897] = 4848, - [4898] = 4830, - [4899] = 4833, - [4900] = 733, - [4901] = 4833, - [4902] = 732, - [4903] = 4827, - [4904] = 4904, - [4905] = 4830, - [4906] = 730, - [4907] = 4907, - [4908] = 4827, - [4909] = 4833, - [4910] = 4910, - [4911] = 4911, - [4912] = 4912, - [4913] = 4913, - [4914] = 732, - [4915] = 4911, - [4916] = 4916, - [4917] = 735, - [4918] = 734, - [4919] = 723, - [4920] = 4913, - [4921] = 4913, - [4922] = 4889, - [4923] = 4911, - [4924] = 4911, - [4925] = 4911, - [4926] = 727, - [4927] = 4913, - [4928] = 4913, + [4849] = 622, + [4850] = 619, + [4851] = 4848, + [4852] = 4837, + [4853] = 4837, + [4854] = 4837, + [4855] = 4837, + [4856] = 498, + [4857] = 556, + [4858] = 571, + [4859] = 561, + [4860] = 546, + [4861] = 4837, + [4862] = 622, + [4863] = 4837, + [4864] = 4837, + [4865] = 619, + [4866] = 4837, + [4867] = 4837, + [4868] = 4837, + [4869] = 555, + [4870] = 4837, + [4871] = 4837, + [4872] = 622, + [4873] = 4873, + [4874] = 4874, + [4875] = 4874, + [4876] = 4873, + [4877] = 4874, + [4878] = 4874, + [4879] = 4874, + [4880] = 4873, + [4881] = 4873, + [4882] = 4873, + [4883] = 4873, + [4884] = 4884, + [4885] = 4884, + [4886] = 4874, + [4887] = 4873, + [4888] = 4874, + [4889] = 4873, + [4890] = 4874, + [4891] = 4874, + [4892] = 4874, + [4893] = 4873, + [4894] = 4873, + [4895] = 4874, + [4896] = 4874, + [4897] = 592, + [4898] = 4873, + [4899] = 4873, + [4900] = 498, + [4901] = 4874, + [4902] = 571, + [4903] = 498, + [4904] = 4873, + [4905] = 4873, + [4906] = 561, + [4907] = 557, + [4908] = 556, + [4909] = 555, + [4910] = 4873, + [4911] = 4874, + [4912] = 4873, + [4913] = 619, + [4914] = 4873, + [4915] = 4874, + [4916] = 546, + [4917] = 4874, + [4918] = 4874, + [4919] = 546, + [4920] = 622, + [4921] = 4921, + [4922] = 571, + [4923] = 498, + [4924] = 4924, + [4925] = 4924, + [4926] = 622, + [4927] = 4927, + [4928] = 4928, [4929] = 4929, - [4930] = 4911, - [4931] = 4913, - [4932] = 4913, - [4933] = 4933, - [4934] = 4911, - [4935] = 731, - [4936] = 4911, - [4937] = 723, - [4938] = 4911, - [4939] = 4913, - [4940] = 4913, - [4941] = 736, - [4942] = 727, - [4943] = 4911, - [4944] = 4911, - [4945] = 4913, - [4946] = 4913, - [4947] = 4911, - [4948] = 4911, - [4949] = 4949, - [4950] = 4913, - [4951] = 4951, - [4952] = 729, - [4953] = 4913, - [4954] = 4911, - [4955] = 4949, - [4956] = 4913, - [4957] = 732, - [4958] = 4911, - [4959] = 4913, - [4960] = 733, - [4961] = 4911, - [4962] = 4911, - [4963] = 4963, - [4964] = 4913, - [4965] = 4320, - [4966] = 4966, - [4967] = 733, - [4968] = 4913, - [4969] = 4842, - [4970] = 730, - [4971] = 4971, - [4972] = 4972, - [4973] = 4973, - [4974] = 4974, - [4975] = 4975, - [4976] = 4975, - [4977] = 723, - [4978] = 4963, - [4979] = 4979, - [4980] = 731, - [4981] = 730, - [4982] = 734, - [4983] = 735, - [4984] = 4972, - [4985] = 4929, - [4986] = 4912, - [4987] = 736, - [4988] = 729, - [4989] = 4989, - [4990] = 4990, - [4991] = 4991, + [4930] = 4924, + [4931] = 4921, + [4932] = 4921, + [4933] = 4921, + [4934] = 4929, + [4935] = 4935, + [4936] = 4929, + [4937] = 4924, + [4938] = 561, + [4939] = 4939, + [4940] = 557, + [4941] = 4929, + [4942] = 556, + [4943] = 4924, + [4944] = 555, + [4945] = 4945, + [4946] = 4946, + [4947] = 4470, + [4948] = 4946, + [4949] = 4929, + [4950] = 4921, + [4951] = 498, + [4952] = 4952, + [4953] = 4921, + [4954] = 4924, + [4955] = 4921, + [4956] = 4929, + [4957] = 619, + [4958] = 4924, + [4959] = 4921, + [4960] = 4924, + [4961] = 4924, + [4962] = 4929, + [4963] = 4929, + [4964] = 4921, + [4965] = 4921, + [4966] = 4929, + [4967] = 4945, + [4968] = 4924, + [4969] = 4924, + [4970] = 4924, + [4971] = 4921, + [4972] = 4921, + [4973] = 4929, + [4974] = 4929, + [4975] = 546, + [4976] = 555, + [4977] = 556, + [4978] = 4929, + [4979] = 4929, + [4980] = 557, + [4981] = 4924, + [4982] = 561, + [4983] = 571, + [4984] = 4927, + [4985] = 498, + [4986] = 4924, + [4987] = 619, + [4988] = 4924, + [4989] = 4929, + [4990] = 4924, + [4991] = 4921, [4992] = 4992, - [4993] = 4991, - [4994] = 4994, - [4995] = 4990, - [4996] = 4991, - [4997] = 4997, - [4998] = 4992, - [4999] = 4990, - [5000] = 4990, - [5001] = 5001, - [5002] = 4997, + [4993] = 4921, + [4994] = 4474, + [4995] = 4929, + [4996] = 4935, + [4997] = 4921, + [4998] = 4921, + [4999] = 4921, + [5000] = 4929, + [5001] = 4924, + [5002] = 4929, [5003] = 5003, - [5004] = 4997, - [5005] = 5005, - [5006] = 5001, - [5007] = 4997, - [5008] = 4994, - [5009] = 4990, - [5010] = 5010, - [5011] = 5010, - [5012] = 4990, - [5013] = 4997, - [5014] = 4990, - [5015] = 5001, - [5016] = 4992, - [5017] = 4991, - [5018] = 4990, - [5019] = 4991, - [5020] = 4991, - [5021] = 5021, - [5022] = 4992, - [5023] = 4992, - [5024] = 4992, - [5025] = 5001, - [5026] = 4990, - [5027] = 4997, - [5028] = 5010, - [5029] = 5001, - [5030] = 5010, - [5031] = 4991, - [5032] = 4994, - [5033] = 5010, - [5034] = 4994, - [5035] = 4990, - [5036] = 5036, - [5037] = 4997, - [5038] = 753, - [5039] = 5010, - [5040] = 4990, - [5041] = 4990, - [5042] = 5001, - [5043] = 4991, - [5044] = 4990, - [5045] = 4992, - [5046] = 4992, - [5047] = 4990, - [5048] = 4991, - [5049] = 5001, - [5050] = 5010, - [5051] = 4990, + [5004] = 5004, + [5005] = 557, + [5006] = 5006, + [5007] = 619, + [5008] = 546, + [5009] = 5006, + [5010] = 622, + [5011] = 5004, + [5012] = 5012, + [5013] = 5004, + [5014] = 5014, + [5015] = 5012, + [5016] = 5004, + [5017] = 5012, + [5018] = 5018, + [5019] = 571, + [5020] = 561, + [5021] = 498, + [5022] = 5004, + [5023] = 5012, + [5024] = 5004, + [5025] = 5012, + [5026] = 555, + [5027] = 5004, + [5028] = 5012, + [5029] = 546, + [5030] = 5004, + [5031] = 5031, + [5032] = 5012, + [5033] = 5004, + [5034] = 5012, + [5035] = 556, + [5036] = 5004, + [5037] = 5012, + [5038] = 5038, + [5039] = 5039, + [5040] = 5040, + [5041] = 5012, + [5042] = 5004, + [5043] = 5012, + [5044] = 5004, + [5045] = 557, + [5046] = 5004, + [5047] = 5012, + [5048] = 5012, + [5049] = 561, + [5050] = 778, + [5051] = 5004, [5052] = 5052, - [5053] = 4990, - [5054] = 4994, - [5055] = 4994, - [5056] = 4990, - [5057] = 5057, - [5058] = 4990, - [5059] = 4990, - [5060] = 5010, - [5061] = 5001, - [5062] = 4992, - [5063] = 4990, - [5064] = 4991, - [5065] = 4990, - [5066] = 4997, - [5067] = 4990, - [5068] = 4990, - [5069] = 4990, - [5070] = 4997, - [5071] = 4990, - [5072] = 4990, - [5073] = 4994, - [5074] = 4994, - [5075] = 4990, - [5076] = 4997, - [5077] = 4991, - [5078] = 4992, - [5079] = 4990, - [5080] = 5001, - [5081] = 5010, - [5082] = 4990, - [5083] = 4990, - [5084] = 5021, - [5085] = 5005, - [5086] = 4994, - [5087] = 4990, - [5088] = 4990, - [5089] = 4990, - [5090] = 5005, - [5091] = 4994, - [5092] = 4990, - [5093] = 4997, - [5094] = 4994, - [5095] = 4990, - [5096] = 4990, - [5097] = 5010, - [5098] = 5001, - [5099] = 4990, - [5100] = 4992, - [5101] = 5010, - [5102] = 4991, - [5103] = 4992, - [5104] = 4990, - [5105] = 5001, - [5106] = 5010, - [5107] = 4990, - [5108] = 4990, - [5109] = 5010, - [5110] = 4994, - [5111] = 5001, - [5112] = 5112, - [5113] = 4990, - [5114] = 4997, - [5115] = 4990, - [5116] = 4990, - [5117] = 4992, - [5118] = 4991, - [5119] = 4994, - [5120] = 4994, - [5121] = 4990, - [5122] = 4990, - [5123] = 4990, - [5124] = 4997, - [5125] = 4997, - [5126] = 5001, - [5127] = 4990, - [5128] = 5001, - [5129] = 4997, - [5130] = 4990, - [5131] = 4992, - [5132] = 4994, - [5133] = 5010, - [5134] = 4991, - [5135] = 4991, - [5136] = 4990, - [5137] = 4992, - [5138] = 5001, - [5139] = 5010, - [5140] = 5010, - [5141] = 5001, - [5142] = 5142, - [5143] = 4992, - [5144] = 4990, - [5145] = 4990, - [5146] = 4997, - [5147] = 4991, - [5148] = 4992, - [5149] = 5149, - [5150] = 4990, - [5151] = 4991, - [5152] = 5001, - [5153] = 4997, - [5154] = 4994, - [5155] = 4994, - [5156] = 5010, - [5157] = 5157, - [5158] = 5157, - [5159] = 5159, - [5160] = 730, - [5161] = 5157, - [5162] = 730, - [5163] = 5157, - [5164] = 5157, - [5165] = 730, - [5166] = 729, - [5167] = 5157, - [5168] = 5157, - [5169] = 5157, - [5170] = 5157, - [5171] = 730, - [5172] = 730, - [5173] = 730, - [5174] = 5157, - [5175] = 5157, - [5176] = 5157, - [5177] = 5157, - [5178] = 5157, - [5179] = 5157, - [5180] = 730, - [5181] = 5157, - [5182] = 730, - [5183] = 730, - [5184] = 5157, - [5185] = 723, - [5186] = 5157, - [5187] = 5157, - [5188] = 730, - [5189] = 730, - [5190] = 5157, - [5191] = 5157, - [5192] = 5192, - [5193] = 5157, - [5194] = 730, - [5195] = 730, - [5196] = 730, - [5197] = 735, + [5053] = 5053, + [5054] = 5012, + [5055] = 622, + [5056] = 556, + [5057] = 4470, + [5058] = 5058, + [5059] = 5004, + [5060] = 555, + [5061] = 5061, + [5062] = 5012, + [5063] = 5061, + [5064] = 5004, + [5065] = 5012, + [5066] = 5066, + [5067] = 5053, + [5068] = 5068, + [5069] = 5039, + [5070] = 619, + [5071] = 5071, + [5072] = 5072, + [5073] = 5012, + [5074] = 5058, + [5075] = 5014, + [5076] = 498, + [5077] = 571, + [5078] = 5004, + [5079] = 5079, + [5080] = 5080, + [5081] = 5081, + [5082] = 5079, + [5083] = 5083, + [5084] = 5079, + [5085] = 5080, + [5086] = 5086, + [5087] = 5087, + [5088] = 5087, + [5089] = 5081, + [5090] = 5090, + [5091] = 5091, + [5092] = 5081, + [5093] = 5093, + [5094] = 5080, + [5095] = 5087, + [5096] = 5086, + [5097] = 5086, + [5098] = 5080, + [5099] = 5087, + [5100] = 5091, + [5101] = 5081, + [5102] = 5087, + [5103] = 5081, + [5104] = 5083, + [5105] = 5083, + [5106] = 5083, + [5107] = 5080, + [5108] = 5081, + [5109] = 5079, + [5110] = 5090, + [5111] = 5083, + [5112] = 5079, + [5113] = 5086, + [5114] = 5087, + [5115] = 5079, + [5116] = 5080, + [5117] = 5087, + [5118] = 5090, + [5119] = 5087, + [5120] = 5079, + [5121] = 5086, + [5122] = 5083, + [5123] = 5090, + [5124] = 5080, + [5125] = 5087, + [5126] = 5093, + [5127] = 5086, + [5128] = 5090, + [5129] = 5086, + [5130] = 5093, + [5131] = 5081, + [5132] = 5081, + [5133] = 5081, + [5134] = 5079, + [5135] = 5135, + [5136] = 5086, + [5137] = 5087, + [5138] = 5080, + [5139] = 5087, + [5140] = 5087, + [5141] = 5083, + [5142] = 5090, + [5143] = 5093, + [5144] = 5081, + [5145] = 5087, + [5146] = 5087, + [5147] = 5090, + [5148] = 5090, + [5149] = 5079, + [5150] = 5079, + [5151] = 5090, + [5152] = 5087, + [5153] = 5083, + [5154] = 5154, + [5155] = 5083, + [5156] = 5080, + [5157] = 5086, + [5158] = 5087, + [5159] = 5080, + [5160] = 5083, + [5161] = 5086, + [5162] = 5087, + [5163] = 5083, + [5164] = 5087, + [5165] = 5090, + [5166] = 5081, + [5167] = 5079, + [5168] = 5079, + [5169] = 5090, + [5170] = 5079, + [5171] = 5087, + [5172] = 5080, + [5173] = 5173, + [5174] = 5087, + [5175] = 5080, + [5176] = 5086, + [5177] = 5083, + [5178] = 5080, + [5179] = 5087, + [5180] = 5087, + [5181] = 5083, + [5182] = 5087, + [5183] = 5083, + [5184] = 5090, + [5185] = 5087, + [5186] = 5090, + [5187] = 5080, + [5188] = 5090, + [5189] = 5189, + [5190] = 5087, + [5191] = 5087, + [5192] = 5087, + [5193] = 5086, + [5194] = 5081, + [5195] = 5086, + [5196] = 5087, + [5197] = 5086, [5198] = 5198, - [5199] = 730, - [5200] = 5157, - [5201] = 5201, - [5202] = 5157, - [5203] = 730, - [5204] = 736, - [5205] = 5157, - [5206] = 727, - [5207] = 731, - [5208] = 732, - [5209] = 733, - [5210] = 730, - [5211] = 734, - [5212] = 5157, - [5213] = 5213, - [5214] = 5214, - [5215] = 5214, - [5216] = 5214, - [5217] = 5214, - [5218] = 5214, - [5219] = 5219, - [5220] = 5219, - [5221] = 5219, - [5222] = 5214, - [5223] = 5219, - [5224] = 5219, - [5225] = 5219, - [5226] = 5214, - [5227] = 5219, - [5228] = 5219, - [5229] = 5214, - [5230] = 5214, - [5231] = 5231, - [5232] = 5219, - [5233] = 5214, - [5234] = 5219, - [5235] = 5214, - [5236] = 5219, - [5237] = 5219, - [5238] = 5219, - [5239] = 5214, - [5240] = 5219, - [5241] = 5214, - [5242] = 5214, - [5243] = 5219, - [5244] = 5219, - [5245] = 5231, - [5246] = 5214, - [5247] = 5219, - [5248] = 5214, - [5249] = 5214, - [5250] = 5250, - [5251] = 5251, - [5252] = 753, - [5253] = 5253, - [5254] = 5254, - [5255] = 5255, - [5256] = 5254, - [5257] = 5257, - [5258] = 5258, - [5259] = 5259, - [5260] = 5257, - [5261] = 5261, - [5262] = 5259, - [5263] = 5257, + [5199] = 5081, + [5200] = 5083, + [5201] = 5087, + [5202] = 5086, + [5203] = 5087, + [5204] = 5087, + [5205] = 5087, + [5206] = 5090, + [5207] = 5079, + [5208] = 5087, + [5209] = 5081, + [5210] = 5087, + [5211] = 5079, + [5212] = 5093, + [5213] = 5093, + [5214] = 5087, + [5215] = 5087, + [5216] = 5087, + [5217] = 5087, + [5218] = 5080, + [5219] = 5080, + [5220] = 5087, + [5221] = 5087, + [5222] = 5081, + [5223] = 5087, + [5224] = 5087, + [5225] = 5090, + [5226] = 5081, + [5227] = 5081, + [5228] = 5083, + [5229] = 5087, + [5230] = 5087, + [5231] = 5087, + [5232] = 5087, + [5233] = 5086, + [5234] = 5087, + [5235] = 5079, + [5236] = 5087, + [5237] = 5079, + [5238] = 5238, + [5239] = 5087, + [5240] = 5086, + [5241] = 5087, + [5242] = 5083, + [5243] = 5243, + [5244] = 5087, + [5245] = 5080, + [5246] = 5087, + [5247] = 5090, + [5248] = 546, + [5249] = 5249, + [5250] = 5249, + [5251] = 5249, + [5252] = 5252, + [5253] = 619, + [5254] = 5249, + [5255] = 5249, + [5256] = 5249, + [5257] = 622, + [5258] = 5249, + [5259] = 5249, + [5260] = 5249, + [5261] = 556, + [5262] = 5249, + [5263] = 5249, [5264] = 5264, - [5265] = 5265, - [5266] = 5259, - [5267] = 768, - [5268] = 5265, - [5269] = 769, - [5270] = 5265, - [5271] = 776, - [5272] = 770, - [5273] = 5259, - [5274] = 5265, - [5275] = 771, - [5276] = 5259, - [5277] = 5265, - [5278] = 772, - [5279] = 5279, - [5280] = 776, - [5281] = 5281, - [5282] = 5259, - [5283] = 770, - [5284] = 5265, - [5285] = 5257, + [5265] = 5249, + [5266] = 5249, + [5267] = 555, + [5268] = 5249, + [5269] = 561, + [5270] = 5249, + [5271] = 557, + [5272] = 5249, + [5273] = 571, + [5274] = 498, + [5275] = 5249, + [5276] = 5249, + [5277] = 5277, + [5278] = 5249, + [5279] = 5249, + [5280] = 5249, + [5281] = 5249, + [5282] = 5249, + [5283] = 5249, + [5284] = 5249, + [5285] = 5249, [5286] = 5286, - [5287] = 5259, - [5288] = 5257, - [5289] = 5265, - [5290] = 5265, - [5291] = 5257, - [5292] = 5265, - [5293] = 5259, - [5294] = 5281, - [5295] = 5259, - [5296] = 5259, - [5297] = 5257, - [5298] = 5265, - [5299] = 5257, - [5300] = 5259, - [5301] = 5301, - [5302] = 753, - [5303] = 5257, - [5304] = 5279, - [5305] = 5265, - [5306] = 5259, - [5307] = 5261, - [5308] = 5308, - [5309] = 5257, - [5310] = 5310, - [5311] = 758, - [5312] = 755, - [5313] = 5313, - [5314] = 771, - [5315] = 752, - [5316] = 5264, - [5317] = 759, - [5318] = 5259, - [5319] = 752, - [5320] = 5259, - [5321] = 5265, - [5322] = 5301, - [5323] = 772, - [5324] = 758, - [5325] = 5265, - [5326] = 5259, - [5327] = 5257, - [5328] = 769, - [5329] = 5257, - [5330] = 5257, - [5331] = 5259, - [5332] = 5265, - [5333] = 5308, - [5334] = 5257, - [5335] = 5257, - [5336] = 5265, - [5337] = 5257, - [5338] = 5265, - [5339] = 5257, - [5340] = 5259, - [5341] = 5265, - [5342] = 5342, - [5343] = 5342, + [5287] = 5287, + [5288] = 5288, + [5289] = 5289, + [5290] = 5290, + [5291] = 5287, + [5292] = 5287, + [5293] = 5288, + [5294] = 5288, + [5295] = 5295, + [5296] = 5296, + [5297] = 5297, + [5298] = 5288, + [5299] = 5288, + [5300] = 5287, + [5301] = 5288, + [5302] = 5302, + [5303] = 5287, + [5304] = 5288, + [5305] = 5305, + [5306] = 5287, + [5307] = 5307, + [5308] = 5288, + [5309] = 5309, + [5310] = 5287, + [5311] = 5311, + [5312] = 5287, + [5313] = 5288, + [5314] = 5287, + [5315] = 5315, + [5316] = 5316, + [5317] = 5288, + [5318] = 5288, + [5319] = 5287, + [5320] = 5287, + [5321] = 5287, + [5322] = 5288, + [5323] = 5287, + [5324] = 5324, + [5325] = 5287, + [5326] = 5326, + [5327] = 5287, + [5328] = 5324, + [5329] = 5329, + [5330] = 5287, + [5331] = 5288, + [5332] = 5288, + [5333] = 5288, + [5334] = 5334, + [5335] = 5288, + [5336] = 5336, + [5337] = 5287, + [5338] = 5288, + [5339] = 535, + [5340] = 778, + [5341] = 5341, + [5342] = 475, + [5343] = 492, [5344] = 5344, - [5345] = 5342, - [5346] = 5310, - [5347] = 5347, - [5348] = 5342, - [5349] = 5342, - [5350] = 752, - [5351] = 5342, - [5352] = 5342, - [5353] = 5342, - [5354] = 5342, - [5355] = 5342, - [5356] = 5342, - [5357] = 5342, - [5358] = 5342, - [5359] = 5347, - [5360] = 5360, - [5361] = 5342, - [5362] = 5342, - [5363] = 5342, - [5364] = 5364, - [5365] = 5342, - [5366] = 5342, - [5367] = 753, - [5368] = 5342, - [5369] = 752, - [5370] = 5342, - [5371] = 5342, - [5372] = 753, - [5373] = 5342, - [5374] = 5342, - [5375] = 5342, - [5376] = 5376, - [5377] = 5377, - [5378] = 770, - [5379] = 776, - [5380] = 5286, - [5381] = 771, - [5382] = 770, - [5383] = 5376, - [5384] = 5376, - [5385] = 5376, - [5386] = 5376, - [5387] = 769, - [5388] = 5388, - [5389] = 755, - [5390] = 755, - [5391] = 5391, - [5392] = 5392, - [5393] = 5308, - [5394] = 5376, - [5395] = 5376, - [5396] = 5396, - [5397] = 5376, - [5398] = 5376, - [5399] = 758, - [5400] = 5400, - [5401] = 5376, - [5402] = 772, - [5403] = 768, - [5404] = 771, - [5405] = 5405, - [5406] = 758, - [5407] = 5377, - [5408] = 759, - [5409] = 772, - [5410] = 769, - [5411] = 5376, - [5412] = 5376, - [5413] = 5376, - [5414] = 5414, - [5415] = 759, - [5416] = 5388, - [5417] = 776, - [5418] = 5418, - [5419] = 5376, - [5420] = 5420, - [5421] = 5376, - [5422] = 5418, - [5423] = 768, - [5424] = 5376, - [5425] = 5425, - [5426] = 5426, - [5427] = 5425, - [5428] = 5376, - [5429] = 5429, + [5345] = 5344, + [5346] = 565, + [5347] = 615, + [5348] = 5348, + [5349] = 5349, + [5350] = 479, + [5351] = 5351, + [5352] = 524, + [5353] = 545, + [5354] = 511, + [5355] = 5355, + [5356] = 5356, + [5357] = 5357, + [5358] = 5358, + [5359] = 5357, + [5360] = 5358, + [5361] = 5355, + [5362] = 5355, + [5363] = 5357, + [5364] = 5355, + [5365] = 5365, + [5366] = 592, + [5367] = 5358, + [5368] = 5357, + [5369] = 5358, + [5370] = 475, + [5371] = 5357, + [5372] = 5357, + [5373] = 5358, + [5374] = 5374, + [5375] = 5355, + [5376] = 5358, + [5377] = 5358, + [5378] = 5356, + [5379] = 5358, + [5380] = 5357, + [5381] = 5357, + [5382] = 5355, + [5383] = 5383, + [5384] = 5358, + [5385] = 5385, + [5386] = 5358, + [5387] = 5355, + [5388] = 5383, + [5389] = 778, + [5390] = 5365, + [5391] = 5358, + [5392] = 5357, + [5393] = 5374, + [5394] = 5358, + [5395] = 5395, + [5396] = 5355, + [5397] = 5355, + [5398] = 5355, + [5399] = 592, + [5400] = 5355, + [5401] = 5358, + [5402] = 5358, + [5403] = 5357, + [5404] = 615, + [5405] = 5358, + [5406] = 5355, + [5407] = 5407, + [5408] = 5357, + [5409] = 5409, + [5410] = 5409, + [5411] = 5411, + [5412] = 5355, + [5413] = 5413, + [5414] = 565, + [5415] = 5357, + [5416] = 5358, + [5417] = 5357, + [5418] = 5385, + [5419] = 5419, + [5420] = 5355, + [5421] = 5357, + [5422] = 524, + [5423] = 5413, + [5424] = 5355, + [5425] = 535, + [5426] = 5357, + [5427] = 545, + [5428] = 5358, + [5429] = 5357, [5430] = 5430, - [5431] = 759, - [5432] = 5432, - [5433] = 768, - [5434] = 758, - [5435] = 769, - [5436] = 5436, - [5437] = 5437, - [5438] = 5430, - [5439] = 769, - [5440] = 5440, - [5441] = 5441, - [5442] = 5442, - [5443] = 5443, - [5444] = 5444, - [5445] = 5445, - [5446] = 5446, - [5447] = 5445, - [5448] = 5446, - [5449] = 5442, - [5450] = 5446, - [5451] = 5442, - [5452] = 5444, - [5453] = 5444, - [5454] = 5440, - [5455] = 5443, - [5456] = 5456, - [5457] = 5456, - [5458] = 5430, - [5459] = 5443, - [5460] = 5437, - [5461] = 5461, - [5462] = 5436, - [5463] = 5440, - [5464] = 5432, - [5465] = 5441, - [5466] = 5442, - [5467] = 5430, - [5468] = 755, - [5469] = 5437, - [5470] = 5440, - [5471] = 5441, - [5472] = 770, - [5473] = 5445, - [5474] = 771, - [5475] = 5475, - [5476] = 772, - [5477] = 776, - [5478] = 5475, - [5479] = 5432, - [5480] = 5440, - [5481] = 5441, - [5482] = 5456, - [5483] = 5446, - [5484] = 5436, - [5485] = 759, - [5486] = 5456, - [5487] = 5432, - [5488] = 5442, - [5489] = 5441, - [5490] = 5430, - [5491] = 770, - [5492] = 5441, - [5493] = 5440, - [5494] = 5432, - [5495] = 5432, - [5496] = 5445, - [5497] = 5436, - [5498] = 5440, - [5499] = 5446, - [5500] = 5440, - [5501] = 5437, - [5502] = 5502, - [5503] = 5436, - [5504] = 5430, - [5505] = 5444, - [5506] = 5437, - [5507] = 5443, - [5508] = 5444, - [5509] = 5443, - [5510] = 5441, - [5511] = 5430, - [5512] = 5446, - [5513] = 5430, - [5514] = 5445, - [5515] = 5437, - [5516] = 5440, - [5517] = 5436, - [5518] = 5436, + [5431] = 5355, + [5432] = 5355, + [5433] = 5357, + [5434] = 5434, + [5435] = 5434, + [5436] = 5434, + [5437] = 5434, + [5438] = 5438, + [5439] = 5434, + [5440] = 592, + [5441] = 5434, + [5442] = 5434, + [5443] = 5434, + [5444] = 5434, + [5445] = 778, + [5446] = 5434, + [5447] = 5434, + [5448] = 5448, + [5449] = 5434, + [5450] = 5434, + [5451] = 5434, + [5452] = 778, + [5453] = 592, + [5454] = 5434, + [5455] = 5434, + [5456] = 5434, + [5457] = 5434, + [5458] = 5434, + [5459] = 5434, + [5460] = 5434, + [5461] = 5434, + [5462] = 5434, + [5463] = 5434, + [5464] = 5411, + [5465] = 5438, + [5466] = 565, + [5467] = 5467, + [5468] = 5468, + [5469] = 5469, + [5470] = 5383, + [5471] = 475, + [5472] = 545, + [5473] = 492, + [5474] = 615, + [5475] = 479, + [5476] = 5467, + [5477] = 5477, + [5478] = 5467, + [5479] = 545, + [5480] = 5467, + [5481] = 5481, + [5482] = 5467, + [5483] = 5483, + [5484] = 511, + [5485] = 5485, + [5486] = 5467, + [5487] = 535, + [5488] = 511, + [5489] = 5489, + [5490] = 5483, + [5491] = 5491, + [5492] = 5492, + [5493] = 5467, + [5494] = 524, + [5495] = 492, + [5496] = 5467, + [5497] = 615, + [5498] = 475, + [5499] = 5467, + [5500] = 5489, + [5501] = 524, + [5502] = 5467, + [5503] = 535, + [5504] = 5467, + [5505] = 5505, + [5506] = 5467, + [5507] = 5507, + [5508] = 5508, + [5509] = 5492, + [5510] = 5467, + [5511] = 5467, + [5512] = 479, + [5513] = 565, + [5514] = 5467, + [5515] = 5467, + [5516] = 5467, + [5517] = 5481, + [5518] = 5518, [5519] = 5519, - [5520] = 772, - [5521] = 5442, - [5522] = 5432, - [5523] = 5441, - [5524] = 5456, - [5525] = 5437, - [5526] = 5441, - [5527] = 5443, - [5528] = 5430, - [5529] = 5444, - [5530] = 755, - [5531] = 5441, - [5532] = 5441, - [5533] = 5443, - [5534] = 5440, - [5535] = 5444, - [5536] = 5446, - [5537] = 5445, - [5538] = 758, - [5539] = 5441, - [5540] = 5442, - [5541] = 5456, - [5542] = 5456, - [5543] = 5442, - [5544] = 5446, - [5545] = 5445, - [5546] = 5446, - [5547] = 5444, - [5548] = 5441, - [5549] = 5443, - [5550] = 5550, - [5551] = 5445, - [5552] = 5440, - [5553] = 5430, - [5554] = 5437, - [5555] = 5456, - [5556] = 5436, - [5557] = 5432, - [5558] = 5436, - [5559] = 5442, - [5560] = 5456, - [5561] = 5561, - [5562] = 5442, - [5563] = 5442, - [5564] = 5441, - [5565] = 5565, - [5566] = 5566, - [5567] = 5456, - [5568] = 5441, - [5569] = 5432, - [5570] = 5440, - [5571] = 768, - [5572] = 5445, - [5573] = 5436, - [5574] = 5574, - [5575] = 5437, - [5576] = 5445, - [5577] = 5430, - [5578] = 5445, - [5579] = 5443, - [5580] = 5444, - [5581] = 776, - [5582] = 5444, - [5583] = 5446, - [5584] = 5446, - [5585] = 5445, - [5586] = 5586, - [5587] = 5444, - [5588] = 5440, - [5589] = 5446, - [5590] = 5432, - [5591] = 5591, + [5520] = 5520, + [5521] = 615, + [5522] = 5522, + [5523] = 5523, + [5524] = 5524, + [5525] = 535, + [5526] = 5526, + [5527] = 5527, + [5528] = 5528, + [5529] = 5529, + [5530] = 5527, + [5531] = 5526, + [5532] = 5526, + [5533] = 5533, + [5534] = 5527, + [5535] = 524, + [5536] = 5520, + [5537] = 5537, + [5538] = 5529, + [5539] = 5539, + [5540] = 5526, + [5541] = 5518, + [5542] = 5526, + [5543] = 511, + [5544] = 5519, + [5545] = 5522, + [5546] = 5533, + [5547] = 545, + [5548] = 5548, + [5549] = 5519, + [5550] = 5524, + [5551] = 5528, + [5552] = 5529, + [5553] = 5553, + [5554] = 5518, + [5555] = 5523, + [5556] = 5529, + [5557] = 5528, + [5558] = 5524, + [5559] = 5548, + [5560] = 5560, + [5561] = 5524, + [5562] = 5520, + [5563] = 5522, + [5564] = 5564, + [5565] = 5519, + [5566] = 475, + [5567] = 565, + [5568] = 479, + [5569] = 5519, + [5570] = 5533, + [5571] = 5571, + [5572] = 5520, + [5573] = 5548, + [5574] = 5526, + [5575] = 5575, + [5576] = 5528, + [5577] = 5533, + [5578] = 5578, + [5579] = 5548, + [5580] = 5524, + [5581] = 5522, + [5582] = 5526, + [5583] = 5523, + [5584] = 5584, + [5585] = 5527, + [5586] = 5520, + [5587] = 5527, + [5588] = 5529, + [5589] = 5528, + [5590] = 5529, + [5591] = 5548, [5592] = 5592, - [5593] = 5593, - [5594] = 5442, - [5595] = 5444, - [5596] = 5456, - [5597] = 5443, - [5598] = 5444, - [5599] = 5456, - [5600] = 5442, - [5601] = 5443, - [5602] = 5445, - [5603] = 5446, - [5604] = 5430, - [5605] = 5605, - [5606] = 5440, - [5607] = 5444, - [5608] = 5437, - [5609] = 5444, - [5610] = 5443, - [5611] = 5430, - [5612] = 5430, - [5613] = 5437, - [5614] = 5437, - [5615] = 5444, - [5616] = 5432, - [5617] = 5436, - [5618] = 5440, - [5619] = 5456, - [5620] = 5436, - [5621] = 5621, - [5622] = 5442, - [5623] = 5441, - [5624] = 5440, - [5625] = 5444, - [5626] = 5432, - [5627] = 5436, - [5628] = 5437, - [5629] = 5629, - [5630] = 771, - [5631] = 5631, - [5632] = 5456, - [5633] = 5631, - [5634] = 5432, - [5635] = 5631, - [5636] = 5432, - [5637] = 5631, + [5593] = 5528, + [5594] = 5529, + [5595] = 5533, + [5596] = 5524, + [5597] = 5533, + [5598] = 5528, + [5599] = 5522, + [5600] = 5522, + [5601] = 5601, + [5602] = 5522, + [5603] = 5520, + [5604] = 5527, + [5605] = 5518, + [5606] = 5529, + [5607] = 5524, + [5608] = 5548, + [5609] = 5520, + [5610] = 615, + [5611] = 5548, + [5612] = 5553, + [5613] = 5533, + [5614] = 5524, + [5615] = 5528, + [5616] = 5528, + [5617] = 5522, + [5618] = 5553, + [5619] = 5619, + [5620] = 5529, + [5621] = 5553, + [5622] = 5520, + [5623] = 565, + [5624] = 492, + [5625] = 5533, + [5626] = 5528, + [5627] = 5523, + [5628] = 5553, + [5629] = 545, + [5630] = 5518, + [5631] = 535, + [5632] = 524, + [5633] = 5519, + [5634] = 5520, + [5635] = 5522, + [5636] = 5553, + [5637] = 5637, [5638] = 5638, - [5639] = 5631, - [5640] = 5436, - [5641] = 5631, - [5642] = 5642, - [5643] = 5631, - [5644] = 5565, - [5645] = 5631, - [5646] = 5436, - [5647] = 5631, - [5648] = 5631, - [5649] = 5444, - [5650] = 5629, - [5651] = 5631, - [5652] = 5437, - [5653] = 5445, - [5654] = 5631, - [5655] = 5440, - [5656] = 5631, - [5657] = 5657, - [5658] = 5631, - [5659] = 5445, - [5660] = 5432, - [5661] = 5631, - [5662] = 5436, - [5663] = 5436, - [5664] = 5437, - [5665] = 5437, - [5666] = 5430, - [5667] = 5667, - [5668] = 5443, - [5669] = 5444, - [5670] = 5443, - [5671] = 5430, - [5672] = 5631, - [5673] = 5446, - [5674] = 5445, - [5675] = 5444, - [5676] = 5676, - [5677] = 5631, - [5678] = 5437, - [5679] = 5430, - [5680] = 5441, - [5681] = 5442, - [5682] = 5456, - [5683] = 5683, - [5684] = 5456, - [5685] = 5442, - [5686] = 5446, - [5687] = 5446, - [5688] = 5445, - [5689] = 5456, - [5690] = 5446, - [5691] = 5444, - [5692] = 5692, - [5693] = 5693, - [5694] = 5443, - [5695] = 5444, - [5696] = 5444, - [5697] = 5444, - [5698] = 5442, - [5699] = 5432, - [5700] = 5443, - [5701] = 5432, - [5702] = 5443, - [5703] = 5703, - [5704] = 5704, - [5705] = 5705, - [5706] = 5706, - [5707] = 5703, - [5708] = 5704, - [5709] = 5703, - [5710] = 5710, - [5711] = 5704, - [5712] = 5710, - [5713] = 5710, - [5714] = 5714, - [5715] = 5703, - [5716] = 5710, - [5717] = 5703, - [5718] = 5710, - [5719] = 5719, - [5720] = 5710, - [5721] = 5710, - [5722] = 5705, - [5723] = 5723, - [5724] = 5710, - [5725] = 5710, - [5726] = 5723, - [5727] = 5710, - [5728] = 5710, - [5729] = 5705, - [5730] = 5710, - [5731] = 5710, - [5732] = 5710, - [5733] = 5704, - [5734] = 5710, - [5735] = 5723, - [5736] = 5705, - [5737] = 5710, - [5738] = 5723, - [5739] = 5705, - [5740] = 5723, - [5741] = 5705, - [5742] = 5742, - [5743] = 5743, + [5639] = 5518, + [5640] = 5553, + [5641] = 5548, + [5642] = 5524, + [5643] = 5527, + [5644] = 492, + [5645] = 5526, + [5646] = 5518, + [5647] = 5553, + [5648] = 5519, + [5649] = 5519, + [5650] = 479, + [5651] = 5553, + [5652] = 5652, + [5653] = 5522, + [5654] = 5553, + [5655] = 5548, + [5656] = 5533, + [5657] = 5528, + [5658] = 5529, + [5659] = 5529, + [5660] = 511, + [5661] = 5518, + [5662] = 5520, + [5663] = 5527, + [5664] = 5524, + [5665] = 5553, + [5666] = 5524, + [5667] = 5548, + [5668] = 5548, + [5669] = 5528, + [5670] = 5524, + [5671] = 5522, + [5672] = 5553, + [5673] = 5520, + [5674] = 5533, + [5675] = 5533, + [5676] = 5522, + [5677] = 5533, + [5678] = 5523, + [5679] = 5553, + [5680] = 5680, + [5681] = 5523, + [5682] = 5553, + [5683] = 5519, + [5684] = 5553, + [5685] = 5685, + [5686] = 5529, + [5687] = 5519, + [5688] = 5688, + [5689] = 5522, + [5690] = 5553, + [5691] = 5528, + [5692] = 5519, + [5693] = 5523, + [5694] = 5523, + [5695] = 5519, + [5696] = 5526, + [5697] = 5518, + [5698] = 5533, + [5699] = 5533, + [5700] = 5518, + [5701] = 5518, + [5702] = 5526, + [5703] = 5523, + [5704] = 5519, + [5705] = 5688, + [5706] = 5527, + [5707] = 5522, + [5708] = 5523, + [5709] = 475, + [5710] = 5528, + [5711] = 5526, + [5712] = 5712, + [5713] = 5523, + [5714] = 5529, + [5715] = 5548, + [5716] = 5522, + [5717] = 5717, + [5718] = 5518, + [5719] = 5526, + [5720] = 5527, + [5721] = 5527, + [5722] = 5601, + [5723] = 5527, + [5724] = 5520, + [5725] = 5522, + [5726] = 5533, + [5727] = 5526, + [5728] = 5523, + [5729] = 5520, + [5730] = 5533, + [5731] = 5518, + [5732] = 5518, + [5733] = 5523, + [5734] = 5519, + [5735] = 5523, + [5736] = 5528, + [5737] = 5526, + [5738] = 5526, + [5739] = 5529, + [5740] = 5527, + [5741] = 5520, + [5742] = 5527, + [5743] = 5522, [5744] = 5744, - [5745] = 5744, - [5746] = 5723, - [5747] = 5710, - [5748] = 5703, - [5749] = 5703, - [5750] = 5704, - [5751] = 5703, - [5752] = 5752, - [5753] = 5704, + [5745] = 5524, + [5746] = 5548, + [5747] = 5524, + [5748] = 5526, + [5749] = 5524, + [5750] = 5518, + [5751] = 5680, + [5752] = 5548, + [5753] = 5519, [5754] = 5754, - [5755] = 5755, - [5756] = 5703, - [5757] = 5723, - [5758] = 5758, - [5759] = 5704, - [5760] = 5723, - [5761] = 5705, - [5762] = 5704, - [5763] = 5705, - [5764] = 5764, - [5765] = 5705, - [5766] = 5723, - [5767] = 5767, - [5768] = 5704, - [5769] = 5703, - [5770] = 5704, - [5771] = 5704, - [5772] = 5705, - [5773] = 5706, - [5774] = 5703, - [5775] = 5705, - [5776] = 5703, - [5777] = 5723, - [5778] = 5704, - [5779] = 5703, - [5780] = 5755, - [5781] = 5703, - [5782] = 5714, - [5783] = 5743, - [5784] = 5704, - [5785] = 5723, - [5786] = 5705, - [5787] = 5723, - [5788] = 5705, - [5789] = 5723, - [5790] = 5705, - [5791] = 5705, - [5792] = 5723, - [5793] = 5705, - [5794] = 5723, - [5795] = 5705, - [5796] = 5723, - [5797] = 5743, - [5798] = 5743, - [5799] = 5703, - [5800] = 5743, - [5801] = 5743, - [5802] = 5743, - [5803] = 5803, - [5804] = 5743, - [5805] = 5723, - [5806] = 5743, - [5807] = 5743, - [5808] = 5743, - [5809] = 5703, - [5810] = 5743, - [5811] = 5743, - [5812] = 5743, - [5813] = 5743, - [5814] = 5704, - [5815] = 5704, - [5816] = 5704, - [5817] = 5743, - [5818] = 5743, - [5819] = 5704, - [5820] = 5703, - [5821] = 5821, - [5822] = 5822, + [5755] = 5529, + [5756] = 5528, + [5757] = 5571, + [5758] = 5527, + [5759] = 5523, + [5760] = 5529, + [5761] = 5548, + [5762] = 5519, + [5763] = 5518, + [5764] = 5526, + [5765] = 5523, + [5766] = 5527, + [5767] = 5523, + [5768] = 5553, + [5769] = 5529, + [5770] = 5770, + [5771] = 5520, + [5772] = 5529, + [5773] = 5773, + [5774] = 5774, + [5775] = 5518, + [5776] = 5776, + [5777] = 5524, + [5778] = 5529, + [5779] = 5528, + [5780] = 5529, + [5781] = 5520, + [5782] = 5529, + [5783] = 5548, + [5784] = 5527, + [5785] = 5533, + [5786] = 5529, + [5787] = 5519, + [5788] = 5788, + [5789] = 5520, + [5790] = 5529, + [5791] = 5524, + [5792] = 5529, + [5793] = 5548, + [5794] = 5794, + [5795] = 5795, + [5796] = 5796, + [5797] = 5796, + [5798] = 5798, + [5799] = 5796, + [5800] = 5795, + [5801] = 5796, + [5802] = 5798, + [5803] = 5798, + [5804] = 5804, + [5805] = 5805, + [5806] = 5795, + [5807] = 5796, + [5808] = 5795, + [5809] = 5798, + [5810] = 5798, + [5811] = 5795, + [5812] = 5794, + [5813] = 5805, + [5814] = 5805, + [5815] = 5815, + [5816] = 5805, + [5817] = 5817, + [5818] = 5798, + [5819] = 5796, + [5820] = 5820, + [5821] = 5796, + [5822] = 5805, [5823] = 5823, - [5824] = 5824, - [5825] = 5825, + [5824] = 5805, + [5825] = 5805, [5826] = 5826, - [5827] = 5827, - [5828] = 5828, - [5829] = 5829, - [5830] = 5830, - [5831] = 5822, - [5832] = 5832, - [5833] = 5829, - [5834] = 5834, - [5835] = 5835, - [5836] = 5836, - [5837] = 5837, - [5838] = 5838, + [5827] = 5796, + [5828] = 5795, + [5829] = 5798, + [5830] = 5796, + [5831] = 5798, + [5832] = 5798, + [5833] = 5805, + [5834] = 5794, + [5835] = 5794, + [5836] = 5796, + [5837] = 5794, + [5838] = 5805, [5839] = 5839, - [5840] = 5840, - [5841] = 5824, - [5842] = 5840, - [5843] = 5826, - [5844] = 5822, - [5845] = 5845, - [5846] = 5823, - [5847] = 5847, - [5848] = 5629, - [5849] = 5824, - [5850] = 5850, - [5851] = 5851, - [5852] = 5852, - [5853] = 5827, - [5854] = 5825, - [5855] = 5828, - [5856] = 5847, - [5857] = 5832, - [5858] = 5858, - [5859] = 5835, - [5860] = 5852, - [5861] = 5847, - [5862] = 5825, - [5863] = 5836, - [5864] = 5839, - [5865] = 3617, - [5866] = 5852, - [5867] = 5850, - [5868] = 5845, - [5869] = 5851, - [5870] = 5850, - [5871] = 5850, - [5872] = 5822, - [5873] = 5851, - [5874] = 5839, - [5875] = 5836, - [5876] = 5835, - [5877] = 5840, - [5878] = 5829, - [5879] = 5828, - [5880] = 5832, - [5881] = 5881, - [5882] = 5828, - [5883] = 5823, - [5884] = 5827, - [5885] = 5826, - [5886] = 5824, - [5887] = 5826, - [5888] = 5847, - [5889] = 5847, - [5890] = 5851, - [5891] = 5824, - [5892] = 5823, - [5893] = 5826, - [5894] = 5850, - [5895] = 5895, - [5896] = 5839, - [5897] = 5827, - [5898] = 5898, - [5899] = 5828, - [5900] = 5836, - [5901] = 5901, - [5902] = 5851, - [5903] = 5827, - [5904] = 5904, - [5905] = 5905, - [5906] = 5850, - [5907] = 5832, - [5908] = 5908, - [5909] = 5858, - [5910] = 5835, - [5911] = 5911, - [5912] = 5836, - [5913] = 5835, - [5914] = 5839, + [5840] = 5794, + [5841] = 5798, + [5842] = 5794, + [5843] = 5796, + [5844] = 5795, + [5845] = 5794, + [5846] = 5798, + [5847] = 5815, + [5848] = 5848, + [5849] = 5794, + [5850] = 5805, + [5851] = 5794, + [5852] = 5796, + [5853] = 5794, + [5854] = 5798, + [5855] = 5839, + [5856] = 5804, + [5857] = 5794, + [5858] = 5805, + [5859] = 5859, + [5860] = 5795, + [5861] = 5794, + [5862] = 5798, + [5863] = 5863, + [5864] = 5796, + [5865] = 5796, + [5866] = 5805, + [5867] = 5794, + [5868] = 5794, + [5869] = 5795, + [5870] = 5794, + [5871] = 5794, + [5872] = 5795, + [5873] = 5795, + [5874] = 5796, + [5875] = 5817, + [5876] = 5798, + [5877] = 5815, + [5878] = 5878, + [5879] = 5815, + [5880] = 5815, + [5881] = 5815, + [5882] = 5798, + [5883] = 5795, + [5884] = 5815, + [5885] = 5795, + [5886] = 5795, + [5887] = 5805, + [5888] = 5815, + [5889] = 5815, + [5890] = 5815, + [5891] = 5891, + [5892] = 5795, + [5893] = 5805, + [5894] = 5805, + [5895] = 5815, + [5896] = 5815, + [5897] = 5795, + [5898] = 5805, + [5899] = 5815, + [5900] = 5815, + [5901] = 5795, + [5902] = 5902, + [5903] = 5798, + [5904] = 5815, + [5905] = 5798, + [5906] = 5815, + [5907] = 5796, + [5908] = 5796, + [5909] = 5815, + [5910] = 5826, + [5911] = 5805, + [5912] = 5912, + [5913] = 5913, + [5914] = 5914, [5915] = 5915, [5916] = 5916, - [5917] = 5825, - [5918] = 5825, - [5919] = 5829, - [5920] = 5832, - [5921] = 5828, - [5922] = 5830, - [5923] = 5822, - [5924] = 5822, - [5925] = 5840, - [5926] = 5828, - [5927] = 5826, - [5928] = 5822, - [5929] = 5850, - [5930] = 5851, - [5931] = 5832, + [5917] = 5917, + [5918] = 5918, + [5919] = 5919, + [5920] = 5920, + [5921] = 5921, + [5922] = 5912, + [5923] = 5923, + [5924] = 5915, + [5925] = 5925, + [5926] = 5926, + [5927] = 5927, + [5928] = 5928, + [5929] = 5928, + [5930] = 5930, + [5931] = 5931, [5932] = 5932, - [5933] = 5824, - [5934] = 5858, - [5935] = 5935, + [5933] = 5933, + [5934] = 5934, + [5935] = 5934, [5936] = 5936, - [5937] = 5847, - [5938] = 5845, - [5939] = 5939, - [5940] = 5829, - [5941] = 5828, - [5942] = 5942, - [5943] = 5845, - [5944] = 5828, - [5945] = 5936, - [5946] = 5825, - [5947] = 5858, - [5948] = 5852, - [5949] = 5852, - [5950] = 5829, - [5951] = 5845, - [5952] = 5835, - [5953] = 5858, - [5954] = 5829, - [5955] = 5828, + [5937] = 5937, + [5938] = 5934, + [5939] = 5916, + [5940] = 5940, + [5941] = 5941, + [5942] = 5920, + [5943] = 5943, + [5944] = 5925, + [5945] = 5931, + [5946] = 5946, + [5947] = 5921, + [5948] = 5925, + [5949] = 5925, + [5950] = 5937, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5916, + [5955] = 5955, [5956] = 5956, - [5957] = 5836, - [5958] = 5858, - [5959] = 5835, - [5960] = 5829, - [5961] = 5828, - [5962] = 5839, - [5963] = 5823, - [5964] = 5835, - [5965] = 5858, - [5966] = 5828, - [5967] = 5845, - [5968] = 5828, - [5969] = 5828, - [5970] = 5835, - [5971] = 5825, - [5972] = 5829, - [5973] = 5840, - [5974] = 5835, - [5975] = 5975, - [5976] = 5858, - [5977] = 5835, - [5978] = 5978, - [5979] = 5828, - [5980] = 5830, - [5981] = 5829, - [5982] = 5858, - [5983] = 5847, - [5984] = 5829, - [5985] = 5828, - [5986] = 5840, - [5987] = 5828, - [5988] = 5828, - [5989] = 5851, - [5990] = 5858, - [5991] = 5840, - [5992] = 5829, - [5993] = 5850, - [5994] = 5828, - [5995] = 5828, - [5996] = 5858, - [5997] = 5822, - [5998] = 5829, - [5999] = 5828, - [6000] = 5823, - [6001] = 5839, - [6002] = 5858, - [6003] = 5828, - [6004] = 5824, - [6005] = 5836, + [5957] = 5946, + [5958] = 5958, + [5959] = 5941, + [5960] = 5960, + [5961] = 5931, + [5962] = 5962, + [5963] = 5920, + [5964] = 5928, + [5965] = 5946, + [5966] = 5941, + [5967] = 5925, + [5968] = 5925, + [5969] = 5969, + [5970] = 5970, + [5971] = 5971, + [5972] = 5946, + [5973] = 5937, + [5974] = 5956, + [5975] = 5921, + [5976] = 5955, + [5977] = 5956, + [5978] = 5951, + [5979] = 5960, + [5980] = 5920, + [5981] = 5925, + [5982] = 5925, + [5983] = 5960, + [5984] = 3725, + [5985] = 5913, + [5986] = 5946, + [5987] = 5941, + [5988] = 5970, + [5989] = 5932, + [5990] = 5951, + [5991] = 5933, + [5992] = 5915, + [5993] = 5970, + [5994] = 3736, + [5995] = 5995, + [5996] = 5918, + [5997] = 5946, + [5998] = 5940, + [5999] = 5999, + [6000] = 5915, + [6001] = 5921, + [6002] = 6002, + [6003] = 5946, + [6004] = 6004, + [6005] = 5916, [6006] = 6006, - [6007] = 6007, - [6008] = 5835, - [6009] = 5840, - [6010] = 5835, - [6011] = 5829, - [6012] = 5832, - [6013] = 5823, - [6014] = 5936, - [6015] = 5827, - [6016] = 5826, - [6017] = 5824, - [6018] = 5824, - [6019] = 5826, - [6020] = 5826, - [6021] = 5827, - [6022] = 5828, + [6007] = 5920, + [6008] = 5913, + [6009] = 5931, + [6010] = 6010, + [6011] = 6011, + [6012] = 6012, + [6013] = 6013, + [6014] = 5999, + [6015] = 6015, + [6016] = 5946, + [6017] = 6017, + [6018] = 5933, + [6019] = 5970, + [6020] = 5933, + [6021] = 6021, + [6022] = 6022, [6023] = 6023, - [6024] = 6024, - [6025] = 6025, - [6026] = 6025, - [6027] = 6027, - [6028] = 6028, - [6029] = 5823, - [6030] = 6025, - [6031] = 6027, - [6032] = 5827, - [6033] = 5840, - [6034] = 6025, - [6035] = 6027, - [6036] = 5845, - [6037] = 5828, - [6038] = 6025, - [6039] = 6027, - [6040] = 5852, - [6041] = 5832, - [6042] = 6025, - [6043] = 6027, - [6044] = 5825, - [6045] = 6027, - [6046] = 6025, - [6047] = 6027, - [6048] = 6048, - [6049] = 6049, - [6050] = 6025, - [6051] = 6027, - [6052] = 6025, - [6053] = 6006, - [6054] = 6025, - [6055] = 6027, - [6056] = 5935, - [6057] = 5858, - [6058] = 6025, - [6059] = 6027, - [6060] = 5837, - [6061] = 5835, - [6062] = 6025, - [6063] = 6027, - [6064] = 5901, - [6065] = 5904, - [6066] = 6025, - [6067] = 6027, - [6068] = 5911, - [6069] = 5836, - [6070] = 6025, - [6071] = 6027, - [6072] = 6072, - [6073] = 5839, - [6074] = 6025, - [6075] = 6027, + [6024] = 5919, + [6025] = 5951, + [6026] = 5932, + [6027] = 5941, + [6028] = 5925, + [6029] = 5913, + [6030] = 5932, + [6031] = 6031, + [6032] = 5925, + [6033] = 5913, + [6034] = 5925, + [6035] = 6035, + [6036] = 5928, + [6037] = 5920, + [6038] = 5941, + [6039] = 5932, + [6040] = 5920, + [6041] = 5941, + [6042] = 5925, + [6043] = 5925, + [6044] = 5916, + [6045] = 5925, + [6046] = 5933, + [6047] = 6031, + [6048] = 5920, + [6049] = 5925, + [6050] = 5941, + [6051] = 5934, + [6052] = 6035, + [6053] = 5955, + [6054] = 5928, + [6055] = 6055, + [6056] = 6002, + [6057] = 6057, + [6058] = 6058, + [6059] = 5931, + [6060] = 5934, + [6061] = 5916, + [6062] = 6031, + [6063] = 5946, + [6064] = 6064, + [6065] = 5951, + [6066] = 5913, + [6067] = 5915, + [6068] = 5921, + [6069] = 5925, + [6070] = 6035, + [6071] = 5937, + [6072] = 5946, + [6073] = 6073, + [6074] = 6004, + [6075] = 6075, [6076] = 6076, - [6077] = 5822, - [6078] = 6025, - [6079] = 6027, - [6080] = 5850, - [6081] = 5851, - [6082] = 6025, - [6083] = 6027, - [6084] = 5847, - [6085] = 6085, - [6086] = 5978, - [6087] = 5839, - [6088] = 5908, - [6089] = 5832, - [6090] = 5838, - [6091] = 5829, - [6092] = 5939, - [6093] = 6093, - [6094] = 5835, - [6095] = 5836, - [6096] = 5836, - [6097] = 5822, - [6098] = 5839, - [6099] = 5847, - [6100] = 5845, - [6101] = 5822, - [6102] = 5835, - [6103] = 5850, - [6104] = 5851, - [6105] = 5845, - [6106] = 5851, - [6107] = 5852, - [6108] = 5847, - [6109] = 5850, - [6110] = 5825, - [6111] = 5830, - [6112] = 6093, - [6113] = 6049, - [6114] = 5823, - [6115] = 5835, - [6116] = 5825, - [6117] = 5825, - [6118] = 5858, - [6119] = 5852, - [6120] = 5828, - [6121] = 5845, - [6122] = 5824, - [6123] = 5829, - [6124] = 5852, - [6125] = 5845, - [6126] = 5839, - [6127] = 5836, - [6128] = 5835, - [6129] = 5845, - [6130] = 5852, - [6131] = 5840, - [6132] = 5858, - [6133] = 5830, - [6134] = 5828, - [6135] = 6135, - [6136] = 5823, - [6137] = 5827, - [6138] = 5826, - [6139] = 5828, - [6140] = 5824, - [6141] = 5936, - [6142] = 5851, - [6143] = 6085, - [6144] = 5826, - [6145] = 5824, - [6146] = 5827, - [6147] = 5828, - [6148] = 5840, - [6149] = 5830, - [6150] = 3676, - [6151] = 5936, - [6152] = 5832, - [6153] = 5823, - [6154] = 5847, - [6155] = 5835, - [6156] = 5836, - [6157] = 5839, - [6158] = 5828, - [6159] = 6159, - [6160] = 5822, - [6161] = 5832, - [6162] = 5850, - [6163] = 5851, - [6164] = 5830, - [6165] = 5828, - [6166] = 5936, - [6167] = 6167, - [6168] = 5828, - [6169] = 5847, - [6170] = 5828, - [6171] = 5840, - [6172] = 5823, - [6173] = 5845, - [6174] = 6174, - [6175] = 5830, - [6176] = 6176, - [6177] = 5852, - [6178] = 5829, - [6179] = 5828, - [6180] = 5840, - [6181] = 5828, - [6182] = 5827, - [6183] = 5825, - [6184] = 5565, - [6185] = 5936, - [6186] = 5825, - [6187] = 5858, - [6188] = 5852, - [6189] = 5839, - [6190] = 5845, - [6191] = 5828, - [6192] = 5826, - [6193] = 5827, - [6194] = 5827, - [6195] = 5847, - [6196] = 5830, - [6197] = 5832, - [6198] = 5828, - [6199] = 5840, - [6200] = 6023, - [6201] = 5851, - [6202] = 5936, - [6203] = 5823, - [6204] = 5832, - [6205] = 5850, - [6206] = 5828, - [6207] = 5824, - [6208] = 5823, - [6209] = 5826, - [6210] = 5827, - [6211] = 5828, - [6212] = 5835, - [6213] = 5822, - [6214] = 5824, - [6215] = 5835, - [6216] = 6023, - [6217] = 5828, - [6218] = 5936, - [6219] = 5832, - [6220] = 5828, - [6221] = 6023, - [6222] = 5835, - [6223] = 5836, - [6224] = 5836, - [6225] = 5839, - [6226] = 5826, - [6227] = 5839, - [6228] = 6228, - [6229] = 5822, - [6230] = 5828, - [6231] = 5850, - [6232] = 5823, - [6233] = 5851, - [6234] = 6023, - [6235] = 5836, - [6236] = 5828, - [6237] = 5835, - [6238] = 5847, - [6239] = 5824, - [6240] = 5828, - [6241] = 6023, - [6242] = 5840, - [6243] = 5828, - [6244] = 3585, - [6245] = 5830, - [6246] = 6023, - [6247] = 5830, - [6248] = 5832, - [6249] = 5852, - [6250] = 5828, - [6251] = 5828, - [6252] = 5826, - [6253] = 5828, - [6254] = 5827, - [6255] = 5936, - [6256] = 6023, - [6257] = 5828, - [6258] = 6048, - [6259] = 5825, - [6260] = 6260, - [6261] = 5826, - [6262] = 5852, - [6263] = 5936, - [6264] = 5936, - [6265] = 5824, - [6266] = 5845, - [6267] = 5822, - [6268] = 5852, - [6269] = 5830, - [6270] = 5823, - [6271] = 5850, - [6272] = 5851, - [6273] = 5936, - [6274] = 5840, - [6275] = 5840, - [6276] = 6027, - [6277] = 5975, - [6278] = 6278, - [6279] = 5830, - [6280] = 5827, - [6281] = 6281, - [6282] = 5828, - [6283] = 5830, - [6284] = 5845, - [6285] = 5895, - [6286] = 5830, - [6287] = 6023, - [6288] = 5858, - [6289] = 5881, - [6290] = 5852, - [6291] = 5823, - [6292] = 5936, - [6293] = 6293, - [6294] = 5825, - [6295] = 5915, - [6296] = 5936, - [6297] = 6260, - [6298] = 6072, - [6299] = 6281, - [6300] = 5824, - [6301] = 6167, - [6302] = 5932, - [6303] = 5826, - [6304] = 5827, - [6305] = 5828, - [6306] = 5847, - [6307] = 5942, - [6308] = 5832, - [6309] = 6023, - [6310] = 6007, - [6311] = 5835, - [6312] = 5836, - [6313] = 5839, - [6314] = 5845, - [6315] = 5830, - [6316] = 5822, - [6317] = 6159, - [6318] = 5850, - [6319] = 5828, - [6320] = 5851, - [6321] = 5851, - [6322] = 5850, - [6323] = 5852, - [6324] = 5881, - [6325] = 5936, - [6326] = 5835, - [6327] = 5847, - [6328] = 5822, - [6329] = 6329, - [6330] = 6330, - [6331] = 5825, - [6332] = 6329, - [6333] = 6076, - [6334] = 5847, - [6335] = 5839, - [6336] = 6228, - [6337] = 6135, - [6338] = 5825, - [6339] = 5830, - [6340] = 6023, - [6341] = 5836, - [6342] = 6023, - [6343] = 5835, - [6344] = 6023, - [6345] = 5828, - [6346] = 6023, - [6347] = 5832, - [6348] = 6023, - [6349] = 5936, - [6350] = 6023, - [6351] = 6351, - [6352] = 6023, - [6353] = 6353, - [6354] = 6353, - [6355] = 6353, - [6356] = 6353, - [6357] = 6353, - [6358] = 6353, - [6359] = 6353, - [6360] = 6353, - [6361] = 6353, - [6362] = 6353, - [6363] = 6353, - [6364] = 6353, - [6365] = 6353, - [6366] = 6353, - [6367] = 6353, - [6368] = 6353, - [6369] = 6353, - [6370] = 6353, - [6371] = 6353, - [6372] = 6353, - [6373] = 6353, - [6374] = 6353, - [6375] = 6353, - [6376] = 6353, - [6377] = 6353, - [6378] = 6353, - [6379] = 6353, - [6380] = 6353, - [6381] = 6353, - [6382] = 6353, - [6383] = 6353, - [6384] = 6353, - [6385] = 6353, - [6386] = 6353, - [6387] = 6353, - [6388] = 6353, - [6389] = 6353, - [6390] = 6353, - [6391] = 6353, - [6392] = 6353, - [6393] = 6353, - [6394] = 6353, - [6395] = 6353, - [6396] = 6353, - [6397] = 6353, - [6398] = 6398, - [6399] = 6399, - [6400] = 6353, - [6401] = 6353, - [6402] = 6353, - [6403] = 6353, - [6404] = 6353, - [6405] = 6353, - [6406] = 6353, + [6077] = 5951, + [6078] = 6010, + [6079] = 5933, + [6080] = 6002, + [6081] = 5918, + [6082] = 6031, + [6083] = 5920, + [6084] = 6010, + [6085] = 5931, + [6086] = 6002, + [6087] = 5918, + [6088] = 5925, + [6089] = 6010, + [6090] = 6035, + [6091] = 6002, + [6092] = 5918, + [6093] = 5941, + [6094] = 5937, + [6095] = 6002, + [6096] = 5918, + [6097] = 5956, + [6098] = 5960, + [6099] = 6002, + [6100] = 5918, + [6101] = 6031, + [6102] = 5970, + [6103] = 6002, + [6104] = 5918, + [6105] = 6035, + [6106] = 5955, + [6107] = 6002, + [6108] = 5918, + [6109] = 6031, + [6110] = 3699, + [6111] = 6002, + [6112] = 5918, + [6113] = 5955, + [6114] = 5934, + [6115] = 6002, + [6116] = 5918, + [6117] = 6035, + [6118] = 5913, + [6119] = 6002, + [6120] = 5918, + [6121] = 5932, + [6122] = 5933, + [6123] = 6002, + [6124] = 5918, + [6125] = 6031, + [6126] = 6035, + [6127] = 6002, + [6128] = 5918, + [6129] = 5688, + [6130] = 5970, + [6131] = 6002, + [6132] = 5918, + [6133] = 3846, + [6134] = 5960, + [6135] = 6002, + [6136] = 5918, + [6137] = 6031, + [6138] = 5951, + [6139] = 6002, + [6140] = 5918, + [6141] = 5956, + [6142] = 6142, + [6143] = 6035, + [6144] = 5937, + [6145] = 6145, + [6146] = 5925, + [6147] = 6147, + [6148] = 5916, + [6149] = 6149, + [6150] = 6015, + [6151] = 5928, + [6152] = 6031, + [6153] = 5934, + [6154] = 5928, + [6155] = 6035, + [6156] = 5915, + [6157] = 5915, + [6158] = 5921, + [6159] = 5921, + [6160] = 5956, + [6161] = 5955, + [6162] = 5928, + [6163] = 5932, + [6164] = 5946, + [6165] = 6031, + [6166] = 5920, + [6167] = 5916, + [6168] = 5970, + [6169] = 5571, + [6170] = 5931, + [6171] = 6035, + [6172] = 5925, + [6173] = 5941, + [6174] = 5937, + [6175] = 5956, + [6176] = 5960, + [6177] = 6031, + [6178] = 6178, + [6179] = 5970, + [6180] = 5955, + [6181] = 6035, + [6182] = 5955, + [6183] = 5960, + [6184] = 6184, + [6185] = 5946, + [6186] = 5921, + [6187] = 6031, + [6188] = 5960, + [6189] = 6189, + [6190] = 5915, + [6191] = 5956, + [6192] = 6035, + [6193] = 5920, + [6194] = 6149, + [6195] = 5913, + [6196] = 5995, + [6197] = 6197, + [6198] = 6198, + [6199] = 5937, + [6200] = 5932, + [6201] = 5925, + [6202] = 6073, + [6203] = 5931, + [6204] = 6031, + [6205] = 5960, + [6206] = 5941, + [6207] = 6035, + [6208] = 6208, + [6209] = 5928, + [6210] = 5934, + [6211] = 6211, + [6212] = 3859, + [6213] = 6213, + [6214] = 6214, + [6215] = 5946, + [6216] = 3858, + [6217] = 5921, + [6218] = 5916, + [6219] = 5915, + [6220] = 5951, + [6221] = 6221, + [6222] = 5920, + [6223] = 5931, + [6224] = 5925, + [6225] = 5970, + [6226] = 5937, + [6227] = 5956, + [6228] = 5933, + [6229] = 6229, + [6230] = 5960, + [6231] = 5970, + [6232] = 5951, + [6233] = 5916, + [6234] = 5970, + [6235] = 5934, + [6236] = 6236, + [6237] = 5928, + [6238] = 5915, + [6239] = 5920, + [6240] = 5955, + [6241] = 5932, + [6242] = 5921, + [6243] = 5934, + [6244] = 5916, + [6245] = 5946, + [6246] = 5933, + [6247] = 5931, + [6248] = 5913, + [6249] = 5925, + [6250] = 5951, + [6251] = 5937, + [6252] = 6031, + [6253] = 5956, + [6254] = 5946, + [6255] = 6073, + [6256] = 6010, + [6257] = 6147, + [6258] = 6011, + [6259] = 6031, + [6260] = 5933, + [6261] = 5931, + [6262] = 5955, + [6263] = 5960, + [6264] = 6035, + [6265] = 5955, + [6266] = 5970, + [6267] = 5970, + [6268] = 5960, + [6269] = 3699, + [6270] = 5955, + [6271] = 3725, + [6272] = 3736, + [6273] = 6221, + [6274] = 5913, + [6275] = 5921, + [6276] = 5933, + [6277] = 5956, + [6278] = 5932, + [6279] = 5933, + [6280] = 5919, + [6281] = 5932, + [6282] = 5913, + [6283] = 5933, + [6284] = 5951, + [6285] = 5956, + [6286] = 5951, + [6287] = 5937, + [6288] = 6288, + [6289] = 5932, + [6290] = 5925, + [6291] = 6012, + [6292] = 5916, + [6293] = 5937, + [6294] = 6013, + [6295] = 5934, + [6296] = 5928, + [6297] = 5915, + [6298] = 6145, + [6299] = 5913, + [6300] = 6017, + [6301] = 6301, + [6302] = 6073, + [6303] = 5921, + [6304] = 6031, + [6305] = 6305, + [6306] = 5946, + [6307] = 6307, + [6308] = 5941, + [6309] = 5931, + [6310] = 5925, + [6311] = 5955, + [6312] = 6035, + [6313] = 5937, + [6314] = 5925, + [6315] = 5920, + [6316] = 5941, + [6317] = 5913, + [6318] = 5925, + [6319] = 5925, + [6320] = 5932, + [6321] = 5920, + [6322] = 5941, + [6323] = 5925, + [6324] = 5932, + [6325] = 5925, + [6326] = 5920, + [6327] = 5919, + [6328] = 5925, + [6329] = 5941, + [6330] = 5920, + [6331] = 5946, + [6332] = 5960, + [6333] = 5921, + [6334] = 5915, + [6335] = 5913, + [6336] = 5956, + [6337] = 6337, + [6338] = 5916, + [6339] = 5946, + [6340] = 5934, + [6341] = 5970, + [6342] = 5928, + [6343] = 5955, + [6344] = 5955, + [6345] = 5946, + [6346] = 5913, + [6347] = 5970, + [6348] = 5932, + [6349] = 5933, + [6350] = 5928, + [6351] = 5915, + [6352] = 5925, + [6353] = 5931, + [6354] = 5960, + [6355] = 5956, + [6356] = 5933, + [6357] = 5934, + [6358] = 5937, + [6359] = 5925, + [6360] = 5946, + [6361] = 5946, + [6362] = 6076, + [6363] = 5946, + [6364] = 5925, + [6365] = 5931, + [6366] = 5916, + [6367] = 6142, + [6368] = 5941, + [6369] = 6058, + [6370] = 5960, + [6371] = 5946, + [6372] = 5921, + [6373] = 5946, + [6374] = 5915, + [6375] = 5913, + [6376] = 5925, + [6377] = 5928, + [6378] = 6058, + [6379] = 5925, + [6380] = 5956, + [6381] = 5955, + [6382] = 6058, + [6383] = 5925, + [6384] = 5937, + [6385] = 5931, + [6386] = 5925, + [6387] = 5934, + [6388] = 6198, + [6389] = 5925, + [6390] = 5916, + [6391] = 6058, + [6392] = 5925, + [6393] = 5925, + [6394] = 5925, + [6395] = 5934, + [6396] = 6221, + [6397] = 6208, + [6398] = 5925, + [6399] = 5951, + [6400] = 5931, + [6401] = 6058, + [6402] = 5925, + [6403] = 5937, + [6404] = 5956, + [6405] = 5915, + [6406] = 5925, + [6407] = 5928, + [6408] = 6058, + [6409] = 5923, + [6410] = 5925, + [6411] = 6058, + [6412] = 5946, + [6413] = 5925, + [6414] = 5960, + [6415] = 6021, + [6416] = 5925, + [6417] = 6058, + [6418] = 5925, + [6419] = 5970, + [6420] = 5921, + [6421] = 5970, + [6422] = 5925, + [6423] = 6058, + [6424] = 5915, + [6425] = 5925, + [6426] = 5932, + [6427] = 6064, + [6428] = 6428, + [6429] = 6035, + [6430] = 6337, + [6431] = 6058, + [6432] = 5925, + [6433] = 5971, + [6434] = 6031, + [6435] = 6211, + [6436] = 5928, + [6437] = 5969, + [6438] = 6197, + [6439] = 6189, + [6440] = 5962, + [6441] = 5955, + [6442] = 5921, + [6443] = 6214, + [6444] = 5951, + [6445] = 6058, + [6446] = 6221, + [6447] = 6075, + [6448] = 6073, + [6449] = 5958, + [6450] = 5953, + [6451] = 5933, + [6452] = 5934, + [6453] = 6229, + [6454] = 5916, + [6455] = 6455, + [6456] = 6456, + [6457] = 5934, + [6458] = 5936, + [6459] = 5928, + [6460] = 5919, + [6461] = 5960, + [6462] = 5916, + [6463] = 5932, + [6464] = 5926, + [6465] = 5915, + [6466] = 5921, + [6467] = 5946, + [6468] = 5943, + [6469] = 5952, + [6470] = 5951, + [6471] = 5941, + [6472] = 6221, + [6473] = 6473, + [6474] = 6221, + [6475] = 6035, + [6476] = 5951, + [6477] = 6428, + [6478] = 6022, + [6479] = 5933, + [6480] = 6058, + [6481] = 6481, + [6482] = 5931, + [6483] = 6023, + [6484] = 5951, + [6485] = 5925, + [6486] = 6058, + [6487] = 6301, + [6488] = 6058, + [6489] = 5937, + [6490] = 6058, + [6491] = 5913, + [6492] = 6058, + [6493] = 5956, + [6494] = 6494, + [6495] = 6494, + [6496] = 6494, + [6497] = 6494, + [6498] = 6494, + [6499] = 6494, + [6500] = 6494, + [6501] = 6494, + [6502] = 6494, + [6503] = 6494, + [6504] = 6494, + [6505] = 6494, + [6506] = 6494, + [6507] = 6494, + [6508] = 6494, + [6509] = 6494, + [6510] = 6494, + [6511] = 6494, + [6512] = 6494, + [6513] = 6494, + [6514] = 6494, + [6515] = 6494, + [6516] = 6494, + [6517] = 6494, + [6518] = 6494, + [6519] = 6494, + [6520] = 6494, + [6521] = 6494, + [6522] = 6494, + [6523] = 6494, + [6524] = 6494, + [6525] = 6525, + [6526] = 6494, + [6527] = 6494, + [6528] = 6494, + [6529] = 6494, + [6530] = 6530, + [6531] = 6494, + [6532] = 6494, + [6533] = 6494, + [6534] = 6494, + [6535] = 6494, + [6536] = 6494, + [6537] = 6494, + [6538] = 6494, + [6539] = 6494, + [6540] = 6494, + [6541] = 6494, + [6542] = 6494, + [6543] = 6494, + [6544] = 6494, + [6545] = 6494, + [6546] = 6494, + [6547] = 6494, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -11149,22 +11306,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1] = {.lex_state = 39, .external_lex_state = 2}, [2] = {.lex_state = 39, .external_lex_state = 3}, [3] = {.lex_state = 39, .external_lex_state = 4}, - [4] = {.lex_state = 39, .external_lex_state = 3}, - [5] = {.lex_state = 39, .external_lex_state = 4}, - [6] = {.lex_state = 39, .external_lex_state = 2}, - [7] = {.lex_state = 39, .external_lex_state = 5}, - [8] = {.lex_state = 39, .external_lex_state = 2}, - [9] = {.lex_state = 39, .external_lex_state = 4}, - [10] = {.lex_state = 39, .external_lex_state = 3}, - [11] = {.lex_state = 39, .external_lex_state = 5}, + [4] = {.lex_state = 39, .external_lex_state = 4}, + [5] = {.lex_state = 39, .external_lex_state = 3}, + [6] = {.lex_state = 39, .external_lex_state = 4}, + [7] = {.lex_state = 39, .external_lex_state = 2}, + [8] = {.lex_state = 39, .external_lex_state = 5}, + [9] = {.lex_state = 39, .external_lex_state = 2}, + [10] = {.lex_state = 39, .external_lex_state = 6}, + [11] = {.lex_state = 39, .external_lex_state = 3}, [12] = {.lex_state = 39, .external_lex_state = 5}, - [13] = {.lex_state = 39, .external_lex_state = 4}, - [14] = {.lex_state = 39, .external_lex_state = 3}, - [15] = {.lex_state = 39, .external_lex_state = 2}, - [16] = {.lex_state = 39, .external_lex_state = 6}, - [17] = {.lex_state = 39, .external_lex_state = 6}, - [18] = {.lex_state = 39, .external_lex_state = 2}, - [19] = {.lex_state = 39, .external_lex_state = 5}, + [13] = {.lex_state = 39, .external_lex_state = 6}, + [14] = {.lex_state = 39, .external_lex_state = 2}, + [15] = {.lex_state = 39, .external_lex_state = 4}, + [16] = {.lex_state = 39, .external_lex_state = 3}, + [17] = {.lex_state = 39, .external_lex_state = 5}, + [18] = {.lex_state = 39, .external_lex_state = 5}, + [19] = {.lex_state = 39, .external_lex_state = 2}, [20] = {.lex_state = 39, .external_lex_state = 5}, [21] = {.lex_state = 39, .external_lex_state = 5}, [22] = {.lex_state = 39, .external_lex_state = 5}, @@ -11201,7 +11358,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [53] = {.lex_state = 39, .external_lex_state = 5}, [54] = {.lex_state = 39, .external_lex_state = 5}, [55] = {.lex_state = 39, .external_lex_state = 5}, - [56] = {.lex_state = 39, .external_lex_state = 5}, + [56] = {.lex_state = 39, .external_lex_state = 6}, [57] = {.lex_state = 39, .external_lex_state = 5}, [58] = {.lex_state = 39, .external_lex_state = 5}, [59] = {.lex_state = 39, .external_lex_state = 5}, @@ -11215,87 +11372,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 39, .external_lex_state = 5}, [68] = {.lex_state = 39, .external_lex_state = 5}, [69] = {.lex_state = 39, .external_lex_state = 5}, - [70] = {.lex_state = 39, .external_lex_state = 5}, + [70] = {.lex_state = 39, .external_lex_state = 6}, [71] = {.lex_state = 39, .external_lex_state = 5}, [72] = {.lex_state = 39, .external_lex_state = 5}, [73] = {.lex_state = 39, .external_lex_state = 5}, [74] = {.lex_state = 39, .external_lex_state = 5}, [75] = {.lex_state = 39, .external_lex_state = 5}, - [76] = {.lex_state = 39, .external_lex_state = 6}, + [76] = {.lex_state = 39, .external_lex_state = 5}, [77] = {.lex_state = 39, .external_lex_state = 5}, [78] = {.lex_state = 39, .external_lex_state = 5}, - [79] = {.lex_state = 39, .external_lex_state = 2}, - [80] = {.lex_state = 39, .external_lex_state = 6}, + [79] = {.lex_state = 39, .external_lex_state = 5}, + [80] = {.lex_state = 39, .external_lex_state = 5}, [81] = {.lex_state = 39, .external_lex_state = 5}, - [82] = {.lex_state = 39, .external_lex_state = 7}, + [82] = {.lex_state = 39, .external_lex_state = 5}, [83] = {.lex_state = 39, .external_lex_state = 5}, - [84] = {.lex_state = 39, .external_lex_state = 7}, - [85] = {.lex_state = 39, .external_lex_state = 2}, - [86] = {.lex_state = 39, .external_lex_state = 6}, + [84] = {.lex_state = 39, .external_lex_state = 5}, + [85] = {.lex_state = 39, .external_lex_state = 5}, + [86] = {.lex_state = 39, .external_lex_state = 5}, [87] = {.lex_state = 39, .external_lex_state = 7}, - [88] = {.lex_state = 39, .external_lex_state = 8}, - [89] = {.lex_state = 39, .external_lex_state = 7}, - [90] = {.lex_state = 39, .external_lex_state = 6}, - [91] = {.lex_state = 39, .external_lex_state = 2}, - [92] = {.lex_state = 39, .external_lex_state = 2}, - [93] = {.lex_state = 39, .external_lex_state = 8}, - [94] = {.lex_state = 3, .external_lex_state = 7}, - [95] = {.lex_state = 3, .external_lex_state = 7}, - [96] = {.lex_state = 39, .external_lex_state = 2}, - [97] = {.lex_state = 39, .external_lex_state = 8}, - [98] = {.lex_state = 3, .external_lex_state = 7}, - [99] = {.lex_state = 39, .external_lex_state = 2}, - [100] = {.lex_state = 39, .external_lex_state = 8}, - [101] = {.lex_state = 39, .external_lex_state = 9}, - [102] = {.lex_state = 39, .external_lex_state = 2}, - [103] = {.lex_state = 39, .external_lex_state = 4}, - [104] = {.lex_state = 39, .external_lex_state = 2}, - [105] = {.lex_state = 39, .external_lex_state = 4}, - [106] = {.lex_state = 39, .external_lex_state = 7}, - [107] = {.lex_state = 39, .external_lex_state = 9}, - [108] = {.lex_state = 3, .external_lex_state = 7}, - [109] = {.lex_state = 39, .external_lex_state = 2}, - [110] = {.lex_state = 39, .external_lex_state = 4}, - [111] = {.lex_state = 39, .external_lex_state = 9}, - [112] = {.lex_state = 39, .external_lex_state = 2}, - [113] = {.lex_state = 39, .external_lex_state = 4}, - [114] = {.lex_state = 39, .external_lex_state = 7}, - [115] = {.lex_state = 39, .external_lex_state = 2}, - [116] = {.lex_state = 39, .external_lex_state = 9}, + [88] = {.lex_state = 39, .external_lex_state = 6}, + [89] = {.lex_state = 39, .external_lex_state = 2}, + [90] = {.lex_state = 39, .external_lex_state = 5}, + [91] = {.lex_state = 39, .external_lex_state = 5}, + [92] = {.lex_state = 39, .external_lex_state = 7}, + [93] = {.lex_state = 39, .external_lex_state = 2}, + [94] = {.lex_state = 39, .external_lex_state = 5}, + [95] = {.lex_state = 39, .external_lex_state = 5}, + [96] = {.lex_state = 39, .external_lex_state = 5}, + [97] = {.lex_state = 39, .external_lex_state = 2}, + [98] = {.lex_state = 39, .external_lex_state = 2}, + [99] = {.lex_state = 39, .external_lex_state = 7}, + [100] = {.lex_state = 39, .external_lex_state = 6}, + [101] = {.lex_state = 39, .external_lex_state = 8}, + [102] = {.lex_state = 39, .external_lex_state = 8}, + [103] = {.lex_state = 39, .external_lex_state = 2}, + [104] = {.lex_state = 39, .external_lex_state = 7}, + [105] = {.lex_state = 39, .external_lex_state = 8}, + [106] = {.lex_state = 39, .external_lex_state = 2}, + [107] = {.lex_state = 39, .external_lex_state = 3}, + [108] = {.lex_state = 39, .external_lex_state = 3}, + [109] = {.lex_state = 3, .external_lex_state = 7}, + [110] = {.lex_state = 3, .external_lex_state = 7}, + [111] = {.lex_state = 39, .external_lex_state = 2}, + [112] = {.lex_state = 39, .external_lex_state = 9}, + [113] = {.lex_state = 39, .external_lex_state = 7}, + [114] = {.lex_state = 39, .external_lex_state = 9}, + [115] = {.lex_state = 3, .external_lex_state = 7}, + [116] = {.lex_state = 39, .external_lex_state = 8}, [117] = {.lex_state = 39, .external_lex_state = 2}, [118] = {.lex_state = 39, .external_lex_state = 3}, - [119] = {.lex_state = 39, .external_lex_state = 4}, - [120] = {.lex_state = 39, .external_lex_state = 4}, - [121] = {.lex_state = 39, .external_lex_state = 3}, - [122] = {.lex_state = 39, .external_lex_state = 6}, - [123] = {.lex_state = 39, .external_lex_state = 4}, - [124] = {.lex_state = 39, .external_lex_state = 3}, - [125] = {.lex_state = 39, .external_lex_state = 6}, - [126] = {.lex_state = 39, .external_lex_state = 5}, + [119] = {.lex_state = 39, .external_lex_state = 9}, + [120] = {.lex_state = 39, .external_lex_state = 3}, + [121] = {.lex_state = 3, .external_lex_state = 7}, + [122] = {.lex_state = 39, .external_lex_state = 2}, + [123] = {.lex_state = 39, .external_lex_state = 9}, + [124] = {.lex_state = 39, .external_lex_state = 7}, + [125] = {.lex_state = 39, .external_lex_state = 2}, + [126] = {.lex_state = 39, .external_lex_state = 2}, [127] = {.lex_state = 39, .external_lex_state = 2}, - [128] = {.lex_state = 39, .external_lex_state = 2}, - [129] = {.lex_state = 39, .external_lex_state = 5}, - [130] = {.lex_state = 39, .external_lex_state = 4}, + [128] = {.lex_state = 39, .external_lex_state = 6}, + [129] = {.lex_state = 39, .external_lex_state = 6}, + [130] = {.lex_state = 39, .external_lex_state = 3}, [131] = {.lex_state = 39, .external_lex_state = 3}, - [132] = {.lex_state = 39, .external_lex_state = 5}, - [133] = {.lex_state = 39, .external_lex_state = 2}, - [134] = {.lex_state = 39, .external_lex_state = 4}, - [135] = {.lex_state = 39, .external_lex_state = 3}, - [136] = {.lex_state = 39, .external_lex_state = 5}, + [132] = {.lex_state = 39, .external_lex_state = 4}, + [133] = {.lex_state = 39, .external_lex_state = 4}, + [134] = {.lex_state = 39, .external_lex_state = 3}, + [135] = {.lex_state = 39, .external_lex_state = 4}, + [136] = {.lex_state = 39, .external_lex_state = 2}, [137] = {.lex_state = 39, .external_lex_state = 2}, - [138] = {.lex_state = 39, .external_lex_state = 7}, - [139] = {.lex_state = 39, .external_lex_state = 6}, - [140] = {.lex_state = 39, .external_lex_state = 6}, - [141] = {.lex_state = 39, .external_lex_state = 6}, - [142] = {.lex_state = 39, .external_lex_state = 6}, - [143] = {.lex_state = 39, .external_lex_state = 2}, - [144] = {.lex_state = 39, .external_lex_state = 6}, - [145] = {.lex_state = 39, .external_lex_state = 6}, - [146] = {.lex_state = 39, .external_lex_state = 6}, - [147] = {.lex_state = 39, .external_lex_state = 6}, + [138] = {.lex_state = 39, .external_lex_state = 3}, + [139] = {.lex_state = 39, .external_lex_state = 4}, + [140] = {.lex_state = 39, .external_lex_state = 5}, + [141] = {.lex_state = 39, .external_lex_state = 5}, + [142] = {.lex_state = 39, .external_lex_state = 5}, + [143] = {.lex_state = 39, .external_lex_state = 4}, + [144] = {.lex_state = 39, .external_lex_state = 2}, + [145] = {.lex_state = 39, .external_lex_state = 3}, + [146] = {.lex_state = 39, .external_lex_state = 2}, + [147] = {.lex_state = 39, .external_lex_state = 5}, [148] = {.lex_state = 39, .external_lex_state = 6}, [149] = {.lex_state = 39, .external_lex_state = 6}, - [150] = {.lex_state = 39, .external_lex_state = 5}, + [150] = {.lex_state = 39, .external_lex_state = 6}, [151] = {.lex_state = 39, .external_lex_state = 6}, [152] = {.lex_state = 39, .external_lex_state = 6}, [153] = {.lex_state = 39, .external_lex_state = 6}, @@ -11306,14 +11463,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 39, .external_lex_state = 6}, [159] = {.lex_state = 39, .external_lex_state = 6}, [160] = {.lex_state = 39, .external_lex_state = 6}, - [161] = {.lex_state = 39, .external_lex_state = 5}, + [161] = {.lex_state = 39, .external_lex_state = 6}, [162] = {.lex_state = 39, .external_lex_state = 6}, [163] = {.lex_state = 39, .external_lex_state = 6}, [164] = {.lex_state = 39, .external_lex_state = 6}, [165] = {.lex_state = 39, .external_lex_state = 6}, [166] = {.lex_state = 39, .external_lex_state = 6}, [167] = {.lex_state = 39, .external_lex_state = 6}, - [168] = {.lex_state = 39, .external_lex_state = 7}, + [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}, @@ -11328,10 +11485,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [180] = {.lex_state = 39, .external_lex_state = 6}, [181] = {.lex_state = 39, .external_lex_state = 6}, [182] = {.lex_state = 39, .external_lex_state = 6}, - [183] = {.lex_state = 39, .external_lex_state = 2}, + [183] = {.lex_state = 39, .external_lex_state = 6}, [184] = {.lex_state = 39, .external_lex_state = 6}, [185] = {.lex_state = 39, .external_lex_state = 6}, - [186] = {.lex_state = 39, .external_lex_state = 7}, + [186] = {.lex_state = 39, .external_lex_state = 6}, [187] = {.lex_state = 39, .external_lex_state = 6}, [188] = {.lex_state = 39, .external_lex_state = 6}, [189] = {.lex_state = 39, .external_lex_state = 6}, @@ -11344,76 +11501,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.lex_state = 39, .external_lex_state = 6}, [197] = {.lex_state = 39, .external_lex_state = 6}, [198] = {.lex_state = 39, .external_lex_state = 6}, - [199] = {.lex_state = 3, .external_lex_state = 7}, - [200] = {.lex_state = 3, .external_lex_state = 7}, - [201] = {.lex_state = 3, .external_lex_state = 7}, - [202] = {.lex_state = 3, .external_lex_state = 7}, - [203] = {.lex_state = 3, .external_lex_state = 7}, - [204] = {.lex_state = 3, .external_lex_state = 7}, - [205] = {.lex_state = 3, .external_lex_state = 7}, - [206] = {.lex_state = 3, .external_lex_state = 7}, - [207] = {.lex_state = 3, .external_lex_state = 7}, - [208] = {.lex_state = 3, .external_lex_state = 7}, - [209] = {.lex_state = 3, .external_lex_state = 7}, - [210] = {.lex_state = 39, .external_lex_state = 6}, - [211] = {.lex_state = 3, .external_lex_state = 7}, - [212] = {.lex_state = 3, .external_lex_state = 7}, - [213] = {.lex_state = 3, .external_lex_state = 7}, - [214] = {.lex_state = 3, .external_lex_state = 7}, - [215] = {.lex_state = 3, .external_lex_state = 7}, - [216] = {.lex_state = 3, .external_lex_state = 7}, + [199] = {.lex_state = 39, .external_lex_state = 6}, + [200] = {.lex_state = 39, .external_lex_state = 6}, + [201] = {.lex_state = 39, .external_lex_state = 6}, + [202] = {.lex_state = 39, .external_lex_state = 6}, + [203] = {.lex_state = 39, .external_lex_state = 6}, + [204] = {.lex_state = 39, .external_lex_state = 6}, + [205] = {.lex_state = 39, .external_lex_state = 6}, + [206] = {.lex_state = 39, .external_lex_state = 6}, + [207] = {.lex_state = 39, .external_lex_state = 7}, + [208] = {.lex_state = 39, .external_lex_state = 6}, + [209] = {.lex_state = 39, .external_lex_state = 6}, + [210] = {.lex_state = 39, .external_lex_state = 2}, + [211] = {.lex_state = 39, .external_lex_state = 2}, + [212] = {.lex_state = 39, .external_lex_state = 6}, + [213] = {.lex_state = 39, .external_lex_state = 5}, + [214] = {.lex_state = 39, .external_lex_state = 7}, + [215] = {.lex_state = 39, .external_lex_state = 7}, + [216] = {.lex_state = 39, .external_lex_state = 5}, [217] = {.lex_state = 3, .external_lex_state = 7}, - [218] = {.lex_state = 39, .external_lex_state = 2}, - [219] = {.lex_state = 39, .external_lex_state = 2}, - [220] = {.lex_state = 39, .external_lex_state = 8}, - [221] = {.lex_state = 39, .external_lex_state = 8}, - [222] = {.lex_state = 21, .external_lex_state = 8}, - [223] = {.lex_state = 21, .external_lex_state = 8}, - [224] = {.lex_state = 39, .external_lex_state = 7}, - [225] = {.lex_state = 39, .external_lex_state = 6}, - [226] = {.lex_state = 39, .external_lex_state = 2}, + [218] = {.lex_state = 3, .external_lex_state = 7}, + [219] = {.lex_state = 3, .external_lex_state = 7}, + [220] = {.lex_state = 3, .external_lex_state = 7}, + [221] = {.lex_state = 39, .external_lex_state = 2}, + [222] = {.lex_state = 39, .external_lex_state = 6}, + [223] = {.lex_state = 3, .external_lex_state = 7}, + [224] = {.lex_state = 3, .external_lex_state = 7}, + [225] = {.lex_state = 3, .external_lex_state = 7}, + [226] = {.lex_state = 3, .external_lex_state = 7}, [227] = {.lex_state = 3, .external_lex_state = 7}, - [228] = {.lex_state = 39, .external_lex_state = 8}, - [229] = {.lex_state = 39, .external_lex_state = 7}, + [228] = {.lex_state = 3, .external_lex_state = 7}, + [229] = {.lex_state = 3, .external_lex_state = 7}, [230] = {.lex_state = 3, .external_lex_state = 7}, - [231] = {.lex_state = 39, .external_lex_state = 4}, - [232] = {.lex_state = 39, .external_lex_state = 2}, - [233] = {.lex_state = 39, .external_lex_state = 8}, - [234] = {.lex_state = 39, .external_lex_state = 2}, + [231] = {.lex_state = 3, .external_lex_state = 7}, + [232] = {.lex_state = 3, .external_lex_state = 7}, + [233] = {.lex_state = 3, .external_lex_state = 7}, + [234] = {.lex_state = 3, .external_lex_state = 7}, [235] = {.lex_state = 39, .external_lex_state = 2}, - [236] = {.lex_state = 39, .external_lex_state = 4}, - [237] = {.lex_state = 39, .external_lex_state = 9}, - [238] = {.lex_state = 3, .external_lex_state = 7}, - [239] = {.lex_state = 39, .external_lex_state = 4}, - [240] = {.lex_state = 39, .external_lex_state = 9}, - [241] = {.lex_state = 39, .external_lex_state = 7}, - [242] = {.lex_state = 39, .external_lex_state = 4}, - [243] = {.lex_state = 39, .external_lex_state = 7}, - [244] = {.lex_state = 39, .external_lex_state = 9}, - [245] = {.lex_state = 39, .external_lex_state = 7}, - [246] = {.lex_state = 3, .external_lex_state = 7}, - [247] = {.lex_state = 39, .external_lex_state = 2}, - [248] = {.lex_state = 39, .external_lex_state = 4}, - [249] = {.lex_state = 39, .external_lex_state = 9}, - [250] = {.lex_state = 39, .external_lex_state = 2}, - [251] = {.lex_state = 39, .external_lex_state = 2}, - [252] = {.lex_state = 39, .external_lex_state = 7}, - [253] = {.lex_state = 39, .external_lex_state = 7}, - [254] = {.lex_state = 39, .external_lex_state = 7}, - [255] = {.lex_state = 39, .external_lex_state = 7}, - [256] = {.lex_state = 39, .external_lex_state = 7}, - [257] = {.lex_state = 39, .external_lex_state = 7}, + [236] = {.lex_state = 3, .external_lex_state = 7}, + [237] = {.lex_state = 3, .external_lex_state = 7}, + [238] = {.lex_state = 39, .external_lex_state = 8}, + [239] = {.lex_state = 21, .external_lex_state = 8}, + [240] = {.lex_state = 39, .external_lex_state = 2}, + [241] = {.lex_state = 21, .external_lex_state = 8}, + [242] = {.lex_state = 39, .external_lex_state = 7}, + [243] = {.lex_state = 39, .external_lex_state = 8}, + [244] = {.lex_state = 39, .external_lex_state = 7}, + [245] = {.lex_state = 39, .external_lex_state = 8}, + [246] = {.lex_state = 39, .external_lex_state = 2}, + [247] = {.lex_state = 3, .external_lex_state = 7}, + [248] = {.lex_state = 3, .external_lex_state = 7}, + [249] = {.lex_state = 39, .external_lex_state = 2}, + [250] = {.lex_state = 3, .external_lex_state = 7}, + [251] = {.lex_state = 39, .external_lex_state = 9}, + [252] = {.lex_state = 39, .external_lex_state = 8}, + [253] = {.lex_state = 39, .external_lex_state = 9}, + [254] = {.lex_state = 39, .external_lex_state = 2}, + [255] = {.lex_state = 39, .external_lex_state = 3}, + [256] = {.lex_state = 39, .external_lex_state = 3}, + [257] = {.lex_state = 39, .external_lex_state = 3}, [258] = {.lex_state = 39, .external_lex_state = 7}, - [259] = {.lex_state = 39, .external_lex_state = 7}, + [259] = {.lex_state = 39, .external_lex_state = 2}, [260] = {.lex_state = 39, .external_lex_state = 7}, - [261] = {.lex_state = 39, .external_lex_state = 7}, - [262] = {.lex_state = 39, .external_lex_state = 7}, - [263] = {.lex_state = 39, .external_lex_state = 7}, + [261] = {.lex_state = 39, .external_lex_state = 3}, + [262] = {.lex_state = 39, .external_lex_state = 9}, + [263] = {.lex_state = 3, .external_lex_state = 7}, [264] = {.lex_state = 39, .external_lex_state = 7}, - [265] = {.lex_state = 39, .external_lex_state = 7}, - [266] = {.lex_state = 39, .external_lex_state = 7}, - [267] = {.lex_state = 39, .external_lex_state = 7}, - [268] = {.lex_state = 39, .external_lex_state = 7}, + [265] = {.lex_state = 39, .external_lex_state = 3}, + [266] = {.lex_state = 39, .external_lex_state = 9}, + [267] = {.lex_state = 39, .external_lex_state = 2}, + [268] = {.lex_state = 39, .external_lex_state = 2}, [269] = {.lex_state = 39, .external_lex_state = 7}, [270] = {.lex_state = 39, .external_lex_state = 7}, [271] = {.lex_state = 39, .external_lex_state = 7}, @@ -11432,7 +11589,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [284] = {.lex_state = 39, .external_lex_state = 7}, [285] = {.lex_state = 39, .external_lex_state = 7}, [286] = {.lex_state = 39, .external_lex_state = 7}, - [287] = {.lex_state = 39, .external_lex_state = 7}, + [287] = {.lex_state = 39, .external_lex_state = 4}, [288] = {.lex_state = 39, .external_lex_state = 7}, [289] = {.lex_state = 39, .external_lex_state = 7}, [290] = {.lex_state = 39, .external_lex_state = 7}, @@ -11443,7 +11600,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [295] = {.lex_state = 39, .external_lex_state = 7}, [296] = {.lex_state = 39, .external_lex_state = 7}, [297] = {.lex_state = 39, .external_lex_state = 7}, - [298] = {.lex_state = 39, .external_lex_state = 7}, + [298] = {.lex_state = 39, .external_lex_state = 3}, [299] = {.lex_state = 39, .external_lex_state = 7}, [300] = {.lex_state = 39, .external_lex_state = 7}, [301] = {.lex_state = 39, .external_lex_state = 7}, @@ -11455,102 +11612,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [307] = {.lex_state = 39, .external_lex_state = 7}, [308] = {.lex_state = 39, .external_lex_state = 7}, [309] = {.lex_state = 39, .external_lex_state = 7}, - [310] = {.lex_state = 39, .external_lex_state = 2}, + [310] = {.lex_state = 39, .external_lex_state = 7}, [311] = {.lex_state = 39, .external_lex_state = 7}, - [312] = {.lex_state = 39, .external_lex_state = 3}, + [312] = {.lex_state = 39, .external_lex_state = 7}, [313] = {.lex_state = 39, .external_lex_state = 7}, [314] = {.lex_state = 39, .external_lex_state = 7}, - [315] = {.lex_state = 39, .external_lex_state = 8}, + [315] = {.lex_state = 39, .external_lex_state = 7}, [316] = {.lex_state = 39, .external_lex_state = 7}, [317] = {.lex_state = 39, .external_lex_state = 7}, [318] = {.lex_state = 39, .external_lex_state = 7}, - [319] = {.lex_state = 39, .external_lex_state = 8}, - [320] = {.lex_state = 39, .external_lex_state = 4}, + [319] = {.lex_state = 39, .external_lex_state = 7}, + [320] = {.lex_state = 39, .external_lex_state = 3}, [321] = {.lex_state = 39, .external_lex_state = 7}, [322] = {.lex_state = 39, .external_lex_state = 7}, - [323] = {.lex_state = 39, .external_lex_state = 3}, - [324] = {.lex_state = 39, .external_lex_state = 8}, + [323] = {.lex_state = 39, .external_lex_state = 7}, + [324] = {.lex_state = 39, .external_lex_state = 7}, [325] = {.lex_state = 39, .external_lex_state = 7}, [326] = {.lex_state = 39, .external_lex_state = 7}, - [327] = {.lex_state = 39, .external_lex_state = 8}, + [327] = {.lex_state = 39, .external_lex_state = 7}, [328] = {.lex_state = 39, .external_lex_state = 7}, [329] = {.lex_state = 39, .external_lex_state = 7}, - [330] = {.lex_state = 39, .external_lex_state = 8}, - [331] = {.lex_state = 39, .external_lex_state = 7}, + [330] = {.lex_state = 39, .external_lex_state = 4}, + [331] = {.lex_state = 39, .external_lex_state = 8}, [332] = {.lex_state = 39, .external_lex_state = 7}, - [333] = {.lex_state = 39, .external_lex_state = 7}, - [334] = {.lex_state = 39, .external_lex_state = 7}, - [335] = {.lex_state = 39, .external_lex_state = 8}, - [336] = {.lex_state = 39, .external_lex_state = 7}, - [337] = {.lex_state = 39, .external_lex_state = 7}, - [338] = {.lex_state = 39, .external_lex_state = 8}, + [333] = {.lex_state = 39, .external_lex_state = 8}, + [334] = {.lex_state = 39, .external_lex_state = 8}, + [335] = {.lex_state = 39, .external_lex_state = 5}, + [336] = {.lex_state = 39, .external_lex_state = 2}, + [337] = {.lex_state = 39, .external_lex_state = 4}, + [338] = {.lex_state = 39, .external_lex_state = 7}, [339] = {.lex_state = 39, .external_lex_state = 7}, [340] = {.lex_state = 39, .external_lex_state = 7}, - [341] = {.lex_state = 39, .external_lex_state = 7}, + [341] = {.lex_state = 39, .external_lex_state = 8}, [342] = {.lex_state = 39, .external_lex_state = 7}, - [343] = {.lex_state = 39, .external_lex_state = 7}, - [344] = {.lex_state = 39, .external_lex_state = 8}, - [345] = {.lex_state = 39, .external_lex_state = 8}, - [346] = {.lex_state = 39, .external_lex_state = 8}, + [343] = {.lex_state = 39, .external_lex_state = 2}, + [344] = {.lex_state = 39, .external_lex_state = 7}, + [345] = {.lex_state = 39, .external_lex_state = 3}, + [346] = {.lex_state = 39, .external_lex_state = 5}, [347] = {.lex_state = 39, .external_lex_state = 7}, - [348] = {.lex_state = 39, .external_lex_state = 8}, + [348] = {.lex_state = 39, .external_lex_state = 7}, [349] = {.lex_state = 39, .external_lex_state = 7}, - [350] = {.lex_state = 39, .external_lex_state = 4}, + [350] = {.lex_state = 39, .external_lex_state = 3}, [351] = {.lex_state = 39, .external_lex_state = 7}, - [352] = {.lex_state = 39, .external_lex_state = 8}, - [353] = {.lex_state = 39, .external_lex_state = 7}, - [354] = {.lex_state = 39, .external_lex_state = 8}, + [352] = {.lex_state = 39, .external_lex_state = 7}, + [353] = {.lex_state = 39, .external_lex_state = 4}, + [354] = {.lex_state = 39, .external_lex_state = 7}, [355] = {.lex_state = 39, .external_lex_state = 8}, [356] = {.lex_state = 39, .external_lex_state = 8}, [357] = {.lex_state = 39, .external_lex_state = 7}, - [358] = {.lex_state = 39, .external_lex_state = 7}, - [359] = {.lex_state = 39, .external_lex_state = 8}, - [360] = {.lex_state = 39, .external_lex_state = 7}, + [358] = {.lex_state = 39, .external_lex_state = 8}, + [359] = {.lex_state = 39, .external_lex_state = 7}, + [360] = {.lex_state = 39, .external_lex_state = 8}, [361] = {.lex_state = 39, .external_lex_state = 7}, - [362] = {.lex_state = 39, .external_lex_state = 4}, - [363] = {.lex_state = 39, .external_lex_state = 7}, - [364] = {.lex_state = 39, .external_lex_state = 7}, + [362] = {.lex_state = 39, .external_lex_state = 7}, + [363] = {.lex_state = 39, .external_lex_state = 8}, + [364] = {.lex_state = 39, .external_lex_state = 8}, [365] = {.lex_state = 39, .external_lex_state = 8}, - [366] = {.lex_state = 39, .external_lex_state = 8}, + [366] = {.lex_state = 39, .external_lex_state = 2}, [367] = {.lex_state = 39, .external_lex_state = 7}, - [368] = {.lex_state = 39, .external_lex_state = 3}, - [369] = {.lex_state = 39, .external_lex_state = 9}, - [370] = {.lex_state = 39, .external_lex_state = 8}, - [371] = {.lex_state = 39, .external_lex_state = 8}, - [372] = {.lex_state = 39, .external_lex_state = 8}, - [373] = {.lex_state = 39, .external_lex_state = 8}, - [374] = {.lex_state = 39, .external_lex_state = 8}, - [375] = {.lex_state = 39, .external_lex_state = 9}, - [376] = {.lex_state = 39, .external_lex_state = 8}, - [377] = {.lex_state = 39, .external_lex_state = 8}, - [378] = {.lex_state = 39, .external_lex_state = 8}, - [379] = {.lex_state = 39, .external_lex_state = 9}, - [380] = {.lex_state = 39, .external_lex_state = 3}, - [381] = {.lex_state = 39, .external_lex_state = 8}, - [382] = {.lex_state = 39, .external_lex_state = 5}, - [383] = {.lex_state = 39, .external_lex_state = 9}, - [384] = {.lex_state = 39, .external_lex_state = 8}, - [385] = {.lex_state = 39, .external_lex_state = 8}, - [386] = {.lex_state = 39, .external_lex_state = 8}, - [387] = {.lex_state = 39, .external_lex_state = 8}, - [388] = {.lex_state = 39, .external_lex_state = 8}, - [389] = {.lex_state = 39, .external_lex_state = 9}, + [368] = {.lex_state = 39, .external_lex_state = 8}, + [369] = {.lex_state = 39, .external_lex_state = 8}, + [370] = {.lex_state = 39, .external_lex_state = 7}, + [371] = {.lex_state = 39, .external_lex_state = 7}, + [372] = {.lex_state = 39, .external_lex_state = 4}, + [373] = {.lex_state = 39, .external_lex_state = 7}, + [374] = {.lex_state = 39, .external_lex_state = 7}, + [375] = {.lex_state = 39, .external_lex_state = 7}, + [376] = {.lex_state = 39, .external_lex_state = 7}, + [377] = {.lex_state = 39, .external_lex_state = 7}, + [378] = {.lex_state = 39, .external_lex_state = 7}, + [379] = {.lex_state = 39, .external_lex_state = 8}, + [380] = {.lex_state = 39, .external_lex_state = 7}, + [381] = {.lex_state = 39, .external_lex_state = 7}, + [382] = {.lex_state = 39, .external_lex_state = 8}, + [383] = {.lex_state = 39, .external_lex_state = 7}, + [384] = {.lex_state = 39, .external_lex_state = 7}, + [385] = {.lex_state = 39, .external_lex_state = 7}, + [386] = {.lex_state = 39, .external_lex_state = 7}, + [387] = {.lex_state = 39, .external_lex_state = 7}, + [388] = {.lex_state = 39, .external_lex_state = 7}, + [389] = {.lex_state = 39, .external_lex_state = 7}, [390] = {.lex_state = 39, .external_lex_state = 8}, - [391] = {.lex_state = 39, .external_lex_state = 8}, + [391] = {.lex_state = 39, .external_lex_state = 3}, [392] = {.lex_state = 39, .external_lex_state = 8}, [393] = {.lex_state = 39, .external_lex_state = 8}, - [394] = {.lex_state = 39, .external_lex_state = 9}, + [394] = {.lex_state = 39, .external_lex_state = 8}, [395] = {.lex_state = 39, .external_lex_state = 8}, - [396] = {.lex_state = 39, .external_lex_state = 8}, - [397] = {.lex_state = 39, .external_lex_state = 9}, + [396] = {.lex_state = 39, .external_lex_state = 9}, + [397] = {.lex_state = 39, .external_lex_state = 8}, [398] = {.lex_state = 39, .external_lex_state = 8}, [399] = {.lex_state = 39, .external_lex_state = 8}, - [400] = {.lex_state = 39, .external_lex_state = 8}, + [400] = {.lex_state = 39, .external_lex_state = 9}, [401] = {.lex_state = 39, .external_lex_state = 8}, - [402] = {.lex_state = 39, .external_lex_state = 9}, - [403] = {.lex_state = 39, .external_lex_state = 4}, - [404] = {.lex_state = 39, .external_lex_state = 9}, - [405] = {.lex_state = 39, .external_lex_state = 2}, + [402] = {.lex_state = 39, .external_lex_state = 8}, + [403] = {.lex_state = 39, .external_lex_state = 8}, + [404] = {.lex_state = 39, .external_lex_state = 8}, + [405] = {.lex_state = 39, .external_lex_state = 8}, [406] = {.lex_state = 39, .external_lex_state = 8}, [407] = {.lex_state = 39, .external_lex_state = 8}, [408] = {.lex_state = 39, .external_lex_state = 8}, @@ -11558,198 +11715,198 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [410] = {.lex_state = 39, .external_lex_state = 8}, [411] = {.lex_state = 39, .external_lex_state = 8}, [412] = {.lex_state = 39, .external_lex_state = 8}, - [413] = {.lex_state = 39, .external_lex_state = 9}, + [413] = {.lex_state = 39, .external_lex_state = 8}, [414] = {.lex_state = 39, .external_lex_state = 9}, [415] = {.lex_state = 39, .external_lex_state = 8}, [416] = {.lex_state = 39, .external_lex_state = 8}, [417] = {.lex_state = 39, .external_lex_state = 8}, [418] = {.lex_state = 39, .external_lex_state = 8}, [419] = {.lex_state = 39, .external_lex_state = 8}, - [420] = {.lex_state = 39, .external_lex_state = 9}, + [420] = {.lex_state = 39, .external_lex_state = 8}, [421] = {.lex_state = 39, .external_lex_state = 8}, - [422] = {.lex_state = 39, .external_lex_state = 2}, + [422] = {.lex_state = 39, .external_lex_state = 9}, [423] = {.lex_state = 39, .external_lex_state = 8}, [424] = {.lex_state = 39, .external_lex_state = 8}, [425] = {.lex_state = 39, .external_lex_state = 8}, - [426] = {.lex_state = 39, .external_lex_state = 8}, - [427] = {.lex_state = 39, .external_lex_state = 9}, - [428] = {.lex_state = 39, .external_lex_state = 9}, + [426] = {.lex_state = 39, .external_lex_state = 9}, + [427] = {.lex_state = 39, .external_lex_state = 2}, + [428] = {.lex_state = 39, .external_lex_state = 8}, [429] = {.lex_state = 39, .external_lex_state = 8}, - [430] = {.lex_state = 39, .external_lex_state = 8}, - [431] = {.lex_state = 39, .external_lex_state = 8}, + [430] = {.lex_state = 39, .external_lex_state = 9}, + [431] = {.lex_state = 39, .external_lex_state = 9}, [432] = {.lex_state = 39, .external_lex_state = 8}, [433] = {.lex_state = 39, .external_lex_state = 8}, [434] = {.lex_state = 39, .external_lex_state = 8}, - [435] = {.lex_state = 39, .external_lex_state = 2}, + [435] = {.lex_state = 39, .external_lex_state = 9}, [436] = {.lex_state = 39, .external_lex_state = 8}, - [437] = {.lex_state = 39, .external_lex_state = 9}, - [438] = {.lex_state = 39, .external_lex_state = 9}, - [439] = {.lex_state = 39, .external_lex_state = 8}, - [440] = {.lex_state = 39, .external_lex_state = 4}, + [437] = {.lex_state = 39, .external_lex_state = 8}, + [438] = {.lex_state = 39, .external_lex_state = 8}, + [439] = {.lex_state = 39, .external_lex_state = 9}, + [440] = {.lex_state = 39, .external_lex_state = 9}, [441] = {.lex_state = 39, .external_lex_state = 9}, [442] = {.lex_state = 39, .external_lex_state = 8}, - [443] = {.lex_state = 39, .external_lex_state = 8}, - [444] = {.lex_state = 39, .external_lex_state = 2}, - [445] = {.lex_state = 39, .external_lex_state = 8}, - [446] = {.lex_state = 39, .external_lex_state = 4}, - [447] = {.lex_state = 39, .external_lex_state = 5}, + [443] = {.lex_state = 39, .external_lex_state = 9}, + [444] = {.lex_state = 39, .external_lex_state = 8}, + [445] = {.lex_state = 39, .external_lex_state = 3}, + [446] = {.lex_state = 39, .external_lex_state = 9}, + [447] = {.lex_state = 39, .external_lex_state = 8}, [448] = {.lex_state = 39, .external_lex_state = 8}, - [449] = {.lex_state = 39, .external_lex_state = 3}, - [450] = {.lex_state = 39, .external_lex_state = 5}, - [451] = {.lex_state = 39, .external_lex_state = 3}, - [452] = {.lex_state = 20, .external_lex_state = 2}, - [453] = {.lex_state = 20, .external_lex_state = 2}, + [449] = {.lex_state = 39, .external_lex_state = 9}, + [450] = {.lex_state = 39, .external_lex_state = 8}, + [451] = {.lex_state = 39, .external_lex_state = 9}, + [452] = {.lex_state = 39, .external_lex_state = 8}, + [453] = {.lex_state = 39, .external_lex_state = 8}, [454] = {.lex_state = 39, .external_lex_state = 9}, - [455] = {.lex_state = 39, .external_lex_state = 2}, - [456] = {.lex_state = 20, .external_lex_state = 2}, - [457] = {.lex_state = 20, .external_lex_state = 2}, - [458] = {.lex_state = 20, .external_lex_state = 2}, - [459] = {.lex_state = 20, .external_lex_state = 2}, - [460] = {.lex_state = 20, .external_lex_state = 2}, - [461] = {.lex_state = 20, .external_lex_state = 2}, - [462] = {.lex_state = 39, .external_lex_state = 2}, - [463] = {.lex_state = 20, .external_lex_state = 2}, - [464] = {.lex_state = 39, .external_lex_state = 9}, - [465] = {.lex_state = 20, .external_lex_state = 2}, - [466] = {.lex_state = 20, .external_lex_state = 2}, - [467] = {.lex_state = 20, .external_lex_state = 2}, - [468] = {.lex_state = 20, .external_lex_state = 2}, - [469] = {.lex_state = 39, .external_lex_state = 8}, - [470] = {.lex_state = 20, .external_lex_state = 2}, - [471] = {.lex_state = 39, .external_lex_state = 9}, - [472] = {.lex_state = 20, .external_lex_state = 2}, + [455] = {.lex_state = 39, .external_lex_state = 8}, + [456] = {.lex_state = 39, .external_lex_state = 8}, + [457] = {.lex_state = 39, .external_lex_state = 8}, + [458] = {.lex_state = 39, .external_lex_state = 8}, + [459] = {.lex_state = 39, .external_lex_state = 8}, + [460] = {.lex_state = 39, .external_lex_state = 2}, + [461] = {.lex_state = 39, .external_lex_state = 9}, + [462] = {.lex_state = 39, .external_lex_state = 5}, + [463] = {.lex_state = 39, .external_lex_state = 8}, + [464] = {.lex_state = 39, .external_lex_state = 2}, + [465] = {.lex_state = 39, .external_lex_state = 2}, + [466] = {.lex_state = 39, .external_lex_state = 8}, + [467] = {.lex_state = 39, .external_lex_state = 8}, + [468] = {.lex_state = 39, .external_lex_state = 5}, + [469] = {.lex_state = 39, .external_lex_state = 4}, + [470] = {.lex_state = 39, .external_lex_state = 8}, + [471] = {.lex_state = 39, .external_lex_state = 8}, + [472] = {.lex_state = 39, .external_lex_state = 5}, [473] = {.lex_state = 20, .external_lex_state = 2}, - [474] = {.lex_state = 39, .external_lex_state = 2}, - [475] = {.lex_state = 20, .external_lex_state = 2}, - [476] = {.lex_state = 39, .external_lex_state = 9}, + [474] = {.lex_state = 39, .external_lex_state = 3}, + [475] = {.lex_state = 39, .external_lex_state = 3}, + [476] = {.lex_state = 39, .external_lex_state = 8}, [477] = {.lex_state = 20, .external_lex_state = 2}, [478] = {.lex_state = 20, .external_lex_state = 2}, - [479] = {.lex_state = 39, .external_lex_state = 9}, + [479] = {.lex_state = 39, .external_lex_state = 3}, [480] = {.lex_state = 20, .external_lex_state = 2}, - [481] = {.lex_state = 39, .external_lex_state = 2}, + [481] = {.lex_state = 20, .external_lex_state = 2}, [482] = {.lex_state = 20, .external_lex_state = 2}, - [483] = {.lex_state = 20, .external_lex_state = 2}, + [483] = {.lex_state = 39, .external_lex_state = 2}, [484] = {.lex_state = 20, .external_lex_state = 2}, - [485] = {.lex_state = 39, .external_lex_state = 9}, - [486] = {.lex_state = 20, .external_lex_state = 2}, + [485] = {.lex_state = 20, .external_lex_state = 2}, + [486] = {.lex_state = 39, .external_lex_state = 3}, [487] = {.lex_state = 20, .external_lex_state = 2}, [488] = {.lex_state = 20, .external_lex_state = 2}, - [489] = {.lex_state = 39, .external_lex_state = 2}, - [490] = {.lex_state = 20, .external_lex_state = 2}, - [491] = {.lex_state = 39, .external_lex_state = 9}, - [492] = {.lex_state = 39, .external_lex_state = 9}, - [493] = {.lex_state = 39, .external_lex_state = 8}, + [489] = {.lex_state = 20, .external_lex_state = 2}, + [490] = {.lex_state = 39, .external_lex_state = 9}, + [491] = {.lex_state = 20, .external_lex_state = 2}, + [492] = {.lex_state = 39, .external_lex_state = 3}, + [493] = {.lex_state = 20, .external_lex_state = 2}, [494] = {.lex_state = 20, .external_lex_state = 2}, - [495] = {.lex_state = 39, .external_lex_state = 2}, - [496] = {.lex_state = 20, .external_lex_state = 2}, - [497] = {.lex_state = 39, .external_lex_state = 9}, - [498] = {.lex_state = 20, .external_lex_state = 2}, - [499] = {.lex_state = 39, .external_lex_state = 9}, - [500] = {.lex_state = 39, .external_lex_state = 9}, - [501] = {.lex_state = 39, .external_lex_state = 2}, - [502] = {.lex_state = 39, .external_lex_state = 9}, + [495] = {.lex_state = 20, .external_lex_state = 2}, + [496] = {.lex_state = 39, .external_lex_state = 9}, + [497] = {.lex_state = 20, .external_lex_state = 2}, + [498] = {.lex_state = 39, .external_lex_state = 3}, + [499] = {.lex_state = 20, .external_lex_state = 2}, + [500] = {.lex_state = 39, .external_lex_state = 4}, + [501] = {.lex_state = 20, .external_lex_state = 2}, + [502] = {.lex_state = 20, .external_lex_state = 2}, [503] = {.lex_state = 20, .external_lex_state = 2}, - [504] = {.lex_state = 39, .external_lex_state = 2}, + [504] = {.lex_state = 20, .external_lex_state = 2}, [505] = {.lex_state = 20, .external_lex_state = 2}, [506] = {.lex_state = 20, .external_lex_state = 2}, [507] = {.lex_state = 20, .external_lex_state = 2}, [508] = {.lex_state = 20, .external_lex_state = 2}, [509] = {.lex_state = 20, .external_lex_state = 2}, [510] = {.lex_state = 20, .external_lex_state = 2}, - [511] = {.lex_state = 39, .external_lex_state = 2}, + [511] = {.lex_state = 39, .external_lex_state = 3}, [512] = {.lex_state = 20, .external_lex_state = 2}, - [513] = {.lex_state = 39, .external_lex_state = 9}, - [514] = {.lex_state = 39, .external_lex_state = 9}, - [515] = {.lex_state = 39, .external_lex_state = 2}, + [513] = {.lex_state = 20, .external_lex_state = 2}, + [514] = {.lex_state = 20, .external_lex_state = 2}, + [515] = {.lex_state = 20, .external_lex_state = 2}, [516] = {.lex_state = 20, .external_lex_state = 2}, [517] = {.lex_state = 20, .external_lex_state = 2}, - [518] = {.lex_state = 39, .external_lex_state = 9}, - [519] = {.lex_state = 39, .external_lex_state = 9}, + [518] = {.lex_state = 20, .external_lex_state = 2}, + [519] = {.lex_state = 20, .external_lex_state = 2}, [520] = {.lex_state = 20, .external_lex_state = 2}, [521] = {.lex_state = 20, .external_lex_state = 2}, - [522] = {.lex_state = 39, .external_lex_state = 9}, + [522] = {.lex_state = 20, .external_lex_state = 2}, [523] = {.lex_state = 20, .external_lex_state = 2}, - [524] = {.lex_state = 20, .external_lex_state = 2}, + [524] = {.lex_state = 39, .external_lex_state = 3}, [525] = {.lex_state = 20, .external_lex_state = 2}, [526] = {.lex_state = 20, .external_lex_state = 2}, - [527] = {.lex_state = 39, .external_lex_state = 9}, - [528] = {.lex_state = 39, .external_lex_state = 2}, + [527] = {.lex_state = 20, .external_lex_state = 2}, + [528] = {.lex_state = 20, .external_lex_state = 2}, [529] = {.lex_state = 20, .external_lex_state = 2}, - [530] = {.lex_state = 39, .external_lex_state = 2}, + [530] = {.lex_state = 20, .external_lex_state = 2}, [531] = {.lex_state = 20, .external_lex_state = 2}, [532] = {.lex_state = 20, .external_lex_state = 2}, - [533] = {.lex_state = 20, .external_lex_state = 2}, - [534] = {.lex_state = 20, .external_lex_state = 2}, - [535] = {.lex_state = 20, .external_lex_state = 2}, - [536] = {.lex_state = 20, .external_lex_state = 2}, - [537] = {.lex_state = 20, .external_lex_state = 2}, - [538] = {.lex_state = 39, .external_lex_state = 5}, + [533] = {.lex_state = 39, .external_lex_state = 2}, + [534] = {.lex_state = 39, .external_lex_state = 8}, + [535] = {.lex_state = 39, .external_lex_state = 3}, + [536] = {.lex_state = 39, .external_lex_state = 2}, + [537] = {.lex_state = 39, .external_lex_state = 2}, + [538] = {.lex_state = 20, .external_lex_state = 2}, [539] = {.lex_state = 20, .external_lex_state = 2}, [540] = {.lex_state = 20, .external_lex_state = 2}, [541] = {.lex_state = 20, .external_lex_state = 2}, - [542] = {.lex_state = 20, .external_lex_state = 2}, + [542] = {.lex_state = 39, .external_lex_state = 4}, [543] = {.lex_state = 39, .external_lex_state = 2}, [544] = {.lex_state = 20, .external_lex_state = 2}, - [545] = {.lex_state = 39, .external_lex_state = 9}, - [546] = {.lex_state = 20, .external_lex_state = 2}, - [547] = {.lex_state = 39, .external_lex_state = 9}, - [548] = {.lex_state = 20, .external_lex_state = 2}, + [545] = {.lex_state = 39, .external_lex_state = 3}, + [546] = {.lex_state = 39, .external_lex_state = 4}, + [547] = {.lex_state = 20, .external_lex_state = 2}, + [548] = {.lex_state = 39, .external_lex_state = 3}, [549] = {.lex_state = 20, .external_lex_state = 2}, - [550] = {.lex_state = 39, .external_lex_state = 9}, + [550] = {.lex_state = 39, .external_lex_state = 4}, [551] = {.lex_state = 20, .external_lex_state = 2}, - [552] = {.lex_state = 20, .external_lex_state = 2}, - [553] = {.lex_state = 39, .external_lex_state = 9}, - [554] = {.lex_state = 39, .external_lex_state = 2}, - [555] = {.lex_state = 20, .external_lex_state = 2}, - [556] = {.lex_state = 20, .external_lex_state = 2}, - [557] = {.lex_state = 39, .external_lex_state = 2}, + [552] = {.lex_state = 39, .external_lex_state = 9}, + [553] = {.lex_state = 20, .external_lex_state = 2}, + [554] = {.lex_state = 20, .external_lex_state = 2}, + [555] = {.lex_state = 39, .external_lex_state = 4}, + [556] = {.lex_state = 39, .external_lex_state = 4}, + [557] = {.lex_state = 39, .external_lex_state = 4}, [558] = {.lex_state = 20, .external_lex_state = 2}, [559] = {.lex_state = 20, .external_lex_state = 2}, - [560] = {.lex_state = 39, .external_lex_state = 9}, - [561] = {.lex_state = 20, .external_lex_state = 2}, + [560] = {.lex_state = 20, .external_lex_state = 2}, + [561] = {.lex_state = 39, .external_lex_state = 4}, [562] = {.lex_state = 20, .external_lex_state = 2}, - [563] = {.lex_state = 39, .external_lex_state = 9}, + [563] = {.lex_state = 20, .external_lex_state = 2}, [564] = {.lex_state = 20, .external_lex_state = 2}, - [565] = {.lex_state = 39, .external_lex_state = 2}, - [566] = {.lex_state = 20, .external_lex_state = 2}, + [565] = {.lex_state = 39, .external_lex_state = 3}, + [566] = {.lex_state = 39, .external_lex_state = 2}, [567] = {.lex_state = 20, .external_lex_state = 2}, [568] = {.lex_state = 20, .external_lex_state = 2}, [569] = {.lex_state = 20, .external_lex_state = 2}, [570] = {.lex_state = 20, .external_lex_state = 2}, - [571] = {.lex_state = 20, .external_lex_state = 2}, + [571] = {.lex_state = 39, .external_lex_state = 4}, [572] = {.lex_state = 20, .external_lex_state = 2}, [573] = {.lex_state = 20, .external_lex_state = 2}, - [574] = {.lex_state = 20, .external_lex_state = 2}, + [574] = {.lex_state = 39, .external_lex_state = 4}, [575] = {.lex_state = 20, .external_lex_state = 2}, - [576] = {.lex_state = 20, .external_lex_state = 2}, + [576] = {.lex_state = 39, .external_lex_state = 9}, [577] = {.lex_state = 20, .external_lex_state = 2}, - [578] = {.lex_state = 20, .external_lex_state = 2}, - [579] = {.lex_state = 39, .external_lex_state = 9}, + [578] = {.lex_state = 39, .external_lex_state = 3}, + [579] = {.lex_state = 20, .external_lex_state = 2}, [580] = {.lex_state = 20, .external_lex_state = 2}, - [581] = {.lex_state = 20, .external_lex_state = 2}, + [581] = {.lex_state = 39, .external_lex_state = 2}, [582] = {.lex_state = 20, .external_lex_state = 2}, - [583] = {.lex_state = 39, .external_lex_state = 9}, + [583] = {.lex_state = 39, .external_lex_state = 2}, [584] = {.lex_state = 20, .external_lex_state = 2}, [585] = {.lex_state = 20, .external_lex_state = 2}, - [586] = {.lex_state = 20, .external_lex_state = 2}, - [587] = {.lex_state = 39, .external_lex_state = 2}, + [586] = {.lex_state = 39, .external_lex_state = 4}, + [587] = {.lex_state = 39, .external_lex_state = 9}, [588] = {.lex_state = 20, .external_lex_state = 2}, - [589] = {.lex_state = 20, .external_lex_state = 2}, + [589] = {.lex_state = 39, .external_lex_state = 9}, [590] = {.lex_state = 20, .external_lex_state = 2}, [591] = {.lex_state = 20, .external_lex_state = 2}, - [592] = {.lex_state = 20, .external_lex_state = 2}, + [592] = {.lex_state = 39, .external_lex_state = 4}, [593] = {.lex_state = 20, .external_lex_state = 2}, - [594] = {.lex_state = 39, .external_lex_state = 9}, - [595] = {.lex_state = 39, .external_lex_state = 9}, - [596] = {.lex_state = 20, .external_lex_state = 2}, - [597] = {.lex_state = 20, .external_lex_state = 2}, + [594] = {.lex_state = 20, .external_lex_state = 2}, + [595] = {.lex_state = 20, .external_lex_state = 2}, + [596] = {.lex_state = 39, .external_lex_state = 3}, + [597] = {.lex_state = 39, .external_lex_state = 9}, [598] = {.lex_state = 20, .external_lex_state = 2}, - [599] = {.lex_state = 20, .external_lex_state = 2}, - [600] = {.lex_state = 20, .external_lex_state = 2}, - [601] = {.lex_state = 20, .external_lex_state = 2}, + [599] = {.lex_state = 39, .external_lex_state = 9}, + [600] = {.lex_state = 39, .external_lex_state = 2}, + [601] = {.lex_state = 39, .external_lex_state = 4}, [602] = {.lex_state = 20, .external_lex_state = 2}, - [603] = {.lex_state = 20, .external_lex_state = 2}, - [604] = {.lex_state = 20, .external_lex_state = 2}, + [603] = {.lex_state = 39, .external_lex_state = 4}, + [604] = {.lex_state = 39, .external_lex_state = 3}, [605] = {.lex_state = 20, .external_lex_state = 2}, [606] = {.lex_state = 20, .external_lex_state = 2}, [607] = {.lex_state = 20, .external_lex_state = 2}, @@ -11757,401 +11914,401 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [609] = {.lex_state = 20, .external_lex_state = 2}, [610] = {.lex_state = 20, .external_lex_state = 2}, [611] = {.lex_state = 20, .external_lex_state = 2}, - [612] = {.lex_state = 20, .external_lex_state = 2}, - [613] = {.lex_state = 20, .external_lex_state = 2}, - [614] = {.lex_state = 20, .external_lex_state = 2}, - [615] = {.lex_state = 20, .external_lex_state = 2}, - [616] = {.lex_state = 20, .external_lex_state = 2}, + [612] = {.lex_state = 39, .external_lex_state = 3}, + [613] = {.lex_state = 39, .external_lex_state = 8}, + [614] = {.lex_state = 39, .external_lex_state = 9}, + [615] = {.lex_state = 39, .external_lex_state = 4}, + [616] = {.lex_state = 39, .external_lex_state = 3}, [617] = {.lex_state = 20, .external_lex_state = 2}, - [618] = {.lex_state = 39, .external_lex_state = 2}, - [619] = {.lex_state = 20, .external_lex_state = 2}, - [620] = {.lex_state = 20, .external_lex_state = 2}, - [621] = {.lex_state = 20, .external_lex_state = 2}, - [622] = {.lex_state = 20, .external_lex_state = 2}, - [623] = {.lex_state = 20, .external_lex_state = 2}, + [618] = {.lex_state = 39, .external_lex_state = 9}, + [619] = {.lex_state = 39, .external_lex_state = 4}, + [620] = {.lex_state = 39, .external_lex_state = 2}, + [621] = {.lex_state = 39, .external_lex_state = 4}, + [622] = {.lex_state = 39, .external_lex_state = 4}, + [623] = {.lex_state = 39, .external_lex_state = 3}, [624] = {.lex_state = 39, .external_lex_state = 9}, [625] = {.lex_state = 20, .external_lex_state = 2}, - [626] = {.lex_state = 39, .external_lex_state = 9}, + [626] = {.lex_state = 20, .external_lex_state = 2}, [627] = {.lex_state = 20, .external_lex_state = 2}, [628] = {.lex_state = 20, .external_lex_state = 2}, [629] = {.lex_state = 20, .external_lex_state = 2}, - [630] = {.lex_state = 20, .external_lex_state = 2}, - [631] = {.lex_state = 20, .external_lex_state = 2}, + [630] = {.lex_state = 39, .external_lex_state = 3}, + [631] = {.lex_state = 39, .external_lex_state = 3}, [632] = {.lex_state = 20, .external_lex_state = 2}, - [633] = {.lex_state = 20, .external_lex_state = 2}, - [634] = {.lex_state = 20, .external_lex_state = 2}, - [635] = {.lex_state = 39, .external_lex_state = 5}, - [636] = {.lex_state = 20, .external_lex_state = 2}, - [637] = {.lex_state = 20, .external_lex_state = 2}, + [633] = {.lex_state = 39, .external_lex_state = 9}, + [634] = {.lex_state = 39, .external_lex_state = 3}, + [635] = {.lex_state = 20, .external_lex_state = 2}, + [636] = {.lex_state = 39, .external_lex_state = 3}, + [637] = {.lex_state = 39, .external_lex_state = 4}, [638] = {.lex_state = 20, .external_lex_state = 2}, [639] = {.lex_state = 20, .external_lex_state = 2}, - [640] = {.lex_state = 20, .external_lex_state = 2}, - [641] = {.lex_state = 20, .external_lex_state = 2}, - [642] = {.lex_state = 39, .external_lex_state = 2}, - [643] = {.lex_state = 20, .external_lex_state = 2}, - [644] = {.lex_state = 20, .external_lex_state = 2}, + [640] = {.lex_state = 39, .external_lex_state = 3}, + [641] = {.lex_state = 39, .external_lex_state = 3}, + [642] = {.lex_state = 20, .external_lex_state = 2}, + [643] = {.lex_state = 39, .external_lex_state = 3}, + [644] = {.lex_state = 39, .external_lex_state = 9}, [645] = {.lex_state = 20, .external_lex_state = 2}, - [646] = {.lex_state = 20, .external_lex_state = 2}, - [647] = {.lex_state = 39, .external_lex_state = 2}, - [648] = {.lex_state = 20, .external_lex_state = 2}, - [649] = {.lex_state = 20, .external_lex_state = 2}, - [650] = {.lex_state = 20, .external_lex_state = 2}, + [646] = {.lex_state = 39, .external_lex_state = 2}, + [647] = {.lex_state = 20, .external_lex_state = 2}, + [648] = {.lex_state = 39, .external_lex_state = 9}, + [649] = {.lex_state = 39, .external_lex_state = 4}, + [650] = {.lex_state = 39, .external_lex_state = 9}, [651] = {.lex_state = 20, .external_lex_state = 2}, [652] = {.lex_state = 20, .external_lex_state = 2}, - [653] = {.lex_state = 39, .external_lex_state = 2}, + [653] = {.lex_state = 39, .external_lex_state = 4}, [654] = {.lex_state = 20, .external_lex_state = 2}, - [655] = {.lex_state = 20, .external_lex_state = 2}, + [655] = {.lex_state = 39, .external_lex_state = 4}, [656] = {.lex_state = 20, .external_lex_state = 2}, [657] = {.lex_state = 20, .external_lex_state = 2}, [658] = {.lex_state = 20, .external_lex_state = 2}, [659] = {.lex_state = 20, .external_lex_state = 2}, - [660] = {.lex_state = 20, .external_lex_state = 2}, + [660] = {.lex_state = 39, .external_lex_state = 4}, [661] = {.lex_state = 20, .external_lex_state = 2}, [662] = {.lex_state = 20, .external_lex_state = 2}, - [663] = {.lex_state = 20, .external_lex_state = 2}, + [663] = {.lex_state = 39, .external_lex_state = 2}, [664] = {.lex_state = 20, .external_lex_state = 2}, - [665] = {.lex_state = 39, .external_lex_state = 8}, - [666] = {.lex_state = 20, .external_lex_state = 2}, + [665] = {.lex_state = 39, .external_lex_state = 9}, + [666] = {.lex_state = 39, .external_lex_state = 4}, [667] = {.lex_state = 20, .external_lex_state = 2}, - [668] = {.lex_state = 20, .external_lex_state = 2}, - [669] = {.lex_state = 39, .external_lex_state = 9}, + [668] = {.lex_state = 39, .external_lex_state = 2}, + [669] = {.lex_state = 20, .external_lex_state = 2}, [670] = {.lex_state = 20, .external_lex_state = 2}, [671] = {.lex_state = 20, .external_lex_state = 2}, - [672] = {.lex_state = 20, .external_lex_state = 2}, - [673] = {.lex_state = 20, .external_lex_state = 2}, - [674] = {.lex_state = 20, .external_lex_state = 2}, + [672] = {.lex_state = 39, .external_lex_state = 9}, + [673] = {.lex_state = 39, .external_lex_state = 2}, + [674] = {.lex_state = 39, .external_lex_state = 9}, [675] = {.lex_state = 20, .external_lex_state = 2}, [676] = {.lex_state = 20, .external_lex_state = 2}, [677] = {.lex_state = 20, .external_lex_state = 2}, - [678] = {.lex_state = 20, .external_lex_state = 2}, - [679] = {.lex_state = 20, .external_lex_state = 2}, + [678] = {.lex_state = 39, .external_lex_state = 9}, + [679] = {.lex_state = 39, .external_lex_state = 2}, [680] = {.lex_state = 20, .external_lex_state = 2}, - [681] = {.lex_state = 20, .external_lex_state = 2}, - [682] = {.lex_state = 20, .external_lex_state = 2}, + [681] = {.lex_state = 39, .external_lex_state = 5}, + [682] = {.lex_state = 39, .external_lex_state = 9}, [683] = {.lex_state = 20, .external_lex_state = 2}, - [684] = {.lex_state = 20, .external_lex_state = 2}, - [685] = {.lex_state = 20, .external_lex_state = 2}, + [684] = {.lex_state = 39, .external_lex_state = 3}, + [685] = {.lex_state = 39, .external_lex_state = 3}, [686] = {.lex_state = 20, .external_lex_state = 2}, - [687] = {.lex_state = 20, .external_lex_state = 2}, + [687] = {.lex_state = 39, .external_lex_state = 3}, [688] = {.lex_state = 20, .external_lex_state = 2}, [689] = {.lex_state = 20, .external_lex_state = 2}, [690] = {.lex_state = 20, .external_lex_state = 2}, [691] = {.lex_state = 20, .external_lex_state = 2}, - [692] = {.lex_state = 20, .external_lex_state = 2}, + [692] = {.lex_state = 39, .external_lex_state = 4}, [693] = {.lex_state = 20, .external_lex_state = 2}, [694] = {.lex_state = 20, .external_lex_state = 2}, - [695] = {.lex_state = 20, .external_lex_state = 2}, + [695] = {.lex_state = 39, .external_lex_state = 4}, [696] = {.lex_state = 20, .external_lex_state = 2}, [697] = {.lex_state = 20, .external_lex_state = 2}, [698] = {.lex_state = 20, .external_lex_state = 2}, - [699] = {.lex_state = 20, .external_lex_state = 2}, + [699] = {.lex_state = 39, .external_lex_state = 3}, [700] = {.lex_state = 20, .external_lex_state = 2}, - [701] = {.lex_state = 39, .external_lex_state = 5}, - [702] = {.lex_state = 20, .external_lex_state = 2}, - [703] = {.lex_state = 20, .external_lex_state = 2}, + [701] = {.lex_state = 39, .external_lex_state = 4}, + [702] = {.lex_state = 39, .external_lex_state = 2}, + [703] = {.lex_state = 39, .external_lex_state = 3}, [704] = {.lex_state = 20, .external_lex_state = 2}, - [705] = {.lex_state = 20, .external_lex_state = 2}, + [705] = {.lex_state = 39, .external_lex_state = 2}, [706] = {.lex_state = 20, .external_lex_state = 2}, [707] = {.lex_state = 20, .external_lex_state = 2}, - [708] = {.lex_state = 39, .external_lex_state = 9}, + [708] = {.lex_state = 20, .external_lex_state = 2}, [709] = {.lex_state = 20, .external_lex_state = 2}, [710] = {.lex_state = 20, .external_lex_state = 2}, [711] = {.lex_state = 20, .external_lex_state = 2}, - [712] = {.lex_state = 20, .external_lex_state = 2}, + [712] = {.lex_state = 39, .external_lex_state = 3}, [713] = {.lex_state = 20, .external_lex_state = 2}, [714] = {.lex_state = 20, .external_lex_state = 2}, [715] = {.lex_state = 20, .external_lex_state = 2}, [716] = {.lex_state = 20, .external_lex_state = 2}, - [717] = {.lex_state = 39, .external_lex_state = 2}, - [718] = {.lex_state = 20, .external_lex_state = 2}, - [719] = {.lex_state = 20, .external_lex_state = 2}, - [720] = {.lex_state = 39, .external_lex_state = 9}, - [721] = {.lex_state = 39, .external_lex_state = 9}, + [717] = {.lex_state = 39, .external_lex_state = 9}, + [718] = {.lex_state = 39, .external_lex_state = 3}, + [719] = {.lex_state = 39, .external_lex_state = 4}, + [720] = {.lex_state = 39, .external_lex_state = 4}, + [721] = {.lex_state = 39, .external_lex_state = 2}, [722] = {.lex_state = 20, .external_lex_state = 2}, - [723] = {.lex_state = 39, .external_lex_state = 3}, - [724] = {.lex_state = 39, .external_lex_state = 3}, - [725] = {.lex_state = 39, .external_lex_state = 4}, - [726] = {.lex_state = 39, .external_lex_state = 4}, - [727] = {.lex_state = 39, .external_lex_state = 4}, - [728] = {.lex_state = 39, .external_lex_state = 2}, - [729] = {.lex_state = 39, .external_lex_state = 4}, - [730] = {.lex_state = 39, .external_lex_state = 4}, - [731] = {.lex_state = 39, .external_lex_state = 4}, - [732] = {.lex_state = 39, .external_lex_state = 4}, - [733] = {.lex_state = 39, .external_lex_state = 4}, + [723] = {.lex_state = 39, .external_lex_state = 4}, + [724] = {.lex_state = 20, .external_lex_state = 2}, + [725] = {.lex_state = 20, .external_lex_state = 2}, + [726] = {.lex_state = 20, .external_lex_state = 2}, + [727] = {.lex_state = 20, .external_lex_state = 2}, + [728] = {.lex_state = 20, .external_lex_state = 2}, + [729] = {.lex_state = 20, .external_lex_state = 2}, + [730] = {.lex_state = 20, .external_lex_state = 2}, + [731] = {.lex_state = 20, .external_lex_state = 2}, + [732] = {.lex_state = 20, .external_lex_state = 2}, + [733] = {.lex_state = 20, .external_lex_state = 2}, [734] = {.lex_state = 39, .external_lex_state = 4}, - [735] = {.lex_state = 39, .external_lex_state = 4}, - [736] = {.lex_state = 39, .external_lex_state = 4}, + [735] = {.lex_state = 39, .external_lex_state = 3}, + [736] = {.lex_state = 20, .external_lex_state = 2}, [737] = {.lex_state = 39, .external_lex_state = 3}, - [738] = {.lex_state = 39, .external_lex_state = 3}, - [739] = {.lex_state = 39, .external_lex_state = 3}, - [740] = {.lex_state = 39, .external_lex_state = 3}, + [738] = {.lex_state = 39, .external_lex_state = 9}, + [739] = {.lex_state = 39, .external_lex_state = 9}, + [740] = {.lex_state = 39, .external_lex_state = 9}, [741] = {.lex_state = 39, .external_lex_state = 3}, - [742] = {.lex_state = 39, .external_lex_state = 3}, - [743] = {.lex_state = 39, .external_lex_state = 3}, + [742] = {.lex_state = 39, .external_lex_state = 9}, + [743] = {.lex_state = 39, .external_lex_state = 4}, [744] = {.lex_state = 39, .external_lex_state = 3}, - [745] = {.lex_state = 39, .external_lex_state = 3}, - [746] = {.lex_state = 39, .external_lex_state = 2}, + [745] = {.lex_state = 20, .external_lex_state = 2}, + [746] = {.lex_state = 20, .external_lex_state = 2}, [747] = {.lex_state = 39, .external_lex_state = 3}, - [748] = {.lex_state = 39, .external_lex_state = 3}, - [749] = {.lex_state = 39, .external_lex_state = 3}, - [750] = {.lex_state = 39, .external_lex_state = 4}, - [751] = {.lex_state = 39, .external_lex_state = 4}, - [752] = {.lex_state = 39, .external_lex_state = 3}, - [753] = {.lex_state = 39, .external_lex_state = 3}, - [754] = {.lex_state = 39, .external_lex_state = 3}, - [755] = {.lex_state = 39, .external_lex_state = 3}, - [756] = {.lex_state = 39, .external_lex_state = 3}, - [757] = {.lex_state = 39, .external_lex_state = 3}, - [758] = {.lex_state = 39, .external_lex_state = 3}, - [759] = {.lex_state = 39, .external_lex_state = 3}, - [760] = {.lex_state = 39, .external_lex_state = 3}, - [761] = {.lex_state = 39, .external_lex_state = 3}, - [762] = {.lex_state = 39, .external_lex_state = 3}, - [763] = {.lex_state = 39, .external_lex_state = 3}, - [764] = {.lex_state = 39, .external_lex_state = 3}, - [765] = {.lex_state = 39, .external_lex_state = 3}, - [766] = {.lex_state = 39, .external_lex_state = 3}, - [767] = {.lex_state = 39, .external_lex_state = 3}, - [768] = {.lex_state = 39, .external_lex_state = 3}, - [769] = {.lex_state = 39, .external_lex_state = 3}, - [770] = {.lex_state = 39, .external_lex_state = 3}, - [771] = {.lex_state = 39, .external_lex_state = 3}, - [772] = {.lex_state = 39, .external_lex_state = 3}, - [773] = {.lex_state = 39, .external_lex_state = 3}, - [774] = {.lex_state = 39, .external_lex_state = 3}, - [775] = {.lex_state = 39, .external_lex_state = 3}, - [776] = {.lex_state = 39, .external_lex_state = 3}, - [777] = {.lex_state = 39, .external_lex_state = 3}, + [748] = {.lex_state = 20, .external_lex_state = 2}, + [749] = {.lex_state = 20, .external_lex_state = 2}, + [750] = {.lex_state = 39, .external_lex_state = 3}, + [751] = {.lex_state = 20, .external_lex_state = 2}, + [752] = {.lex_state = 39, .external_lex_state = 9}, + [753] = {.lex_state = 39, .external_lex_state = 4}, + [754] = {.lex_state = 39, .external_lex_state = 4}, + [755] = {.lex_state = 39, .external_lex_state = 4}, + [756] = {.lex_state = 20, .external_lex_state = 2}, + [757] = {.lex_state = 20, .external_lex_state = 2}, + [758] = {.lex_state = 20, .external_lex_state = 2}, + [759] = {.lex_state = 20, .external_lex_state = 2}, + [760] = {.lex_state = 20, .external_lex_state = 2}, + [761] = {.lex_state = 20, .external_lex_state = 2}, + [762] = {.lex_state = 39, .external_lex_state = 2}, + [763] = {.lex_state = 20, .external_lex_state = 2}, + [764] = {.lex_state = 20, .external_lex_state = 2}, + [765] = {.lex_state = 20, .external_lex_state = 2}, + [766] = {.lex_state = 20, .external_lex_state = 2}, + [767] = {.lex_state = 20, .external_lex_state = 2}, + [768] = {.lex_state = 20, .external_lex_state = 2}, + [769] = {.lex_state = 20, .external_lex_state = 2}, + [770] = {.lex_state = 20, .external_lex_state = 2}, + [771] = {.lex_state = 20, .external_lex_state = 2}, + [772] = {.lex_state = 20, .external_lex_state = 2}, + [773] = {.lex_state = 20, .external_lex_state = 2}, + [774] = {.lex_state = 20, .external_lex_state = 2}, + [775] = {.lex_state = 39, .external_lex_state = 9}, + [776] = {.lex_state = 20, .external_lex_state = 2}, + [777] = {.lex_state = 20, .external_lex_state = 2}, [778] = {.lex_state = 39, .external_lex_state = 3}, - [779] = {.lex_state = 39, .external_lex_state = 3}, - [780] = {.lex_state = 39, .external_lex_state = 4}, - [781] = {.lex_state = 39, .external_lex_state = 4}, - [782] = {.lex_state = 39, .external_lex_state = 4}, - [783] = {.lex_state = 39, .external_lex_state = 4}, - [784] = {.lex_state = 39, .external_lex_state = 4}, - [785] = {.lex_state = 39, .external_lex_state = 4}, - [786] = {.lex_state = 39, .external_lex_state = 4}, - [787] = {.lex_state = 39, .external_lex_state = 4}, - [788] = {.lex_state = 39, .external_lex_state = 4}, - [789] = {.lex_state = 39, .external_lex_state = 4}, - [790] = {.lex_state = 39, .external_lex_state = 4}, - [791] = {.lex_state = 39, .external_lex_state = 4}, - [792] = {.lex_state = 39, .external_lex_state = 4}, - [793] = {.lex_state = 39, .external_lex_state = 4}, - [794] = {.lex_state = 39, .external_lex_state = 4}, - [795] = {.lex_state = 39, .external_lex_state = 4}, - [796] = {.lex_state = 39, .external_lex_state = 4}, - [797] = {.lex_state = 39, .external_lex_state = 4}, - [798] = {.lex_state = 39, .external_lex_state = 4}, - [799] = {.lex_state = 39, .external_lex_state = 4}, - [800] = {.lex_state = 39, .external_lex_state = 2}, - [801] = {.lex_state = 39, .external_lex_state = 4}, - [802] = {.lex_state = 39, .external_lex_state = 4}, - [803] = {.lex_state = 39, .external_lex_state = 4}, - [804] = {.lex_state = 39, .external_lex_state = 4}, - [805] = {.lex_state = 39, .external_lex_state = 4}, - [806] = {.lex_state = 39, .external_lex_state = 4}, - [807] = {.lex_state = 39, .external_lex_state = 4}, - [808] = {.lex_state = 39, .external_lex_state = 4}, - [809] = {.lex_state = 39, .external_lex_state = 4}, - [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}, - [814] = {.lex_state = 39, .external_lex_state = 2}, - [815] = {.lex_state = 39, .external_lex_state = 2}, - [816] = {.lex_state = 39, .external_lex_state = 2}, - [817] = {.lex_state = 39, .external_lex_state = 2}, - [818] = {.lex_state = 39, .external_lex_state = 2}, - [819] = {.lex_state = 39, .external_lex_state = 2}, + [779] = {.lex_state = 20, .external_lex_state = 2}, + [780] = {.lex_state = 20, .external_lex_state = 2}, + [781] = {.lex_state = 39, .external_lex_state = 9}, + [782] = {.lex_state = 20, .external_lex_state = 2}, + [783] = {.lex_state = 20, .external_lex_state = 2}, + [784] = {.lex_state = 39, .external_lex_state = 9}, + [785] = {.lex_state = 39, .external_lex_state = 9}, + [786] = {.lex_state = 20, .external_lex_state = 2}, + [787] = {.lex_state = 20, .external_lex_state = 2}, + [788] = {.lex_state = 20, .external_lex_state = 2}, + [789] = {.lex_state = 20, .external_lex_state = 2}, + [790] = {.lex_state = 20, .external_lex_state = 2}, + [791] = {.lex_state = 20, .external_lex_state = 2}, + [792] = {.lex_state = 20, .external_lex_state = 2}, + [793] = {.lex_state = 20, .external_lex_state = 2}, + [794] = {.lex_state = 20, .external_lex_state = 2}, + [795] = {.lex_state = 39, .external_lex_state = 2}, + [796] = {.lex_state = 20, .external_lex_state = 2}, + [797] = {.lex_state = 39, .external_lex_state = 9}, + [798] = {.lex_state = 20, .external_lex_state = 2}, + [799] = {.lex_state = 20, .external_lex_state = 2}, + [800] = {.lex_state = 39, .external_lex_state = 4}, + [801] = {.lex_state = 20, .external_lex_state = 2}, + [802] = {.lex_state = 20, .external_lex_state = 2}, + [803] = {.lex_state = 20, .external_lex_state = 2}, + [804] = {.lex_state = 39, .external_lex_state = 3}, + [805] = {.lex_state = 20, .external_lex_state = 2}, + [806] = {.lex_state = 20, .external_lex_state = 2}, + [807] = {.lex_state = 20, .external_lex_state = 2}, + [808] = {.lex_state = 39, .external_lex_state = 9}, + [809] = {.lex_state = 20, .external_lex_state = 2}, + [810] = {.lex_state = 20, .external_lex_state = 2}, + [811] = {.lex_state = 39, .external_lex_state = 9}, + [812] = {.lex_state = 20, .external_lex_state = 2}, + [813] = {.lex_state = 39, .external_lex_state = 4}, + [814] = {.lex_state = 39, .external_lex_state = 4}, + [815] = {.lex_state = 39, .external_lex_state = 9}, + [816] = {.lex_state = 39, .external_lex_state = 4}, + [817] = {.lex_state = 39, .external_lex_state = 4}, + [818] = {.lex_state = 20, .external_lex_state = 2}, + [819] = {.lex_state = 20, .external_lex_state = 2}, [820] = {.lex_state = 39, .external_lex_state = 2}, [821] = {.lex_state = 39, .external_lex_state = 2}, - [822] = {.lex_state = 39, .external_lex_state = 2}, - [823] = {.lex_state = 39, .external_lex_state = 2}, - [824] = {.lex_state = 39, .external_lex_state = 2}, - [825] = {.lex_state = 39, .external_lex_state = 2}, - [826] = {.lex_state = 39, .external_lex_state = 2}, + [822] = {.lex_state = 39, .external_lex_state = 4}, + [823] = {.lex_state = 39, .external_lex_state = 4}, + [824] = {.lex_state = 39, .external_lex_state = 5}, + [825] = {.lex_state = 39, .external_lex_state = 4}, + [826] = {.lex_state = 39, .external_lex_state = 3}, [827] = {.lex_state = 39, .external_lex_state = 2}, - [828] = {.lex_state = 39, .external_lex_state = 2}, + [828] = {.lex_state = 39, .external_lex_state = 3}, [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}, - [833] = {.lex_state = 39, .external_lex_state = 2}, + [830] = {.lex_state = 39, .external_lex_state = 3}, + [831] = {.lex_state = 39, .external_lex_state = 4}, + [832] = {.lex_state = 39, .external_lex_state = 4}, + [833] = {.lex_state = 39, .external_lex_state = 4}, [834] = {.lex_state = 39, .external_lex_state = 2}, - [835] = {.lex_state = 39, .external_lex_state = 2}, - [836] = {.lex_state = 39, .external_lex_state = 2}, + [835] = {.lex_state = 39, .external_lex_state = 3}, + [836] = {.lex_state = 39, .external_lex_state = 4}, [837] = {.lex_state = 39, .external_lex_state = 2}, - [838] = {.lex_state = 39, .external_lex_state = 2}, - [839] = {.lex_state = 39, .external_lex_state = 2}, + [838] = {.lex_state = 39, .external_lex_state = 4}, + [839] = {.lex_state = 39, .external_lex_state = 5}, [840] = {.lex_state = 39, .external_lex_state = 2}, - [841] = {.lex_state = 39, .external_lex_state = 2}, + [841] = {.lex_state = 39, .external_lex_state = 4}, [842] = {.lex_state = 39, .external_lex_state = 2}, - [843] = {.lex_state = 39, .external_lex_state = 2}, - [844] = {.lex_state = 39, .external_lex_state = 2}, - [845] = {.lex_state = 39, .external_lex_state = 2}, + [843] = {.lex_state = 39, .external_lex_state = 5}, + [844] = {.lex_state = 39, .external_lex_state = 3}, + [845] = {.lex_state = 39, .external_lex_state = 3}, [846] = {.lex_state = 39, .external_lex_state = 2}, - [847] = {.lex_state = 39, .external_lex_state = 2}, + [847] = {.lex_state = 39, .external_lex_state = 4}, [848] = {.lex_state = 39, .external_lex_state = 2}, [849] = {.lex_state = 39, .external_lex_state = 2}, - [850] = {.lex_state = 39, .external_lex_state = 2}, - [851] = {.lex_state = 39, .external_lex_state = 2}, - [852] = {.lex_state = 39, .external_lex_state = 2}, - [853] = {.lex_state = 39, .external_lex_state = 2}, - [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}, - [858] = {.lex_state = 39, .external_lex_state = 2}, - [859] = {.lex_state = 39, .external_lex_state = 2}, - [860] = {.lex_state = 39, .external_lex_state = 2}, - [861] = {.lex_state = 39, .external_lex_state = 2}, - [862] = {.lex_state = 39, .external_lex_state = 2}, - [863] = {.lex_state = 39, .external_lex_state = 2}, + [850] = {.lex_state = 39, .external_lex_state = 5}, + [851] = {.lex_state = 39, .external_lex_state = 4}, + [852] = {.lex_state = 39, .external_lex_state = 4}, + [853] = {.lex_state = 39, .external_lex_state = 5}, + [854] = {.lex_state = 39, .external_lex_state = 4}, + [855] = {.lex_state = 39, .external_lex_state = 5}, + [856] = {.lex_state = 39, .external_lex_state = 4}, + [857] = {.lex_state = 39, .external_lex_state = 5}, + [858] = {.lex_state = 39, .external_lex_state = 3}, + [859] = {.lex_state = 39, .external_lex_state = 3}, + [860] = {.lex_state = 39, .external_lex_state = 3}, + [861] = {.lex_state = 39, .external_lex_state = 5}, + [862] = {.lex_state = 39, .external_lex_state = 5}, + [863] = {.lex_state = 39, .external_lex_state = 4}, [864] = {.lex_state = 39, .external_lex_state = 2}, - [865] = {.lex_state = 39, .external_lex_state = 2}, - [866] = {.lex_state = 39, .external_lex_state = 2}, - [867] = {.lex_state = 39, .external_lex_state = 2}, - [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}, + [865] = {.lex_state = 39, .external_lex_state = 3}, + [866] = {.lex_state = 39, .external_lex_state = 3}, + [867] = {.lex_state = 39, .external_lex_state = 4}, + [868] = {.lex_state = 39, .external_lex_state = 3}, + [869] = {.lex_state = 39, .external_lex_state = 3}, + [870] = {.lex_state = 39, .external_lex_state = 4}, + [871] = {.lex_state = 39, .external_lex_state = 4}, [872] = {.lex_state = 39, .external_lex_state = 2}, - [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}, - [878] = {.lex_state = 39, .external_lex_state = 2}, - [879] = {.lex_state = 39, .external_lex_state = 2}, - [880] = {.lex_state = 39, .external_lex_state = 2}, - [881] = {.lex_state = 39, .external_lex_state = 2}, - [882] = {.lex_state = 39, .external_lex_state = 2}, - [883] = {.lex_state = 39, .external_lex_state = 2}, - [884] = {.lex_state = 39, .external_lex_state = 2}, - [885] = {.lex_state = 39, .external_lex_state = 2}, - [886] = {.lex_state = 39, .external_lex_state = 2}, - [887] = {.lex_state = 39, .external_lex_state = 2}, - [888] = {.lex_state = 39, .external_lex_state = 2}, + [873] = {.lex_state = 39, .external_lex_state = 3}, + [874] = {.lex_state = 39, .external_lex_state = 3}, + [875] = {.lex_state = 39, .external_lex_state = 3}, + [876] = {.lex_state = 39, .external_lex_state = 3}, + [877] = {.lex_state = 39, .external_lex_state = 4}, + [878] = {.lex_state = 39, .external_lex_state = 5}, + [879] = {.lex_state = 39, .external_lex_state = 4}, + [880] = {.lex_state = 39, .external_lex_state = 3}, + [881] = {.lex_state = 39, .external_lex_state = 3}, + [882] = {.lex_state = 39, .external_lex_state = 3}, + [883] = {.lex_state = 39, .external_lex_state = 3}, + [884] = {.lex_state = 39, .external_lex_state = 3}, + [885] = {.lex_state = 39, .external_lex_state = 3}, + [886] = {.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 = 2}, - [890] = {.lex_state = 39, .external_lex_state = 2}, - [891] = {.lex_state = 39, .external_lex_state = 2}, - [892] = {.lex_state = 39, .external_lex_state = 2}, - [893] = {.lex_state = 39, .external_lex_state = 2}, + [890] = {.lex_state = 39, .external_lex_state = 4}, + [891] = {.lex_state = 39, .external_lex_state = 4}, + [892] = {.lex_state = 39, .external_lex_state = 3}, + [893] = {.lex_state = 39, .external_lex_state = 3}, [894] = {.lex_state = 39, .external_lex_state = 2}, - [895] = {.lex_state = 39, .external_lex_state = 2}, - [896] = {.lex_state = 39, .external_lex_state = 2}, - [897] = {.lex_state = 39, .external_lex_state = 2}, - [898] = {.lex_state = 39, .external_lex_state = 2}, - [899] = {.lex_state = 39, .external_lex_state = 2}, - [900] = {.lex_state = 39, .external_lex_state = 4}, - [901] = {.lex_state = 39, .external_lex_state = 2}, - [902] = {.lex_state = 39, .external_lex_state = 2}, + [895] = {.lex_state = 39, .external_lex_state = 4}, + [896] = {.lex_state = 39, .external_lex_state = 3}, + [897] = {.lex_state = 39, .external_lex_state = 4}, + [898] = {.lex_state = 39, .external_lex_state = 5}, + [899] = {.lex_state = 39, .external_lex_state = 5}, + [900] = {.lex_state = 39, .external_lex_state = 5}, + [901] = {.lex_state = 39, .external_lex_state = 3}, + [902] = {.lex_state = 39, .external_lex_state = 5}, [903] = {.lex_state = 39, .external_lex_state = 2}, - [904] = {.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 = 4}, [907] = {.lex_state = 39, .external_lex_state = 4}, - [908] = {.lex_state = 39, .external_lex_state = 2}, + [908] = {.lex_state = 39, .external_lex_state = 3}, [909] = {.lex_state = 39, .external_lex_state = 2}, - [910] = {.lex_state = 39, .external_lex_state = 4}, - [911] = {.lex_state = 39, .external_lex_state = 4}, - [912] = {.lex_state = 39, .external_lex_state = 4}, - [913] = {.lex_state = 39, .external_lex_state = 2}, - [914] = {.lex_state = 39, .external_lex_state = 4}, - [915] = {.lex_state = 39, .external_lex_state = 2}, - [916] = {.lex_state = 39, .external_lex_state = 4}, + [910] = {.lex_state = 39, .external_lex_state = 3}, + [911] = {.lex_state = 39, .external_lex_state = 3}, + [912] = {.lex_state = 39, .external_lex_state = 3}, + [913] = {.lex_state = 39, .external_lex_state = 3}, + [914] = {.lex_state = 39, .external_lex_state = 2}, + [915] = {.lex_state = 39, .external_lex_state = 4}, + [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 = 4}, - [920] = {.lex_state = 39, .external_lex_state = 2}, + [918] = {.lex_state = 39, .external_lex_state = 5}, + [919] = {.lex_state = 39, .external_lex_state = 2}, + [920] = {.lex_state = 39, .external_lex_state = 3}, [921] = {.lex_state = 39, .external_lex_state = 4}, [922] = {.lex_state = 39, .external_lex_state = 2}, [923] = {.lex_state = 39, .external_lex_state = 2}, - [924] = {.lex_state = 39, .external_lex_state = 2}, - [925] = {.lex_state = 39, .external_lex_state = 2}, + [924] = {.lex_state = 39, .external_lex_state = 3}, + [925] = {.lex_state = 39, .external_lex_state = 3}, [926] = {.lex_state = 39, .external_lex_state = 2}, [927] = {.lex_state = 39, .external_lex_state = 2}, [928] = {.lex_state = 39, .external_lex_state = 2}, - [929] = {.lex_state = 39, .external_lex_state = 2}, - [930] = {.lex_state = 39, .external_lex_state = 2}, - [931] = {.lex_state = 39, .external_lex_state = 2}, + [929] = {.lex_state = 39, .external_lex_state = 4}, + [930] = {.lex_state = 39, .external_lex_state = 4}, + [931] = {.lex_state = 39, .external_lex_state = 4}, [932] = {.lex_state = 39, .external_lex_state = 2}, [933] = {.lex_state = 39, .external_lex_state = 2}, [934] = {.lex_state = 39, .external_lex_state = 2}, [935] = {.lex_state = 39, .external_lex_state = 2}, - [936] = {.lex_state = 39, .external_lex_state = 2}, - [937] = {.lex_state = 39, .external_lex_state = 2}, - [938] = {.lex_state = 39, .external_lex_state = 2}, + [936] = {.lex_state = 39, .external_lex_state = 3}, + [937] = {.lex_state = 39, .external_lex_state = 4}, + [938] = {.lex_state = 39, .external_lex_state = 4}, [939] = {.lex_state = 39, .external_lex_state = 2}, - [940] = {.lex_state = 39, .external_lex_state = 2}, - [941] = {.lex_state = 39, .external_lex_state = 2}, + [940] = {.lex_state = 39, .external_lex_state = 4}, + [941] = {.lex_state = 39, .external_lex_state = 5}, [942] = {.lex_state = 39, .external_lex_state = 2}, - [943] = {.lex_state = 39, .external_lex_state = 2}, - [944] = {.lex_state = 39, .external_lex_state = 2}, + [943] = {.lex_state = 39, .external_lex_state = 4}, + [944] = {.lex_state = 39, .external_lex_state = 3}, [945] = {.lex_state = 39, .external_lex_state = 2}, - [946] = {.lex_state = 39, .external_lex_state = 2}, - [947] = {.lex_state = 39, .external_lex_state = 2}, + [946] = {.lex_state = 39, .external_lex_state = 3}, + [947] = {.lex_state = 39, .external_lex_state = 5}, [948] = {.lex_state = 39, .external_lex_state = 2}, - [949] = {.lex_state = 39, .external_lex_state = 2}, - [950] = {.lex_state = 39, .external_lex_state = 2}, + [949] = {.lex_state = 39, .external_lex_state = 5}, + [950] = {.lex_state = 39, .external_lex_state = 5}, [951] = {.lex_state = 39, .external_lex_state = 2}, - [952] = {.lex_state = 39, .external_lex_state = 2}, - [953] = {.lex_state = 39, .external_lex_state = 2}, + [952] = {.lex_state = 39, .external_lex_state = 5}, + [953] = {.lex_state = 39, .external_lex_state = 3}, [954] = {.lex_state = 39, .external_lex_state = 2}, - [955] = {.lex_state = 39, .external_lex_state = 2}, - [956] = {.lex_state = 39, .external_lex_state = 2}, - [957] = {.lex_state = 39, .external_lex_state = 2}, - [958] = {.lex_state = 39, .external_lex_state = 2}, - [959] = {.lex_state = 39, .external_lex_state = 2}, - [960] = {.lex_state = 39, .external_lex_state = 2}, - [961] = {.lex_state = 39, .external_lex_state = 2}, - [962] = {.lex_state = 39, .external_lex_state = 2}, - [963] = {.lex_state = 39, .external_lex_state = 2}, - [964] = {.lex_state = 39, .external_lex_state = 2}, - [965] = {.lex_state = 39, .external_lex_state = 2}, - [966] = {.lex_state = 39, .external_lex_state = 2}, - [967] = {.lex_state = 39, .external_lex_state = 2}, - [968] = {.lex_state = 39, .external_lex_state = 2}, - [969] = {.lex_state = 39, .external_lex_state = 2}, - [970] = {.lex_state = 39, .external_lex_state = 2}, + [955] = {.lex_state = 39, .external_lex_state = 4}, + [956] = {.lex_state = 39, .external_lex_state = 4}, + [957] = {.lex_state = 39, .external_lex_state = 4}, + [958] = {.lex_state = 39, .external_lex_state = 3}, + [959] = {.lex_state = 39, .external_lex_state = 5}, + [960] = {.lex_state = 39, .external_lex_state = 5}, + [961] = {.lex_state = 39, .external_lex_state = 5}, + [962] = {.lex_state = 39, .external_lex_state = 5}, + [963] = {.lex_state = 39, .external_lex_state = 4}, + [964] = {.lex_state = 39, .external_lex_state = 5}, + [965] = {.lex_state = 39, .external_lex_state = 4}, + [966] = {.lex_state = 39, .external_lex_state = 4}, + [967] = {.lex_state = 39, .external_lex_state = 4}, + [968] = {.lex_state = 39, .external_lex_state = 4}, + [969] = {.lex_state = 39, .external_lex_state = 3}, + [970] = {.lex_state = 39, .external_lex_state = 5}, [971] = {.lex_state = 39, .external_lex_state = 2}, - [972] = {.lex_state = 39, .external_lex_state = 2}, - [973] = {.lex_state = 39, .external_lex_state = 2}, - [974] = {.lex_state = 39, .external_lex_state = 2}, - [975] = {.lex_state = 39, .external_lex_state = 2}, - [976] = {.lex_state = 39, .external_lex_state = 2}, - [977] = {.lex_state = 39, .external_lex_state = 2}, - [978] = {.lex_state = 39, .external_lex_state = 2}, - [979] = {.lex_state = 39, .external_lex_state = 2}, - [980] = {.lex_state = 39, .external_lex_state = 2}, - [981] = {.lex_state = 39, .external_lex_state = 2}, - [982] = {.lex_state = 39, .external_lex_state = 2}, - [983] = {.lex_state = 39, .external_lex_state = 2}, - [984] = {.lex_state = 39, .external_lex_state = 2}, + [972] = {.lex_state = 39, .external_lex_state = 3}, + [973] = {.lex_state = 39, .external_lex_state = 5}, + [974] = {.lex_state = 39, .external_lex_state = 3}, + [975] = {.lex_state = 39, .external_lex_state = 5}, + [976] = {.lex_state = 39, .external_lex_state = 5}, + [977] = {.lex_state = 39, .external_lex_state = 5}, + [978] = {.lex_state = 39, .external_lex_state = 4}, + [979] = {.lex_state = 39, .external_lex_state = 5}, + [980] = {.lex_state = 39, .external_lex_state = 5}, + [981] = {.lex_state = 39, .external_lex_state = 5}, + [982] = {.lex_state = 39, .external_lex_state = 5}, + [983] = {.lex_state = 39, .external_lex_state = 5}, + [984] = {.lex_state = 39, .external_lex_state = 5}, [985] = {.lex_state = 39, .external_lex_state = 2}, - [986] = {.lex_state = 39, .external_lex_state = 2}, - [987] = {.lex_state = 39, .external_lex_state = 2}, - [988] = {.lex_state = 39, .external_lex_state = 2}, - [989] = {.lex_state = 39, .external_lex_state = 5}, + [986] = {.lex_state = 39, .external_lex_state = 3}, + [987] = {.lex_state = 39, .external_lex_state = 5}, + [988] = {.lex_state = 39, .external_lex_state = 5}, + [989] = {.lex_state = 39, .external_lex_state = 4}, [990] = {.lex_state = 39, .external_lex_state = 2}, - [991] = {.lex_state = 39, .external_lex_state = 2}, - [992] = {.lex_state = 39, .external_lex_state = 5}, - [993] = {.lex_state = 39, .external_lex_state = 5}, - [994] = {.lex_state = 39, .external_lex_state = 2}, - [995] = {.lex_state = 39, .external_lex_state = 5}, - [996] = {.lex_state = 39, .external_lex_state = 5}, - [997] = {.lex_state = 39, .external_lex_state = 5}, - [998] = {.lex_state = 39, .external_lex_state = 2}, - [999] = {.lex_state = 39, .external_lex_state = 2}, - [1000] = {.lex_state = 39, .external_lex_state = 2}, - [1001] = {.lex_state = 39, .external_lex_state = 2}, - [1002] = {.lex_state = 39, .external_lex_state = 5}, - [1003] = {.lex_state = 39, .external_lex_state = 5}, - [1004] = {.lex_state = 39, .external_lex_state = 5}, + [991] = {.lex_state = 39, .external_lex_state = 3}, + [992] = {.lex_state = 39, .external_lex_state = 3}, + [993] = {.lex_state = 39, .external_lex_state = 2}, + [994] = {.lex_state = 39, .external_lex_state = 5}, + [995] = {.lex_state = 39, .external_lex_state = 2}, + [996] = {.lex_state = 39, .external_lex_state = 2}, + [997] = {.lex_state = 39, .external_lex_state = 4}, + [998] = {.lex_state = 39, .external_lex_state = 4}, + [999] = {.lex_state = 39, .external_lex_state = 4}, + [1000] = {.lex_state = 39, .external_lex_state = 4}, + [1001] = {.lex_state = 39, .external_lex_state = 5}, + [1002] = {.lex_state = 39, .external_lex_state = 3}, + [1003] = {.lex_state = 39, .external_lex_state = 4}, + [1004] = {.lex_state = 39, .external_lex_state = 4}, [1005] = {.lex_state = 39, .external_lex_state = 2}, - [1006] = {.lex_state = 39, .external_lex_state = 5}, + [1006] = {.lex_state = 39, .external_lex_state = 2}, [1007] = {.lex_state = 39, .external_lex_state = 2}, [1008] = {.lex_state = 39, .external_lex_state = 2}, [1009] = {.lex_state = 39, .external_lex_state = 2}, @@ -12173,25 +12330,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1025] = {.lex_state = 39, .external_lex_state = 2}, [1026] = {.lex_state = 39, .external_lex_state = 2}, [1027] = {.lex_state = 39, .external_lex_state = 2}, - [1028] = {.lex_state = 39, .external_lex_state = 3}, + [1028] = {.lex_state = 39, .external_lex_state = 2}, [1029] = {.lex_state = 39, .external_lex_state = 2}, [1030] = {.lex_state = 39, .external_lex_state = 2}, - [1031] = {.lex_state = 39, .external_lex_state = 3}, - [1032] = {.lex_state = 39, .external_lex_state = 3}, - [1033] = {.lex_state = 39, .external_lex_state = 3}, + [1031] = {.lex_state = 39, .external_lex_state = 2}, + [1032] = {.lex_state = 39, .external_lex_state = 2}, + [1033] = {.lex_state = 39, .external_lex_state = 2}, [1034] = {.lex_state = 39, .external_lex_state = 2}, [1035] = {.lex_state = 39, .external_lex_state = 2}, - [1036] = {.lex_state = 39, .external_lex_state = 3}, - [1037] = {.lex_state = 39, .external_lex_state = 3}, - [1038] = {.lex_state = 39, .external_lex_state = 3}, + [1036] = {.lex_state = 39, .external_lex_state = 2}, + [1037] = {.lex_state = 39, .external_lex_state = 2}, + [1038] = {.lex_state = 39, .external_lex_state = 2}, [1039] = {.lex_state = 39, .external_lex_state = 2}, - [1040] = {.lex_state = 39, .external_lex_state = 3}, + [1040] = {.lex_state = 39, .external_lex_state = 2}, [1041] = {.lex_state = 39, .external_lex_state = 2}, [1042] = {.lex_state = 39, .external_lex_state = 2}, - [1043] = {.lex_state = 39, .external_lex_state = 3}, + [1043] = {.lex_state = 39, .external_lex_state = 2}, [1044] = {.lex_state = 39, .external_lex_state = 2}, [1045] = {.lex_state = 39, .external_lex_state = 2}, - [1046] = {.lex_state = 39, .external_lex_state = 3}, + [1046] = {.lex_state = 39, .external_lex_state = 2}, [1047] = {.lex_state = 39, .external_lex_state = 2}, [1048] = {.lex_state = 39, .external_lex_state = 2}, [1049] = {.lex_state = 39, .external_lex_state = 2}, @@ -12200,7 +12357,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1052] = {.lex_state = 39, .external_lex_state = 2}, [1053] = {.lex_state = 39, .external_lex_state = 2}, [1054] = {.lex_state = 39, .external_lex_state = 2}, - [1055] = {.lex_state = 39, .external_lex_state = 2}, + [1055] = {.lex_state = 39, .external_lex_state = 4}, [1056] = {.lex_state = 39, .external_lex_state = 2}, [1057] = {.lex_state = 39, .external_lex_state = 2}, [1058] = {.lex_state = 39, .external_lex_state = 2}, @@ -12223,10 +12380,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1075] = {.lex_state = 39, .external_lex_state = 2}, [1076] = {.lex_state = 39, .external_lex_state = 2}, [1077] = {.lex_state = 39, .external_lex_state = 2}, - [1078] = {.lex_state = 39, .external_lex_state = 4}, + [1078] = {.lex_state = 39, .external_lex_state = 2}, [1079] = {.lex_state = 39, .external_lex_state = 2}, - [1080] = {.lex_state = 39, .external_lex_state = 4}, - [1081] = {.lex_state = 39, .external_lex_state = 2}, + [1080] = {.lex_state = 39, .external_lex_state = 2}, + [1081] = {.lex_state = 39, .external_lex_state = 5}, [1082] = {.lex_state = 39, .external_lex_state = 2}, [1083] = {.lex_state = 39, .external_lex_state = 2}, [1084] = {.lex_state = 39, .external_lex_state = 2}, @@ -12239,7 +12396,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1091] = {.lex_state = 39, .external_lex_state = 2}, [1092] = {.lex_state = 39, .external_lex_state = 2}, [1093] = {.lex_state = 39, .external_lex_state = 2}, - [1094] = {.lex_state = 39, .external_lex_state = 4}, + [1094] = {.lex_state = 39, .external_lex_state = 2}, [1095] = {.lex_state = 39, .external_lex_state = 2}, [1096] = {.lex_state = 39, .external_lex_state = 2}, [1097] = {.lex_state = 39, .external_lex_state = 2}, @@ -12261,7 +12418,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1113] = {.lex_state = 39, .external_lex_state = 2}, [1114] = {.lex_state = 39, .external_lex_state = 2}, [1115] = {.lex_state = 39, .external_lex_state = 2}, - [1116] = {.lex_state = 39, .external_lex_state = 2}, + [1116] = {.lex_state = 39, .external_lex_state = 5}, [1117] = {.lex_state = 39, .external_lex_state = 2}, [1118] = {.lex_state = 39, .external_lex_state = 2}, [1119] = {.lex_state = 39, .external_lex_state = 2}, @@ -12270,11 +12427,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1122] = {.lex_state = 39, .external_lex_state = 2}, [1123] = {.lex_state = 39, .external_lex_state = 2}, [1124] = {.lex_state = 39, .external_lex_state = 2}, - [1125] = {.lex_state = 39, .external_lex_state = 5}, + [1125] = {.lex_state = 39, .external_lex_state = 2}, [1126] = {.lex_state = 39, .external_lex_state = 2}, - [1127] = {.lex_state = 39, .external_lex_state = 3}, + [1127] = {.lex_state = 39, .external_lex_state = 2}, [1128] = {.lex_state = 39, .external_lex_state = 2}, - [1129] = {.lex_state = 39, .external_lex_state = 3}, + [1129] = {.lex_state = 39, .external_lex_state = 2}, [1130] = {.lex_state = 39, .external_lex_state = 2}, [1131] = {.lex_state = 39, .external_lex_state = 2}, [1132] = {.lex_state = 39, .external_lex_state = 2}, @@ -12289,7 +12446,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1141] = {.lex_state = 39, .external_lex_state = 2}, [1142] = {.lex_state = 39, .external_lex_state = 2}, [1143] = {.lex_state = 39, .external_lex_state = 2}, - [1144] = {.lex_state = 39, .external_lex_state = 4}, + [1144] = {.lex_state = 39, .external_lex_state = 2}, [1145] = {.lex_state = 39, .external_lex_state = 2}, [1146] = {.lex_state = 39, .external_lex_state = 2}, [1147] = {.lex_state = 39, .external_lex_state = 2}, @@ -12300,7 +12457,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1152] = {.lex_state = 39, .external_lex_state = 2}, [1153] = {.lex_state = 39, .external_lex_state = 2}, [1154] = {.lex_state = 39, .external_lex_state = 2}, - [1155] = {.lex_state = 39, .external_lex_state = 5}, + [1155] = {.lex_state = 39, .external_lex_state = 2}, [1156] = {.lex_state = 39, .external_lex_state = 2}, [1157] = {.lex_state = 39, .external_lex_state = 2}, [1158] = {.lex_state = 39, .external_lex_state = 2}, @@ -12312,58 +12469,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1164] = {.lex_state = 39, .external_lex_state = 2}, [1165] = {.lex_state = 39, .external_lex_state = 2}, [1166] = {.lex_state = 39, .external_lex_state = 2}, - [1167] = {.lex_state = 39, .external_lex_state = 2}, + [1167] = {.lex_state = 39, .external_lex_state = 5}, [1168] = {.lex_state = 39, .external_lex_state = 2}, [1169] = {.lex_state = 39, .external_lex_state = 2}, [1170] = {.lex_state = 39, .external_lex_state = 2}, [1171] = {.lex_state = 39, .external_lex_state = 2}, [1172] = {.lex_state = 39, .external_lex_state = 2}, - [1173] = {.lex_state = 39, .external_lex_state = 3}, + [1173] = {.lex_state = 39, .external_lex_state = 5}, [1174] = {.lex_state = 39, .external_lex_state = 2}, [1175] = {.lex_state = 39, .external_lex_state = 2}, [1176] = {.lex_state = 39, .external_lex_state = 2}, [1177] = {.lex_state = 39, .external_lex_state = 2}, [1178] = {.lex_state = 39, .external_lex_state = 2}, [1179] = {.lex_state = 39, .external_lex_state = 2}, - [1180] = {.lex_state = 39, .external_lex_state = 2}, + [1180] = {.lex_state = 39, .external_lex_state = 5}, [1181] = {.lex_state = 39, .external_lex_state = 2}, - [1182] = {.lex_state = 39, .external_lex_state = 2}, + [1182] = {.lex_state = 39, .external_lex_state = 5}, [1183] = {.lex_state = 39, .external_lex_state = 2}, - [1184] = {.lex_state = 39, .external_lex_state = 2}, - [1185] = {.lex_state = 39, .external_lex_state = 2}, + [1184] = {.lex_state = 39, .external_lex_state = 5}, + [1185] = {.lex_state = 39, .external_lex_state = 5}, [1186] = {.lex_state = 39, .external_lex_state = 2}, - [1187] = {.lex_state = 39, .external_lex_state = 4}, + [1187] = {.lex_state = 39, .external_lex_state = 2}, [1188] = {.lex_state = 39, .external_lex_state = 2}, [1189] = {.lex_state = 39, .external_lex_state = 2}, [1190] = {.lex_state = 39, .external_lex_state = 2}, [1191] = {.lex_state = 39, .external_lex_state = 2}, [1192] = {.lex_state = 39, .external_lex_state = 2}, [1193] = {.lex_state = 39, .external_lex_state = 2}, - [1194] = {.lex_state = 39, .external_lex_state = 4}, + [1194] = {.lex_state = 39, .external_lex_state = 2}, [1195] = {.lex_state = 39, .external_lex_state = 2}, - [1196] = {.lex_state = 39, .external_lex_state = 2}, + [1196] = {.lex_state = 39, .external_lex_state = 4}, [1197] = {.lex_state = 39, .external_lex_state = 2}, - [1198] = {.lex_state = 39, .external_lex_state = 5}, - [1199] = {.lex_state = 39, .external_lex_state = 3}, + [1198] = {.lex_state = 39, .external_lex_state = 2}, + [1199] = {.lex_state = 39, .external_lex_state = 2}, [1200] = {.lex_state = 39, .external_lex_state = 2}, [1201] = {.lex_state = 39, .external_lex_state = 2}, - [1202] = {.lex_state = 39, .external_lex_state = 5}, + [1202] = {.lex_state = 39, .external_lex_state = 2}, [1203] = {.lex_state = 39, .external_lex_state = 2}, [1204] = {.lex_state = 39, .external_lex_state = 2}, [1205] = {.lex_state = 39, .external_lex_state = 2}, - [1206] = {.lex_state = 39, .external_lex_state = 3}, + [1206] = {.lex_state = 39, .external_lex_state = 5}, [1207] = {.lex_state = 39, .external_lex_state = 2}, [1208] = {.lex_state = 39, .external_lex_state = 2}, - [1209] = {.lex_state = 39, .external_lex_state = 5}, - [1210] = {.lex_state = 39, .external_lex_state = 3}, - [1211] = {.lex_state = 39, .external_lex_state = 3}, - [1212] = {.lex_state = 39, .external_lex_state = 2}, - [1213] = {.lex_state = 39, .external_lex_state = 2}, + [1209] = {.lex_state = 39, .external_lex_state = 2}, + [1210] = {.lex_state = 39, .external_lex_state = 2}, + [1211] = {.lex_state = 39, .external_lex_state = 5}, + [1212] = {.lex_state = 39, .external_lex_state = 5}, + [1213] = {.lex_state = 39, .external_lex_state = 5}, [1214] = {.lex_state = 39, .external_lex_state = 2}, [1215] = {.lex_state = 39, .external_lex_state = 2}, [1216] = {.lex_state = 39, .external_lex_state = 2}, [1217] = {.lex_state = 39, .external_lex_state = 2}, - [1218] = {.lex_state = 39, .external_lex_state = 2}, + [1218] = {.lex_state = 39, .external_lex_state = 5}, [1219] = {.lex_state = 39, .external_lex_state = 2}, [1220] = {.lex_state = 39, .external_lex_state = 2}, [1221] = {.lex_state = 39, .external_lex_state = 2}, @@ -12373,7 +12530,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1225] = {.lex_state = 39, .external_lex_state = 2}, [1226] = {.lex_state = 39, .external_lex_state = 2}, [1227] = {.lex_state = 39, .external_lex_state = 2}, - [1228] = {.lex_state = 39, .external_lex_state = 2}, + [1228] = {.lex_state = 39, .external_lex_state = 5}, [1229] = {.lex_state = 39, .external_lex_state = 2}, [1230] = {.lex_state = 39, .external_lex_state = 2}, [1231] = {.lex_state = 39, .external_lex_state = 2}, @@ -12386,7 +12543,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1238] = {.lex_state = 39, .external_lex_state = 4}, [1239] = {.lex_state = 39, .external_lex_state = 2}, [1240] = {.lex_state = 39, .external_lex_state = 2}, - [1241] = {.lex_state = 39, .external_lex_state = 2}, + [1241] = {.lex_state = 39, .external_lex_state = 4}, [1242] = {.lex_state = 39, .external_lex_state = 2}, [1243] = {.lex_state = 39, .external_lex_state = 2}, [1244] = {.lex_state = 39, .external_lex_state = 2}, @@ -12394,14 +12551,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1246] = {.lex_state = 39, .external_lex_state = 2}, [1247] = {.lex_state = 39, .external_lex_state = 2}, [1248] = {.lex_state = 39, .external_lex_state = 2}, - [1249] = {.lex_state = 39, .external_lex_state = 5}, + [1249] = {.lex_state = 39, .external_lex_state = 2}, [1250] = {.lex_state = 39, .external_lex_state = 2}, - [1251] = {.lex_state = 39, .external_lex_state = 2}, + [1251] = {.lex_state = 39, .external_lex_state = 4}, [1252] = {.lex_state = 39, .external_lex_state = 2}, - [1253] = {.lex_state = 39, .external_lex_state = 2}, - [1254] = {.lex_state = 39, .external_lex_state = 2}, + [1253] = {.lex_state = 39, .external_lex_state = 4}, + [1254] = {.lex_state = 39, .external_lex_state = 4}, [1255] = {.lex_state = 39, .external_lex_state = 2}, - [1256] = {.lex_state = 39, .external_lex_state = 2}, + [1256] = {.lex_state = 39, .external_lex_state = 4}, [1257] = {.lex_state = 39, .external_lex_state = 2}, [1258] = {.lex_state = 39, .external_lex_state = 2}, [1259] = {.lex_state = 39, .external_lex_state = 2}, @@ -12410,7 +12567,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1262] = {.lex_state = 39, .external_lex_state = 2}, [1263] = {.lex_state = 39, .external_lex_state = 2}, [1264] = {.lex_state = 39, .external_lex_state = 2}, - [1265] = {.lex_state = 39, .external_lex_state = 3}, + [1265] = {.lex_state = 39, .external_lex_state = 2}, [1266] = {.lex_state = 39, .external_lex_state = 2}, [1267] = {.lex_state = 39, .external_lex_state = 2}, [1268] = {.lex_state = 39, .external_lex_state = 2}, @@ -12421,9 +12578,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 39, .external_lex_state = 2}, [1274] = {.lex_state = 39, .external_lex_state = 2}, [1275] = {.lex_state = 39, .external_lex_state = 2}, - [1276] = {.lex_state = 39, .external_lex_state = 2}, - [1277] = {.lex_state = 39, .external_lex_state = 2}, - [1278] = {.lex_state = 39, .external_lex_state = 2}, + [1276] = {.lex_state = 39, .external_lex_state = 4}, + [1277] = {.lex_state = 39, .external_lex_state = 4}, + [1278] = {.lex_state = 39, .external_lex_state = 5}, [1279] = {.lex_state = 39, .external_lex_state = 2}, [1280] = {.lex_state = 39, .external_lex_state = 2}, [1281] = {.lex_state = 39, .external_lex_state = 2}, @@ -12462,215 +12619,215 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1314] = {.lex_state = 39, .external_lex_state = 2}, [1315] = {.lex_state = 39, .external_lex_state = 2}, [1316] = {.lex_state = 39, .external_lex_state = 2}, - [1317] = {.lex_state = 39, .external_lex_state = 4}, - [1318] = {.lex_state = 39, .external_lex_state = 2}, - [1319] = {.lex_state = 39, .external_lex_state = 2}, + [1317] = {.lex_state = 39, .external_lex_state = 2}, + [1318] = {.lex_state = 39, .external_lex_state = 4}, + [1319] = {.lex_state = 39, .external_lex_state = 4}, [1320] = {.lex_state = 39, .external_lex_state = 2}, [1321] = {.lex_state = 39, .external_lex_state = 2}, - [1322] = {.lex_state = 39, .external_lex_state = 2}, - [1323] = {.lex_state = 39, .external_lex_state = 2}, - [1324] = {.lex_state = 39, .external_lex_state = 2}, + [1322] = {.lex_state = 39, .external_lex_state = 4}, + [1323] = {.lex_state = 39, .external_lex_state = 3}, + [1324] = {.lex_state = 39, .external_lex_state = 4}, [1325] = {.lex_state = 39, .external_lex_state = 2}, [1326] = {.lex_state = 39, .external_lex_state = 2}, [1327] = {.lex_state = 39, .external_lex_state = 2}, - [1328] = {.lex_state = 39, .external_lex_state = 2}, - [1329] = {.lex_state = 39, .external_lex_state = 2}, - [1330] = {.lex_state = 39, .external_lex_state = 2}, - [1331] = {.lex_state = 39, .external_lex_state = 2}, + [1328] = {.lex_state = 39, .external_lex_state = 4}, + [1329] = {.lex_state = 39, .external_lex_state = 4}, + [1330] = {.lex_state = 39, .external_lex_state = 4}, + [1331] = {.lex_state = 39, .external_lex_state = 4}, [1332] = {.lex_state = 39, .external_lex_state = 2}, - [1333] = {.lex_state = 39, .external_lex_state = 2}, + [1333] = {.lex_state = 39, .external_lex_state = 4}, [1334] = {.lex_state = 39, .external_lex_state = 2}, - [1335] = {.lex_state = 39, .external_lex_state = 2}, + [1335] = {.lex_state = 39, .external_lex_state = 3}, [1336] = {.lex_state = 39, .external_lex_state = 2}, - [1337] = {.lex_state = 39, .external_lex_state = 2}, + [1337] = {.lex_state = 39, .external_lex_state = 4}, [1338] = {.lex_state = 39, .external_lex_state = 2}, [1339] = {.lex_state = 39, .external_lex_state = 2}, - [1340] = {.lex_state = 39, .external_lex_state = 2}, + [1340] = {.lex_state = 39, .external_lex_state = 3}, [1341] = {.lex_state = 39, .external_lex_state = 2}, [1342] = {.lex_state = 39, .external_lex_state = 2}, - [1343] = {.lex_state = 39, .external_lex_state = 2}, - [1344] = {.lex_state = 39, .external_lex_state = 2}, + [1343] = {.lex_state = 39, .external_lex_state = 3}, + [1344] = {.lex_state = 39, .external_lex_state = 4}, [1345] = {.lex_state = 39, .external_lex_state = 2}, - [1346] = {.lex_state = 39, .external_lex_state = 2}, - [1347] = {.lex_state = 39, .external_lex_state = 2}, + [1346] = {.lex_state = 39, .external_lex_state = 3}, + [1347] = {.lex_state = 39, .external_lex_state = 3}, [1348] = {.lex_state = 39, .external_lex_state = 2}, - [1349] = {.lex_state = 39, .external_lex_state = 2}, - [1350] = {.lex_state = 39, .external_lex_state = 2}, + [1349] = {.lex_state = 39, .external_lex_state = 3}, + [1350] = {.lex_state = 39, .external_lex_state = 4}, [1351] = {.lex_state = 39, .external_lex_state = 2}, - [1352] = {.lex_state = 39, .external_lex_state = 2}, + [1352] = {.lex_state = 39, .external_lex_state = 3}, [1353] = {.lex_state = 39, .external_lex_state = 2}, [1354] = {.lex_state = 39, .external_lex_state = 2}, [1355] = {.lex_state = 39, .external_lex_state = 2}, [1356] = {.lex_state = 39, .external_lex_state = 2}, - [1357] = {.lex_state = 39, .external_lex_state = 2}, - [1358] = {.lex_state = 39, .external_lex_state = 2}, - [1359] = {.lex_state = 39, .external_lex_state = 2}, - [1360] = {.lex_state = 39, .external_lex_state = 2}, - [1361] = {.lex_state = 39, .external_lex_state = 4}, + [1357] = {.lex_state = 39, .external_lex_state = 3}, + [1358] = {.lex_state = 39, .external_lex_state = 3}, + [1359] = {.lex_state = 39, .external_lex_state = 5}, + [1360] = {.lex_state = 39, .external_lex_state = 4}, + [1361] = {.lex_state = 39, .external_lex_state = 2}, [1362] = {.lex_state = 39, .external_lex_state = 2}, [1363] = {.lex_state = 39, .external_lex_state = 2}, [1364] = {.lex_state = 39, .external_lex_state = 2}, - [1365] = {.lex_state = 39, .external_lex_state = 3}, + [1365] = {.lex_state = 39, .external_lex_state = 4}, [1366] = {.lex_state = 39, .external_lex_state = 2}, [1367] = {.lex_state = 39, .external_lex_state = 2}, [1368] = {.lex_state = 39, .external_lex_state = 2}, [1369] = {.lex_state = 39, .external_lex_state = 2}, [1370] = {.lex_state = 39, .external_lex_state = 2}, - [1371] = {.lex_state = 39, .external_lex_state = 4}, + [1371] = {.lex_state = 39, .external_lex_state = 2}, [1372] = {.lex_state = 39, .external_lex_state = 2}, [1373] = {.lex_state = 39, .external_lex_state = 2}, - [1374] = {.lex_state = 39, .external_lex_state = 2}, - [1375] = {.lex_state = 39, .external_lex_state = 2}, - [1376] = {.lex_state = 39, .external_lex_state = 2}, + [1374] = {.lex_state = 39, .external_lex_state = 3}, + [1375] = {.lex_state = 39, .external_lex_state = 4}, + [1376] = {.lex_state = 39, .external_lex_state = 3}, [1377] = {.lex_state = 39, .external_lex_state = 2}, [1378] = {.lex_state = 39, .external_lex_state = 2}, - [1379] = {.lex_state = 39, .external_lex_state = 2}, - [1380] = {.lex_state = 39, .external_lex_state = 2}, - [1381] = {.lex_state = 39, .external_lex_state = 2}, - [1382] = {.lex_state = 39, .external_lex_state = 2}, - [1383] = {.lex_state = 39, .external_lex_state = 2}, + [1379] = {.lex_state = 39, .external_lex_state = 3}, + [1380] = {.lex_state = 39, .external_lex_state = 3}, + [1381] = {.lex_state = 39, .external_lex_state = 3}, + [1382] = {.lex_state = 39, .external_lex_state = 3}, + [1383] = {.lex_state = 39, .external_lex_state = 3}, [1384] = {.lex_state = 39, .external_lex_state = 2}, [1385] = {.lex_state = 39, .external_lex_state = 2}, [1386] = {.lex_state = 39, .external_lex_state = 2}, - [1387] = {.lex_state = 39, .external_lex_state = 2}, - [1388] = {.lex_state = 39, .external_lex_state = 2}, + [1387] = {.lex_state = 39, .external_lex_state = 5}, + [1388] = {.lex_state = 39, .external_lex_state = 3}, [1389] = {.lex_state = 39, .external_lex_state = 2}, - [1390] = {.lex_state = 39, .external_lex_state = 2}, + [1390] = {.lex_state = 39, .external_lex_state = 3}, [1391] = {.lex_state = 39, .external_lex_state = 2}, [1392] = {.lex_state = 39, .external_lex_state = 2}, [1393] = {.lex_state = 39, .external_lex_state = 2}, [1394] = {.lex_state = 39, .external_lex_state = 2}, - [1395] = {.lex_state = 39, .external_lex_state = 2}, + [1395] = {.lex_state = 39, .external_lex_state = 3}, [1396] = {.lex_state = 39, .external_lex_state = 2}, - [1397] = {.lex_state = 39, .external_lex_state = 2}, + [1397] = {.lex_state = 39, .external_lex_state = 4}, [1398] = {.lex_state = 39, .external_lex_state = 2}, [1399] = {.lex_state = 39, .external_lex_state = 2}, [1400] = {.lex_state = 39, .external_lex_state = 2}, - [1401] = {.lex_state = 39, .external_lex_state = 2}, + [1401] = {.lex_state = 39, .external_lex_state = 4}, [1402] = {.lex_state = 39, .external_lex_state = 2}, [1403] = {.lex_state = 39, .external_lex_state = 2}, - [1404] = {.lex_state = 39, .external_lex_state = 2}, - [1405] = {.lex_state = 39, .external_lex_state = 2}, + [1404] = {.lex_state = 39, .external_lex_state = 3}, + [1405] = {.lex_state = 39, .external_lex_state = 5}, [1406] = {.lex_state = 39, .external_lex_state = 2}, - [1407] = {.lex_state = 39, .external_lex_state = 2}, - [1408] = {.lex_state = 39, .external_lex_state = 2}, - [1409] = {.lex_state = 39, .external_lex_state = 2}, + [1407] = {.lex_state = 39, .external_lex_state = 3}, + [1408] = {.lex_state = 39, .external_lex_state = 4}, + [1409] = {.lex_state = 39, .external_lex_state = 4}, [1410] = {.lex_state = 39, .external_lex_state = 2}, - [1411] = {.lex_state = 39, .external_lex_state = 2}, - [1412] = {.lex_state = 39, .external_lex_state = 2}, - [1413] = {.lex_state = 39, .external_lex_state = 2}, + [1411] = {.lex_state = 39, .external_lex_state = 5}, + [1412] = {.lex_state = 39, .external_lex_state = 3}, + [1413] = {.lex_state = 39, .external_lex_state = 3}, [1414] = {.lex_state = 39, .external_lex_state = 2}, [1415] = {.lex_state = 39, .external_lex_state = 2}, [1416] = {.lex_state = 39, .external_lex_state = 2}, [1417] = {.lex_state = 39, .external_lex_state = 2}, [1418] = {.lex_state = 39, .external_lex_state = 2}, - [1419] = {.lex_state = 39, .external_lex_state = 2}, - [1420] = {.lex_state = 39, .external_lex_state = 2}, - [1421] = {.lex_state = 39, .external_lex_state = 2}, - [1422] = {.lex_state = 39, .external_lex_state = 2}, - [1423] = {.lex_state = 39, .external_lex_state = 2}, + [1419] = {.lex_state = 39, .external_lex_state = 5}, + [1420] = {.lex_state = 39, .external_lex_state = 3}, + [1421] = {.lex_state = 39, .external_lex_state = 3}, + [1422] = {.lex_state = 39, .external_lex_state = 3}, + [1423] = {.lex_state = 39, .external_lex_state = 3}, [1424] = {.lex_state = 39, .external_lex_state = 2}, [1425] = {.lex_state = 39, .external_lex_state = 2}, - [1426] = {.lex_state = 39, .external_lex_state = 4}, + [1426] = {.lex_state = 39, .external_lex_state = 2}, [1427] = {.lex_state = 39, .external_lex_state = 2}, [1428] = {.lex_state = 39, .external_lex_state = 2}, [1429] = {.lex_state = 39, .external_lex_state = 2}, - [1430] = {.lex_state = 39, .external_lex_state = 4}, - [1431] = {.lex_state = 39, .external_lex_state = 2}, + [1430] = {.lex_state = 39, .external_lex_state = 3}, + [1431] = {.lex_state = 39, .external_lex_state = 3}, [1432] = {.lex_state = 39, .external_lex_state = 2}, [1433] = {.lex_state = 39, .external_lex_state = 2}, [1434] = {.lex_state = 39, .external_lex_state = 2}, - [1435] = {.lex_state = 39, .external_lex_state = 2}, - [1436] = {.lex_state = 39, .external_lex_state = 4}, + [1435] = {.lex_state = 39, .external_lex_state = 4}, + [1436] = {.lex_state = 39, .external_lex_state = 2}, [1437] = {.lex_state = 39, .external_lex_state = 2}, [1438] = {.lex_state = 39, .external_lex_state = 2}, - [1439] = {.lex_state = 39, .external_lex_state = 2}, - [1440] = {.lex_state = 39, .external_lex_state = 2}, - [1441] = {.lex_state = 39, .external_lex_state = 2}, - [1442] = {.lex_state = 39, .external_lex_state = 2}, - [1443] = {.lex_state = 39, .external_lex_state = 2}, + [1439] = {.lex_state = 39, .external_lex_state = 4}, + [1440] = {.lex_state = 39, .external_lex_state = 3}, + [1441] = {.lex_state = 39, .external_lex_state = 3}, + [1442] = {.lex_state = 39, .external_lex_state = 3}, + [1443] = {.lex_state = 39, .external_lex_state = 3}, [1444] = {.lex_state = 39, .external_lex_state = 2}, - [1445] = {.lex_state = 39, .external_lex_state = 2}, - [1446] = {.lex_state = 39, .external_lex_state = 2}, + [1445] = {.lex_state = 39, .external_lex_state = 3}, + [1446] = {.lex_state = 39, .external_lex_state = 3}, [1447] = {.lex_state = 39, .external_lex_state = 2}, [1448] = {.lex_state = 39, .external_lex_state = 2}, - [1449] = {.lex_state = 39, .external_lex_state = 2}, + [1449] = {.lex_state = 39, .external_lex_state = 4}, [1450] = {.lex_state = 39, .external_lex_state = 2}, - [1451] = {.lex_state = 39, .external_lex_state = 2}, + [1451] = {.lex_state = 39, .external_lex_state = 3}, [1452] = {.lex_state = 39, .external_lex_state = 2}, [1453] = {.lex_state = 39, .external_lex_state = 2}, [1454] = {.lex_state = 39, .external_lex_state = 2}, [1455] = {.lex_state = 39, .external_lex_state = 2}, - [1456] = {.lex_state = 39, .external_lex_state = 2}, - [1457] = {.lex_state = 39, .external_lex_state = 2}, - [1458] = {.lex_state = 39, .external_lex_state = 2}, - [1459] = {.lex_state = 39, .external_lex_state = 2}, - [1460] = {.lex_state = 39, .external_lex_state = 2}, - [1461] = {.lex_state = 39, .external_lex_state = 2}, + [1456] = {.lex_state = 39, .external_lex_state = 4}, + [1457] = {.lex_state = 39, .external_lex_state = 3}, + [1458] = {.lex_state = 39, .external_lex_state = 3}, + [1459] = {.lex_state = 39, .external_lex_state = 3}, + [1460] = {.lex_state = 39, .external_lex_state = 3}, + [1461] = {.lex_state = 39, .external_lex_state = 3}, [1462] = {.lex_state = 39, .external_lex_state = 2}, [1463] = {.lex_state = 39, .external_lex_state = 2}, - [1464] = {.lex_state = 39, .external_lex_state = 5}, + [1464] = {.lex_state = 39, .external_lex_state = 2}, [1465] = {.lex_state = 39, .external_lex_state = 2}, - [1466] = {.lex_state = 39, .external_lex_state = 5}, - [1467] = {.lex_state = 39, .external_lex_state = 2}, - [1468] = {.lex_state = 39, .external_lex_state = 2}, - [1469] = {.lex_state = 39, .external_lex_state = 2}, - [1470] = {.lex_state = 39, .external_lex_state = 2}, - [1471] = {.lex_state = 39, .external_lex_state = 5}, - [1472] = {.lex_state = 39, .external_lex_state = 2}, + [1466] = {.lex_state = 39, .external_lex_state = 2}, + [1467] = {.lex_state = 39, .external_lex_state = 3}, + [1468] = {.lex_state = 39, .external_lex_state = 3}, + [1469] = {.lex_state = 39, .external_lex_state = 3}, + [1470] = {.lex_state = 39, .external_lex_state = 3}, + [1471] = {.lex_state = 39, .external_lex_state = 2}, + [1472] = {.lex_state = 39, .external_lex_state = 3}, [1473] = {.lex_state = 39, .external_lex_state = 2}, - [1474] = {.lex_state = 39, .external_lex_state = 4}, - [1475] = {.lex_state = 39, .external_lex_state = 4}, + [1474] = {.lex_state = 39, .external_lex_state = 3}, + [1475] = {.lex_state = 39, .external_lex_state = 3}, [1476] = {.lex_state = 39, .external_lex_state = 3}, [1477] = {.lex_state = 39, .external_lex_state = 3}, [1478] = {.lex_state = 39, .external_lex_state = 3}, [1479] = {.lex_state = 39, .external_lex_state = 3}, [1480] = {.lex_state = 39, .external_lex_state = 2}, - [1481] = {.lex_state = 39, .external_lex_state = 4}, + [1481] = {.lex_state = 39, .external_lex_state = 2}, [1482] = {.lex_state = 39, .external_lex_state = 4}, - [1483] = {.lex_state = 39, .external_lex_state = 4}, - [1484] = {.lex_state = 39, .external_lex_state = 4}, - [1485] = {.lex_state = 39, .external_lex_state = 2}, + [1483] = {.lex_state = 39, .external_lex_state = 2}, + [1484] = {.lex_state = 39, .external_lex_state = 2}, + [1485] = {.lex_state = 39, .external_lex_state = 4}, [1486] = {.lex_state = 39, .external_lex_state = 4}, - [1487] = {.lex_state = 39, .external_lex_state = 5}, + [1487] = {.lex_state = 39, .external_lex_state = 2}, [1488] = {.lex_state = 39, .external_lex_state = 2}, - [1489] = {.lex_state = 39, .external_lex_state = 5}, - [1490] = {.lex_state = 39, .external_lex_state = 2}, - [1491] = {.lex_state = 39, .external_lex_state = 4}, + [1489] = {.lex_state = 39, .external_lex_state = 2}, + [1490] = {.lex_state = 39, .external_lex_state = 4}, + [1491] = {.lex_state = 39, .external_lex_state = 2}, [1492] = {.lex_state = 39, .external_lex_state = 2}, [1493] = {.lex_state = 39, .external_lex_state = 2}, - [1494] = {.lex_state = 39, .external_lex_state = 4}, - [1495] = {.lex_state = 39, .external_lex_state = 4}, - [1496] = {.lex_state = 39, .external_lex_state = 4}, - [1497] = {.lex_state = 39, .external_lex_state = 2}, + [1494] = {.lex_state = 39, .external_lex_state = 2}, + [1495] = {.lex_state = 39, .external_lex_state = 2}, + [1496] = {.lex_state = 39, .external_lex_state = 2}, + [1497] = {.lex_state = 39, .external_lex_state = 4}, [1498] = {.lex_state = 39, .external_lex_state = 2}, [1499] = {.lex_state = 39, .external_lex_state = 2}, - [1500] = {.lex_state = 39, .external_lex_state = 3}, - [1501] = {.lex_state = 39, .external_lex_state = 3}, - [1502] = {.lex_state = 39, .external_lex_state = 5}, - [1503] = {.lex_state = 39, .external_lex_state = 5}, - [1504] = {.lex_state = 39, .external_lex_state = 5}, + [1500] = {.lex_state = 39, .external_lex_state = 2}, + [1501] = {.lex_state = 39, .external_lex_state = 2}, + [1502] = {.lex_state = 39, .external_lex_state = 2}, + [1503] = {.lex_state = 39, .external_lex_state = 3}, + [1504] = {.lex_state = 39, .external_lex_state = 2}, [1505] = {.lex_state = 39, .external_lex_state = 2}, - [1506] = {.lex_state = 39, .external_lex_state = 5}, - [1507] = {.lex_state = 39, .external_lex_state = 5}, - [1508] = {.lex_state = 39, .external_lex_state = 5}, - [1509] = {.lex_state = 39, .external_lex_state = 5}, - [1510] = {.lex_state = 39, .external_lex_state = 3}, - [1511] = {.lex_state = 39, .external_lex_state = 3}, - [1512] = {.lex_state = 39, .external_lex_state = 5}, - [1513] = {.lex_state = 39, .external_lex_state = 3}, - [1514] = {.lex_state = 39, .external_lex_state = 3}, - [1515] = {.lex_state = 39, .external_lex_state = 3}, + [1506] = {.lex_state = 39, .external_lex_state = 2}, + [1507] = {.lex_state = 39, .external_lex_state = 2}, + [1508] = {.lex_state = 39, .external_lex_state = 2}, + [1509] = {.lex_state = 39, .external_lex_state = 2}, + [1510] = {.lex_state = 39, .external_lex_state = 2}, + [1511] = {.lex_state = 39, .external_lex_state = 2}, + [1512] = {.lex_state = 39, .external_lex_state = 2}, + [1513] = {.lex_state = 39, .external_lex_state = 2}, + [1514] = {.lex_state = 39, .external_lex_state = 2}, + [1515] = {.lex_state = 39, .external_lex_state = 2}, [1516] = {.lex_state = 39, .external_lex_state = 2}, [1517] = {.lex_state = 39, .external_lex_state = 2}, - [1518] = {.lex_state = 39, .external_lex_state = 5}, - [1519] = {.lex_state = 39, .external_lex_state = 3}, - [1520] = {.lex_state = 39, .external_lex_state = 2}, + [1518] = {.lex_state = 39, .external_lex_state = 2}, + [1519] = {.lex_state = 39, .external_lex_state = 2}, + [1520] = {.lex_state = 39, .external_lex_state = 4}, [1521] = {.lex_state = 39, .external_lex_state = 2}, [1522] = {.lex_state = 39, .external_lex_state = 2}, [1523] = {.lex_state = 39, .external_lex_state = 2}, [1524] = {.lex_state = 39, .external_lex_state = 2}, - [1525] = {.lex_state = 39, .external_lex_state = 2}, + [1525] = {.lex_state = 39, .external_lex_state = 4}, [1526] = {.lex_state = 39, .external_lex_state = 2}, [1527] = {.lex_state = 39, .external_lex_state = 2}, [1528] = {.lex_state = 39, .external_lex_state = 2}, @@ -12678,58 +12835,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1530] = {.lex_state = 39, .external_lex_state = 2}, [1531] = {.lex_state = 39, .external_lex_state = 2}, [1532] = {.lex_state = 39, .external_lex_state = 2}, - [1533] = {.lex_state = 39, .external_lex_state = 3}, - [1534] = {.lex_state = 39, .external_lex_state = 3}, - [1535] = {.lex_state = 39, .external_lex_state = 3}, + [1533] = {.lex_state = 39, .external_lex_state = 2}, + [1534] = {.lex_state = 39, .external_lex_state = 2}, + [1535] = {.lex_state = 39, .external_lex_state = 2}, [1536] = {.lex_state = 39, .external_lex_state = 2}, [1537] = {.lex_state = 39, .external_lex_state = 2}, [1538] = {.lex_state = 39, .external_lex_state = 2}, [1539] = {.lex_state = 39, .external_lex_state = 2}, - [1540] = {.lex_state = 39, .external_lex_state = 3}, + [1540] = {.lex_state = 39, .external_lex_state = 4}, [1541] = {.lex_state = 39, .external_lex_state = 2}, [1542] = {.lex_state = 39, .external_lex_state = 2}, - [1543] = {.lex_state = 39, .external_lex_state = 2}, + [1543] = {.lex_state = 39, .external_lex_state = 4}, [1544] = {.lex_state = 39, .external_lex_state = 2}, [1545] = {.lex_state = 39, .external_lex_state = 2}, [1546] = {.lex_state = 39, .external_lex_state = 2}, [1547] = {.lex_state = 39, .external_lex_state = 2}, [1548] = {.lex_state = 39, .external_lex_state = 2}, - [1549] = {.lex_state = 39, .external_lex_state = 3}, + [1549] = {.lex_state = 39, .external_lex_state = 2}, [1550] = {.lex_state = 39, .external_lex_state = 2}, [1551] = {.lex_state = 39, .external_lex_state = 2}, - [1552] = {.lex_state = 39, .external_lex_state = 3}, - [1553] = {.lex_state = 39, .external_lex_state = 5}, + [1552] = {.lex_state = 39, .external_lex_state = 2}, + [1553] = {.lex_state = 39, .external_lex_state = 2}, [1554] = {.lex_state = 39, .external_lex_state = 2}, [1555] = {.lex_state = 39, .external_lex_state = 2}, [1556] = {.lex_state = 39, .external_lex_state = 2}, [1557] = {.lex_state = 39, .external_lex_state = 2}, [1558] = {.lex_state = 39, .external_lex_state = 2}, - [1559] = {.lex_state = 39, .external_lex_state = 5}, + [1559] = {.lex_state = 39, .external_lex_state = 2}, [1560] = {.lex_state = 39, .external_lex_state = 2}, [1561] = {.lex_state = 39, .external_lex_state = 2}, - [1562] = {.lex_state = 39, .external_lex_state = 3}, - [1563] = {.lex_state = 39, .external_lex_state = 3}, + [1562] = {.lex_state = 39, .external_lex_state = 5}, + [1563] = {.lex_state = 39, .external_lex_state = 2}, [1564] = {.lex_state = 39, .external_lex_state = 5}, - [1565] = {.lex_state = 39, .external_lex_state = 2}, + [1565] = {.lex_state = 39, .external_lex_state = 5}, [1566] = {.lex_state = 39, .external_lex_state = 2}, [1567] = {.lex_state = 39, .external_lex_state = 2}, - [1568] = {.lex_state = 39, .external_lex_state = 3}, + [1568] = {.lex_state = 39, .external_lex_state = 2}, [1569] = {.lex_state = 39, .external_lex_state = 2}, [1570] = {.lex_state = 39, .external_lex_state = 2}, - [1571] = {.lex_state = 39, .external_lex_state = 2}, + [1571] = {.lex_state = 39, .external_lex_state = 4}, [1572] = {.lex_state = 39, .external_lex_state = 2}, - [1573] = {.lex_state = 39, .external_lex_state = 3}, - [1574] = {.lex_state = 39, .external_lex_state = 3}, + [1573] = {.lex_state = 39, .external_lex_state = 2}, + [1574] = {.lex_state = 39, .external_lex_state = 2}, [1575] = {.lex_state = 39, .external_lex_state = 2}, [1576] = {.lex_state = 39, .external_lex_state = 2}, [1577] = {.lex_state = 39, .external_lex_state = 2}, [1578] = {.lex_state = 39, .external_lex_state = 2}, [1579] = {.lex_state = 39, .external_lex_state = 2}, - [1580] = {.lex_state = 39, .external_lex_state = 3}, + [1580] = {.lex_state = 39, .external_lex_state = 2}, [1581] = {.lex_state = 39, .external_lex_state = 2}, - [1582] = {.lex_state = 39, .external_lex_state = 3}, - [1583] = {.lex_state = 39, .external_lex_state = 5}, - [1584] = {.lex_state = 39, .external_lex_state = 3}, + [1582] = {.lex_state = 39, .external_lex_state = 2}, + [1583] = {.lex_state = 39, .external_lex_state = 2}, + [1584] = {.lex_state = 39, .external_lex_state = 2}, [1585] = {.lex_state = 39, .external_lex_state = 2}, [1586] = {.lex_state = 39, .external_lex_state = 2}, [1587] = {.lex_state = 39, .external_lex_state = 2}, @@ -12746,44 +12903,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1598] = {.lex_state = 39, .external_lex_state = 2}, [1599] = {.lex_state = 39, .external_lex_state = 2}, [1600] = {.lex_state = 39, .external_lex_state = 2}, - [1601] = {.lex_state = 39, .external_lex_state = 2}, + [1601] = {.lex_state = 39, .external_lex_state = 5}, [1602] = {.lex_state = 39, .external_lex_state = 2}, [1603] = {.lex_state = 39, .external_lex_state = 2}, - [1604] = {.lex_state = 39, .external_lex_state = 3}, - [1605] = {.lex_state = 39, .external_lex_state = 3}, - [1606] = {.lex_state = 39, .external_lex_state = 3}, - [1607] = {.lex_state = 39, .external_lex_state = 2}, + [1604] = {.lex_state = 39, .external_lex_state = 2}, + [1605] = {.lex_state = 39, .external_lex_state = 2}, + [1606] = {.lex_state = 39, .external_lex_state = 2}, + [1607] = {.lex_state = 39, .external_lex_state = 4}, [1608] = {.lex_state = 39, .external_lex_state = 2}, - [1609] = {.lex_state = 39, .external_lex_state = 3}, + [1609] = {.lex_state = 39, .external_lex_state = 2}, [1610] = {.lex_state = 39, .external_lex_state = 2}, - [1611] = {.lex_state = 39, .external_lex_state = 3}, + [1611] = {.lex_state = 39, .external_lex_state = 2}, [1612] = {.lex_state = 39, .external_lex_state = 2}, [1613] = {.lex_state = 39, .external_lex_state = 2}, - [1614] = {.lex_state = 39, .external_lex_state = 3}, + [1614] = {.lex_state = 39, .external_lex_state = 2}, [1615] = {.lex_state = 39, .external_lex_state = 2}, [1616] = {.lex_state = 39, .external_lex_state = 2}, - [1617] = {.lex_state = 39, .external_lex_state = 5}, + [1617] = {.lex_state = 39, .external_lex_state = 2}, [1618] = {.lex_state = 39, .external_lex_state = 2}, [1619] = {.lex_state = 39, .external_lex_state = 2}, - [1620] = {.lex_state = 39, .external_lex_state = 5}, + [1620] = {.lex_state = 39, .external_lex_state = 2}, [1621] = {.lex_state = 39, .external_lex_state = 2}, - [1622] = {.lex_state = 39, .external_lex_state = 5}, + [1622] = {.lex_state = 39, .external_lex_state = 2}, [1623] = {.lex_state = 39, .external_lex_state = 2}, - [1624] = {.lex_state = 39, .external_lex_state = 2}, + [1624] = {.lex_state = 39, .external_lex_state = 4}, [1625] = {.lex_state = 39, .external_lex_state = 2}, - [1626] = {.lex_state = 39, .external_lex_state = 2}, + [1626] = {.lex_state = 39, .external_lex_state = 4}, [1627] = {.lex_state = 39, .external_lex_state = 2}, - [1628] = {.lex_state = 39, .external_lex_state = 5}, + [1628] = {.lex_state = 39, .external_lex_state = 2}, [1629] = {.lex_state = 39, .external_lex_state = 2}, [1630] = {.lex_state = 39, .external_lex_state = 2}, - [1631] = {.lex_state = 39, .external_lex_state = 5}, + [1631] = {.lex_state = 39, .external_lex_state = 2}, [1632] = {.lex_state = 39, .external_lex_state = 2}, [1633] = {.lex_state = 39, .external_lex_state = 5}, [1634] = {.lex_state = 39, .external_lex_state = 2}, [1635] = {.lex_state = 39, .external_lex_state = 2}, [1636] = {.lex_state = 39, .external_lex_state = 2}, [1637] = {.lex_state = 39, .external_lex_state = 2}, - [1638] = {.lex_state = 39, .external_lex_state = 5}, + [1638] = {.lex_state = 39, .external_lex_state = 2}, [1639] = {.lex_state = 39, .external_lex_state = 2}, [1640] = {.lex_state = 39, .external_lex_state = 2}, [1641] = {.lex_state = 39, .external_lex_state = 2}, @@ -12793,28 +12950,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1645] = {.lex_state = 39, .external_lex_state = 2}, [1646] = {.lex_state = 39, .external_lex_state = 2}, [1647] = {.lex_state = 39, .external_lex_state = 2}, - [1648] = {.lex_state = 39, .external_lex_state = 5}, + [1648] = {.lex_state = 39, .external_lex_state = 2}, [1649] = {.lex_state = 39, .external_lex_state = 2}, [1650] = {.lex_state = 39, .external_lex_state = 2}, [1651] = {.lex_state = 39, .external_lex_state = 2}, [1652] = {.lex_state = 39, .external_lex_state = 2}, [1653] = {.lex_state = 39, .external_lex_state = 2}, [1654] = {.lex_state = 39, .external_lex_state = 2}, - [1655] = {.lex_state = 39, .external_lex_state = 4}, + [1655] = {.lex_state = 39, .external_lex_state = 2}, [1656] = {.lex_state = 39, .external_lex_state = 2}, [1657] = {.lex_state = 39, .external_lex_state = 2}, [1658] = {.lex_state = 39, .external_lex_state = 2}, - [1659] = {.lex_state = 39, .external_lex_state = 4}, + [1659] = {.lex_state = 39, .external_lex_state = 2}, [1660] = {.lex_state = 39, .external_lex_state = 2}, - [1661] = {.lex_state = 39, .external_lex_state = 4}, + [1661] = {.lex_state = 39, .external_lex_state = 2}, [1662] = {.lex_state = 39, .external_lex_state = 2}, [1663] = {.lex_state = 39, .external_lex_state = 2}, [1664] = {.lex_state = 39, .external_lex_state = 2}, - [1665] = {.lex_state = 39, .external_lex_state = 4}, + [1665] = {.lex_state = 39, .external_lex_state = 5}, [1666] = {.lex_state = 39, .external_lex_state = 2}, - [1667] = {.lex_state = 39, .external_lex_state = 4}, - [1668] = {.lex_state = 39, .external_lex_state = 4}, - [1669] = {.lex_state = 39, .external_lex_state = 4}, + [1667] = {.lex_state = 39, .external_lex_state = 2}, + [1668] = {.lex_state = 39, .external_lex_state = 2}, + [1669] = {.lex_state = 39, .external_lex_state = 2}, [1670] = {.lex_state = 39, .external_lex_state = 2}, [1671] = {.lex_state = 39, .external_lex_state = 2}, [1672] = {.lex_state = 39, .external_lex_state = 2}, @@ -12832,12 +12989,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1684] = {.lex_state = 39, .external_lex_state = 2}, [1685] = {.lex_state = 39, .external_lex_state = 2}, [1686] = {.lex_state = 39, .external_lex_state = 2}, - [1687] = {.lex_state = 39, .external_lex_state = 2}, + [1687] = {.lex_state = 39, .external_lex_state = 4}, [1688] = {.lex_state = 39, .external_lex_state = 2}, [1689] = {.lex_state = 39, .external_lex_state = 2}, [1690] = {.lex_state = 39, .external_lex_state = 2}, [1691] = {.lex_state = 39, .external_lex_state = 2}, - [1692] = {.lex_state = 39, .external_lex_state = 4}, + [1692] = {.lex_state = 39, .external_lex_state = 2}, [1693] = {.lex_state = 39, .external_lex_state = 2}, [1694] = {.lex_state = 39, .external_lex_state = 2}, [1695] = {.lex_state = 39, .external_lex_state = 2}, @@ -12845,20 +13002,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1697] = {.lex_state = 39, .external_lex_state = 2}, [1698] = {.lex_state = 39, .external_lex_state = 2}, [1699] = {.lex_state = 39, .external_lex_state = 2}, - [1700] = {.lex_state = 39, .external_lex_state = 4}, - [1701] = {.lex_state = 39, .external_lex_state = 2}, + [1700] = {.lex_state = 39, .external_lex_state = 2}, + [1701] = {.lex_state = 39, .external_lex_state = 4}, [1702] = {.lex_state = 39, .external_lex_state = 2}, [1703] = {.lex_state = 39, .external_lex_state = 2}, - [1704] = {.lex_state = 39, .external_lex_state = 4}, + [1704] = {.lex_state = 39, .external_lex_state = 2}, [1705] = {.lex_state = 39, .external_lex_state = 2}, [1706] = {.lex_state = 39, .external_lex_state = 2}, [1707] = {.lex_state = 39, .external_lex_state = 2}, [1708] = {.lex_state = 39, .external_lex_state = 2}, [1709] = {.lex_state = 39, .external_lex_state = 2}, - [1710] = {.lex_state = 39, .external_lex_state = 4}, - [1711] = {.lex_state = 39, .external_lex_state = 4}, - [1712] = {.lex_state = 39, .external_lex_state = 2}, - [1713] = {.lex_state = 39, .external_lex_state = 4}, + [1710] = {.lex_state = 39, .external_lex_state = 5}, + [1711] = {.lex_state = 39, .external_lex_state = 2}, + [1712] = {.lex_state = 39, .external_lex_state = 4}, + [1713] = {.lex_state = 39, .external_lex_state = 2}, [1714] = {.lex_state = 39, .external_lex_state = 2}, [1715] = {.lex_state = 39, .external_lex_state = 2}, [1716] = {.lex_state = 39, .external_lex_state = 2}, @@ -12875,18 +13032,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1727] = {.lex_state = 39, .external_lex_state = 2}, [1728] = {.lex_state = 39, .external_lex_state = 2}, [1729] = {.lex_state = 39, .external_lex_state = 2}, - [1730] = {.lex_state = 39, .external_lex_state = 2}, + [1730] = {.lex_state = 39, .external_lex_state = 5}, [1731] = {.lex_state = 39, .external_lex_state = 2}, [1732] = {.lex_state = 39, .external_lex_state = 2}, [1733] = {.lex_state = 39, .external_lex_state = 2}, [1734] = {.lex_state = 39, .external_lex_state = 2}, - [1735] = {.lex_state = 39, .external_lex_state = 2}, + [1735] = {.lex_state = 39, .external_lex_state = 4}, [1736] = {.lex_state = 39, .external_lex_state = 2}, [1737] = {.lex_state = 39, .external_lex_state = 2}, [1738] = {.lex_state = 39, .external_lex_state = 2}, [1739] = {.lex_state = 39, .external_lex_state = 2}, - [1740] = {.lex_state = 39, .external_lex_state = 4}, - [1741] = {.lex_state = 39, .external_lex_state = 4}, + [1740] = {.lex_state = 39, .external_lex_state = 2}, + [1741] = {.lex_state = 39, .external_lex_state = 2}, [1742] = {.lex_state = 39, .external_lex_state = 2}, [1743] = {.lex_state = 39, .external_lex_state = 2}, [1744] = {.lex_state = 39, .external_lex_state = 2}, @@ -12894,35 +13051,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1746] = {.lex_state = 39, .external_lex_state = 2}, [1747] = {.lex_state = 39, .external_lex_state = 2}, [1748] = {.lex_state = 39, .external_lex_state = 2}, - [1749] = {.lex_state = 39, .external_lex_state = 2}, + [1749] = {.lex_state = 39, .external_lex_state = 5}, [1750] = {.lex_state = 39, .external_lex_state = 2}, [1751] = {.lex_state = 39, .external_lex_state = 2}, - [1752] = {.lex_state = 39, .external_lex_state = 2}, + [1752] = {.lex_state = 39, .external_lex_state = 4}, [1753] = {.lex_state = 39, .external_lex_state = 2}, - [1754] = {.lex_state = 39, .external_lex_state = 2}, - [1755] = {.lex_state = 39, .external_lex_state = 2}, + [1754] = {.lex_state = 39, .external_lex_state = 4}, + [1755] = {.lex_state = 39, .external_lex_state = 4}, [1756] = {.lex_state = 39, .external_lex_state = 2}, - [1757] = {.lex_state = 39, .external_lex_state = 2}, + [1757] = {.lex_state = 39, .external_lex_state = 5}, [1758] = {.lex_state = 39, .external_lex_state = 2}, [1759] = {.lex_state = 39, .external_lex_state = 2}, [1760] = {.lex_state = 39, .external_lex_state = 2}, - [1761] = {.lex_state = 39, .external_lex_state = 2}, + [1761] = {.lex_state = 39, .external_lex_state = 4}, [1762] = {.lex_state = 39, .external_lex_state = 2}, [1763] = {.lex_state = 39, .external_lex_state = 4}, [1764] = {.lex_state = 39, .external_lex_state = 2}, - [1765] = {.lex_state = 39, .external_lex_state = 2}, - [1766] = {.lex_state = 39, .external_lex_state = 2}, + [1765] = {.lex_state = 39, .external_lex_state = 3}, + [1766] = {.lex_state = 39, .external_lex_state = 4}, [1767] = {.lex_state = 39, .external_lex_state = 2}, - [1768] = {.lex_state = 39, .external_lex_state = 2}, - [1769] = {.lex_state = 39, .external_lex_state = 2}, + [1768] = {.lex_state = 39, .external_lex_state = 4}, + [1769] = {.lex_state = 39, .external_lex_state = 3}, [1770] = {.lex_state = 39, .external_lex_state = 2}, - [1771] = {.lex_state = 39, .external_lex_state = 2}, + [1771] = {.lex_state = 39, .external_lex_state = 4}, [1772] = {.lex_state = 39, .external_lex_state = 2}, [1773] = {.lex_state = 39, .external_lex_state = 2}, [1774] = {.lex_state = 39, .external_lex_state = 2}, - [1775] = {.lex_state = 39, .external_lex_state = 2}, + [1775] = {.lex_state = 39, .external_lex_state = 4}, [1776] = {.lex_state = 39, .external_lex_state = 2}, - [1777] = {.lex_state = 39, .external_lex_state = 4}, + [1777] = {.lex_state = 39, .external_lex_state = 2}, [1778] = {.lex_state = 39, .external_lex_state = 2}, [1779] = {.lex_state = 39, .external_lex_state = 2}, [1780] = {.lex_state = 39, .external_lex_state = 2}, @@ -12932,7 +13089,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1784] = {.lex_state = 39, .external_lex_state = 2}, [1785] = {.lex_state = 39, .external_lex_state = 2}, [1786] = {.lex_state = 39, .external_lex_state = 2}, - [1787] = {.lex_state = 39, .external_lex_state = 2}, + [1787] = {.lex_state = 39, .external_lex_state = 5}, [1788] = {.lex_state = 39, .external_lex_state = 2}, [1789] = {.lex_state = 39, .external_lex_state = 2}, [1790] = {.lex_state = 39, .external_lex_state = 2}, @@ -12947,7 +13104,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1799] = {.lex_state = 39, .external_lex_state = 2}, [1800] = {.lex_state = 39, .external_lex_state = 2}, [1801] = {.lex_state = 39, .external_lex_state = 2}, - [1802] = {.lex_state = 39, .external_lex_state = 2}, + [1802] = {.lex_state = 39, .external_lex_state = 3}, [1803] = {.lex_state = 39, .external_lex_state = 2}, [1804] = {.lex_state = 39, .external_lex_state = 2}, [1805] = {.lex_state = 39, .external_lex_state = 2}, @@ -12959,7 +13116,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1811] = {.lex_state = 39, .external_lex_state = 2}, [1812] = {.lex_state = 39, .external_lex_state = 2}, [1813] = {.lex_state = 39, .external_lex_state = 2}, - [1814] = {.lex_state = 39, .external_lex_state = 2}, + [1814] = {.lex_state = 39, .external_lex_state = 4}, [1815] = {.lex_state = 39, .external_lex_state = 2}, [1816] = {.lex_state = 39, .external_lex_state = 2}, [1817] = {.lex_state = 39, .external_lex_state = 2}, @@ -12986,7 +13143,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1838] = {.lex_state = 39, .external_lex_state = 2}, [1839] = {.lex_state = 39, .external_lex_state = 2}, [1840] = {.lex_state = 39, .external_lex_state = 2}, - [1841] = {.lex_state = 39, .external_lex_state = 2}, + [1841] = {.lex_state = 39, .external_lex_state = 3}, [1842] = {.lex_state = 39, .external_lex_state = 2}, [1843] = {.lex_state = 39, .external_lex_state = 2}, [1844] = {.lex_state = 39, .external_lex_state = 2}, @@ -13012,7 +13169,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1864] = {.lex_state = 39, .external_lex_state = 2}, [1865] = {.lex_state = 39, .external_lex_state = 2}, [1866] = {.lex_state = 39, .external_lex_state = 2}, - [1867] = {.lex_state = 39, .external_lex_state = 2}, + [1867] = {.lex_state = 39, .external_lex_state = 5}, [1868] = {.lex_state = 39, .external_lex_state = 2}, [1869] = {.lex_state = 39, .external_lex_state = 2}, [1870] = {.lex_state = 39, .external_lex_state = 2}, @@ -13023,2735 +13180,2735 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1875] = {.lex_state = 39, .external_lex_state = 2}, [1876] = {.lex_state = 39, .external_lex_state = 2}, [1877] = {.lex_state = 39, .external_lex_state = 2}, - [1878] = {.lex_state = 39, .external_lex_state = 5}, + [1878] = {.lex_state = 39, .external_lex_state = 2}, [1879] = {.lex_state = 39, .external_lex_state = 2}, [1880] = {.lex_state = 39, .external_lex_state = 2}, - [1881] = {.lex_state = 39, .external_lex_state = 3}, - [1882] = {.lex_state = 39, .external_lex_state = 4}, - [1883] = {.lex_state = 39, .external_lex_state = 3}, - [1884] = {.lex_state = 39, .external_lex_state = 4}, + [1881] = {.lex_state = 39, .external_lex_state = 2}, + [1882] = {.lex_state = 39, .external_lex_state = 2}, + [1883] = {.lex_state = 39, .external_lex_state = 2}, + [1884] = {.lex_state = 39, .external_lex_state = 2}, [1885] = {.lex_state = 39, .external_lex_state = 5}, - [1886] = {.lex_state = 39, .external_lex_state = 3}, - [1887] = {.lex_state = 39, .external_lex_state = 4}, - [1888] = {.lex_state = 39, .external_lex_state = 3}, - [1889] = {.lex_state = 39, .external_lex_state = 3}, - [1890] = {.lex_state = 39, .external_lex_state = 4}, - [1891] = {.lex_state = 39, .external_lex_state = 4}, - [1892] = {.lex_state = 39, .external_lex_state = 3}, - [1893] = {.lex_state = 39, .external_lex_state = 5}, + [1886] = {.lex_state = 39, .external_lex_state = 5}, + [1887] = {.lex_state = 39, .external_lex_state = 2}, + [1888] = {.lex_state = 39, .external_lex_state = 2}, + [1889] = {.lex_state = 39, .external_lex_state = 2}, + [1890] = {.lex_state = 39, .external_lex_state = 2}, + [1891] = {.lex_state = 39, .external_lex_state = 2}, + [1892] = {.lex_state = 39, .external_lex_state = 5}, + [1893] = {.lex_state = 39, .external_lex_state = 2}, [1894] = {.lex_state = 39, .external_lex_state = 5}, - [1895] = {.lex_state = 39, .external_lex_state = 5}, - [1896] = {.lex_state = 39, .external_lex_state = 5}, - [1897] = {.lex_state = 39, .external_lex_state = 4}, - [1898] = {.lex_state = 39, .external_lex_state = 4}, - [1899] = {.lex_state = 39, .external_lex_state = 5}, - [1900] = {.lex_state = 39, .external_lex_state = 5}, + [1895] = {.lex_state = 39, .external_lex_state = 2}, + [1896] = {.lex_state = 39, .external_lex_state = 3}, + [1897] = {.lex_state = 39, .external_lex_state = 5}, + [1898] = {.lex_state = 39, .external_lex_state = 5}, + [1899] = {.lex_state = 39, .external_lex_state = 4}, + [1900] = {.lex_state = 39, .external_lex_state = 2}, [1901] = {.lex_state = 39, .external_lex_state = 2}, - [1902] = {.lex_state = 39, .external_lex_state = 5}, - [1903] = {.lex_state = 39, .external_lex_state = 4}, + [1902] = {.lex_state = 39, .external_lex_state = 2}, + [1903] = {.lex_state = 39, .external_lex_state = 5}, [1904] = {.lex_state = 39, .external_lex_state = 2}, - [1905] = {.lex_state = 39, .external_lex_state = 4}, - [1906] = {.lex_state = 39, .external_lex_state = 5}, - [1907] = {.lex_state = 39, .external_lex_state = 4}, - [1908] = {.lex_state = 39, .external_lex_state = 4}, - [1909] = {.lex_state = 39, .external_lex_state = 3}, - [1910] = {.lex_state = 39, .external_lex_state = 5}, + [1905] = {.lex_state = 39, .external_lex_state = 3}, + [1906] = {.lex_state = 39, .external_lex_state = 4}, + [1907] = {.lex_state = 39, .external_lex_state = 2}, + [1908] = {.lex_state = 39, .external_lex_state = 2}, + [1909] = {.lex_state = 39, .external_lex_state = 2}, + [1910] = {.lex_state = 39, .external_lex_state = 2}, [1911] = {.lex_state = 39, .external_lex_state = 2}, - [1912] = {.lex_state = 39, .external_lex_state = 4}, - [1913] = {.lex_state = 39, .external_lex_state = 4}, + [1912] = {.lex_state = 39, .external_lex_state = 5}, + [1913] = {.lex_state = 39, .external_lex_state = 2}, [1914] = {.lex_state = 39, .external_lex_state = 2}, [1915] = {.lex_state = 39, .external_lex_state = 2}, - [1916] = {.lex_state = 39, .external_lex_state = 4}, - [1917] = {.lex_state = 39, .external_lex_state = 4}, - [1918] = {.lex_state = 39, .external_lex_state = 4}, - [1919] = {.lex_state = 39, .external_lex_state = 5}, - [1920] = {.lex_state = 39, .external_lex_state = 4}, - [1921] = {.lex_state = 39, .external_lex_state = 4}, - [1922] = {.lex_state = 39, .external_lex_state = 4}, - [1923] = {.lex_state = 39, .external_lex_state = 4}, - [1924] = {.lex_state = 39, .external_lex_state = 5}, - [1925] = {.lex_state = 39, .external_lex_state = 5}, - [1926] = {.lex_state = 39, .external_lex_state = 4}, - [1927] = {.lex_state = 39, .external_lex_state = 4}, - [1928] = {.lex_state = 39, .external_lex_state = 3}, - [1929] = {.lex_state = 39, .external_lex_state = 3}, - [1930] = {.lex_state = 39, .external_lex_state = 5}, - [1931] = {.lex_state = 39, .external_lex_state = 3}, + [1916] = {.lex_state = 39, .external_lex_state = 2}, + [1917] = {.lex_state = 39, .external_lex_state = 2}, + [1918] = {.lex_state = 39, .external_lex_state = 2}, + [1919] = {.lex_state = 39, .external_lex_state = 2}, + [1920] = {.lex_state = 39, .external_lex_state = 2}, + [1921] = {.lex_state = 39, .external_lex_state = 2}, + [1922] = {.lex_state = 39, .external_lex_state = 2}, + [1923] = {.lex_state = 39, .external_lex_state = 2}, + [1924] = {.lex_state = 39, .external_lex_state = 2}, + [1925] = {.lex_state = 39, .external_lex_state = 2}, + [1926] = {.lex_state = 39, .external_lex_state = 2}, + [1927] = {.lex_state = 39, .external_lex_state = 2}, + [1928] = {.lex_state = 39, .external_lex_state = 2}, + [1929] = {.lex_state = 39, .external_lex_state = 2}, + [1930] = {.lex_state = 39, .external_lex_state = 2}, + [1931] = {.lex_state = 39, .external_lex_state = 2}, [1932] = {.lex_state = 39, .external_lex_state = 2}, [1933] = {.lex_state = 39, .external_lex_state = 2}, - [1934] = {.lex_state = 39, .external_lex_state = 5}, - [1935] = {.lex_state = 39, .external_lex_state = 3}, - [1936] = {.lex_state = 39, .external_lex_state = 5}, - [1937] = {.lex_state = 39, .external_lex_state = 3}, - [1938] = {.lex_state = 39, .external_lex_state = 5}, - [1939] = {.lex_state = 39, .external_lex_state = 5}, - [1940] = {.lex_state = 39, .external_lex_state = 3}, - [1941] = {.lex_state = 39, .external_lex_state = 4}, - [1942] = {.lex_state = 39, .external_lex_state = 4}, - [1943] = {.lex_state = 39, .external_lex_state = 5}, - [1944] = {.lex_state = 39, .external_lex_state = 4}, - [1945] = {.lex_state = 39, .external_lex_state = 4}, - [1946] = {.lex_state = 39, .external_lex_state = 4}, - [1947] = {.lex_state = 39, .external_lex_state = 4}, - [1948] = {.lex_state = 39, .external_lex_state = 4}, - [1949] = {.lex_state = 39, .external_lex_state = 4}, - [1950] = {.lex_state = 39, .external_lex_state = 4}, - [1951] = {.lex_state = 39, .external_lex_state = 5}, - [1952] = {.lex_state = 39, .external_lex_state = 3}, - [1953] = {.lex_state = 39, .external_lex_state = 4}, - [1954] = {.lex_state = 39, .external_lex_state = 5}, - [1955] = {.lex_state = 39, .external_lex_state = 3}, - [1956] = {.lex_state = 39, .external_lex_state = 5}, - [1957] = {.lex_state = 39, .external_lex_state = 4}, + [1934] = {.lex_state = 39, .external_lex_state = 2}, + [1935] = {.lex_state = 39, .external_lex_state = 2}, + [1936] = {.lex_state = 39, .external_lex_state = 2}, + [1937] = {.lex_state = 39, .external_lex_state = 2}, + [1938] = {.lex_state = 39, .external_lex_state = 2}, + [1939] = {.lex_state = 39, .external_lex_state = 2}, + [1940] = {.lex_state = 39, .external_lex_state = 2}, + [1941] = {.lex_state = 39, .external_lex_state = 2}, + [1942] = {.lex_state = 39, .external_lex_state = 2}, + [1943] = {.lex_state = 39, .external_lex_state = 2}, + [1944] = {.lex_state = 39, .external_lex_state = 2}, + [1945] = {.lex_state = 39, .external_lex_state = 2}, + [1946] = {.lex_state = 39, .external_lex_state = 2}, + [1947] = {.lex_state = 39, .external_lex_state = 2}, + [1948] = {.lex_state = 39, .external_lex_state = 2}, + [1949] = {.lex_state = 39, .external_lex_state = 2}, + [1950] = {.lex_state = 39, .external_lex_state = 2}, + [1951] = {.lex_state = 39, .external_lex_state = 2}, + [1952] = {.lex_state = 39, .external_lex_state = 2}, + [1953] = {.lex_state = 39, .external_lex_state = 2}, + [1954] = {.lex_state = 39, .external_lex_state = 2}, + [1955] = {.lex_state = 39, .external_lex_state = 2}, + [1956] = {.lex_state = 39, .external_lex_state = 2}, + [1957] = {.lex_state = 39, .external_lex_state = 2}, [1958] = {.lex_state = 39, .external_lex_state = 2}, - [1959] = {.lex_state = 39, .external_lex_state = 5}, - [1960] = {.lex_state = 39, .external_lex_state = 5}, - [1961] = {.lex_state = 39, .external_lex_state = 5}, - [1962] = {.lex_state = 39, .external_lex_state = 2}, - [1963] = {.lex_state = 39, .external_lex_state = 5}, - [1964] = {.lex_state = 39, .external_lex_state = 4}, - [1965] = {.lex_state = 39, .external_lex_state = 4}, - [1966] = {.lex_state = 39, .external_lex_state = 4}, - [1967] = {.lex_state = 39, .external_lex_state = 3}, - [1968] = {.lex_state = 39, .external_lex_state = 5}, - [1969] = {.lex_state = 39, .external_lex_state = 4}, - [1970] = {.lex_state = 39, .external_lex_state = 3}, - [1971] = {.lex_state = 39, .external_lex_state = 5}, - [1972] = {.lex_state = 39, .external_lex_state = 4}, - [1973] = {.lex_state = 39, .external_lex_state = 4}, - [1974] = {.lex_state = 39, .external_lex_state = 3}, - [1975] = {.lex_state = 39, .external_lex_state = 4}, - [1976] = {.lex_state = 39, .external_lex_state = 4}, - [1977] = {.lex_state = 39, .external_lex_state = 3}, - [1978] = {.lex_state = 39, .external_lex_state = 3}, - [1979] = {.lex_state = 39, .external_lex_state = 3}, - [1980] = {.lex_state = 39, .external_lex_state = 4}, - [1981] = {.lex_state = 39, .external_lex_state = 5}, - [1982] = {.lex_state = 39, .external_lex_state = 5}, - [1983] = {.lex_state = 39, .external_lex_state = 3}, - [1984] = {.lex_state = 39, .external_lex_state = 3}, - [1985] = {.lex_state = 39, .external_lex_state = 3}, - [1986] = {.lex_state = 39, .external_lex_state = 5}, - [1987] = {.lex_state = 39, .external_lex_state = 3}, - [1988] = {.lex_state = 39, .external_lex_state = 5}, - [1989] = {.lex_state = 39, .external_lex_state = 3}, + [1959] = {.lex_state = 39, .external_lex_state = 2}, + [1960] = {.lex_state = 39, .external_lex_state = 2}, + [1961] = {.lex_state = 39, .external_lex_state = 2}, + [1962] = {.lex_state = 39, .external_lex_state = 5}, + [1963] = {.lex_state = 39, .external_lex_state = 2}, + [1964] = {.lex_state = 39, .external_lex_state = 5}, + [1965] = {.lex_state = 39, .external_lex_state = 2}, + [1966] = {.lex_state = 39, .external_lex_state = 2}, + [1967] = {.lex_state = 39, .external_lex_state = 2}, + [1968] = {.lex_state = 39, .external_lex_state = 2}, + [1969] = {.lex_state = 39, .external_lex_state = 2}, + [1970] = {.lex_state = 39, .external_lex_state = 5}, + [1971] = {.lex_state = 39, .external_lex_state = 2}, + [1972] = {.lex_state = 39, .external_lex_state = 5}, + [1973] = {.lex_state = 39, .external_lex_state = 5}, + [1974] = {.lex_state = 39, .external_lex_state = 2}, + [1975] = {.lex_state = 39, .external_lex_state = 2}, + [1976] = {.lex_state = 39, .external_lex_state = 5}, + [1977] = {.lex_state = 39, .external_lex_state = 2}, + [1978] = {.lex_state = 39, .external_lex_state = 2}, + [1979] = {.lex_state = 39, .external_lex_state = 5}, + [1980] = {.lex_state = 39, .external_lex_state = 2}, + [1981] = {.lex_state = 39, .external_lex_state = 3}, + [1982] = {.lex_state = 39, .external_lex_state = 2}, + [1983] = {.lex_state = 39, .external_lex_state = 2}, + [1984] = {.lex_state = 39, .external_lex_state = 2}, + [1985] = {.lex_state = 39, .external_lex_state = 2}, + [1986] = {.lex_state = 39, .external_lex_state = 2}, + [1987] = {.lex_state = 39, .external_lex_state = 2}, + [1988] = {.lex_state = 39, .external_lex_state = 2}, + [1989] = {.lex_state = 39, .external_lex_state = 2}, [1990] = {.lex_state = 39, .external_lex_state = 2}, - [1991] = {.lex_state = 39, .external_lex_state = 3}, - [1992] = {.lex_state = 39, .external_lex_state = 3}, - [1993] = {.lex_state = 39, .external_lex_state = 3}, + [1991] = {.lex_state = 39, .external_lex_state = 2}, + [1992] = {.lex_state = 39, .external_lex_state = 4}, + [1993] = {.lex_state = 39, .external_lex_state = 2}, [1994] = {.lex_state = 39, .external_lex_state = 2}, [1995] = {.lex_state = 39, .external_lex_state = 2}, - [1996] = {.lex_state = 39, .external_lex_state = 3}, - [1997] = {.lex_state = 39, .external_lex_state = 3}, - [1998] = {.lex_state = 39, .external_lex_state = 3}, - [1999] = {.lex_state = 39, .external_lex_state = 3}, - [2000] = {.lex_state = 39, .external_lex_state = 3}, - [2001] = {.lex_state = 39, .external_lex_state = 3}, - [2002] = {.lex_state = 39, .external_lex_state = 4}, + [1996] = {.lex_state = 39, .external_lex_state = 2}, + [1997] = {.lex_state = 39, .external_lex_state = 2}, + [1998] = {.lex_state = 39, .external_lex_state = 2}, + [1999] = {.lex_state = 39, .external_lex_state = 2}, + [2000] = {.lex_state = 39, .external_lex_state = 2}, + [2001] = {.lex_state = 39, .external_lex_state = 4}, + [2002] = {.lex_state = 39, .external_lex_state = 2}, [2003] = {.lex_state = 39, .external_lex_state = 2}, - [2004] = {.lex_state = 39, .external_lex_state = 4}, - [2005] = {.lex_state = 39, .external_lex_state = 3}, - [2006] = {.lex_state = 39, .external_lex_state = 4}, - [2007] = {.lex_state = 39, .external_lex_state = 3}, - [2008] = {.lex_state = 39, .external_lex_state = 3}, + [2004] = {.lex_state = 39, .external_lex_state = 2}, + [2005] = {.lex_state = 39, .external_lex_state = 2}, + [2006] = {.lex_state = 39, .external_lex_state = 2}, + [2007] = {.lex_state = 39, .external_lex_state = 2}, + [2008] = {.lex_state = 39, .external_lex_state = 2}, [2009] = {.lex_state = 39, .external_lex_state = 2}, - [2010] = {.lex_state = 39, .external_lex_state = 5}, - [2011] = {.lex_state = 39, .external_lex_state = 3}, + [2010] = {.lex_state = 39, .external_lex_state = 2}, + [2011] = {.lex_state = 39, .external_lex_state = 2}, [2012] = {.lex_state = 39, .external_lex_state = 2}, [2013] = {.lex_state = 39, .external_lex_state = 2}, - [2014] = {.lex_state = 39, .external_lex_state = 5}, - [2015] = {.lex_state = 39, .external_lex_state = 3}, + [2014] = {.lex_state = 39, .external_lex_state = 2}, + [2015] = {.lex_state = 39, .external_lex_state = 2}, [2016] = {.lex_state = 39, .external_lex_state = 2}, [2017] = {.lex_state = 39, .external_lex_state = 2}, [2018] = {.lex_state = 39, .external_lex_state = 2}, - [2019] = {.lex_state = 39, .external_lex_state = 4}, + [2019] = {.lex_state = 39, .external_lex_state = 2}, [2020] = {.lex_state = 39, .external_lex_state = 2}, [2021] = {.lex_state = 39, .external_lex_state = 2}, [2022] = {.lex_state = 39, .external_lex_state = 2}, - [2023] = {.lex_state = 39, .external_lex_state = 5}, + [2023] = {.lex_state = 39, .external_lex_state = 2}, [2024] = {.lex_state = 39, .external_lex_state = 2}, [2025] = {.lex_state = 39, .external_lex_state = 2}, [2026] = {.lex_state = 39, .external_lex_state = 2}, [2027] = {.lex_state = 39, .external_lex_state = 2}, - [2028] = {.lex_state = 39, .external_lex_state = 4}, - [2029] = {.lex_state = 39, .external_lex_state = 3}, - [2030] = {.lex_state = 39, .external_lex_state = 4}, - [2031] = {.lex_state = 39, .external_lex_state = 4}, + [2028] = {.lex_state = 39, .external_lex_state = 5}, + [2029] = {.lex_state = 39, .external_lex_state = 2}, + [2030] = {.lex_state = 39, .external_lex_state = 2}, + [2031] = {.lex_state = 39, .external_lex_state = 2}, [2032] = {.lex_state = 39, .external_lex_state = 2}, [2033] = {.lex_state = 39, .external_lex_state = 2}, [2034] = {.lex_state = 39, .external_lex_state = 2}, - [2035] = {.lex_state = 39, .external_lex_state = 5}, + [2035] = {.lex_state = 39, .external_lex_state = 2}, [2036] = {.lex_state = 39, .external_lex_state = 2}, - [2037] = {.lex_state = 39, .external_lex_state = 3}, - [2038] = {.lex_state = 39, .external_lex_state = 3}, - [2039] = {.lex_state = 39, .external_lex_state = 3}, - [2040] = {.lex_state = 39, .external_lex_state = 4}, - [2041] = {.lex_state = 39, .external_lex_state = 5}, - [2042] = {.lex_state = 39, .external_lex_state = 3}, + [2037] = {.lex_state = 39, .external_lex_state = 2}, + [2038] = {.lex_state = 39, .external_lex_state = 2}, + [2039] = {.lex_state = 39, .external_lex_state = 2}, + [2040] = {.lex_state = 39, .external_lex_state = 2}, + [2041] = {.lex_state = 39, .external_lex_state = 3}, + [2042] = {.lex_state = 39, .external_lex_state = 2}, [2043] = {.lex_state = 39, .external_lex_state = 2}, [2044] = {.lex_state = 39, .external_lex_state = 2}, [2045] = {.lex_state = 39, .external_lex_state = 2}, [2046] = {.lex_state = 39, .external_lex_state = 2}, - [2047] = {.lex_state = 39, .external_lex_state = 5}, - [2048] = {.lex_state = 39, .external_lex_state = 2}, - [2049] = {.lex_state = 39, .external_lex_state = 5}, - [2050] = {.lex_state = 39, .external_lex_state = 3}, + [2047] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 2}, [2052] = {.lex_state = 39, .external_lex_state = 2}, - [2053] = {.lex_state = 39, .external_lex_state = 3}, + [2053] = {.lex_state = 39, .external_lex_state = 2}, [2054] = {.lex_state = 39, .external_lex_state = 2}, - [2055] = {.lex_state = 39, .external_lex_state = 5}, - [2056] = {.lex_state = 39, .external_lex_state = 4}, - [2057] = {.lex_state = 39, .external_lex_state = 3}, + [2055] = {.lex_state = 39, .external_lex_state = 2}, + [2056] = {.lex_state = 39, .external_lex_state = 3}, + [2057] = {.lex_state = 39, .external_lex_state = 2}, [2058] = {.lex_state = 39, .external_lex_state = 2}, - [2059] = {.lex_state = 39, .external_lex_state = 3}, - [2060] = {.lex_state = 39, .external_lex_state = 4}, + [2059] = {.lex_state = 39, .external_lex_state = 2}, + [2060] = {.lex_state = 39, .external_lex_state = 2}, [2061] = {.lex_state = 39, .external_lex_state = 2}, - [2062] = {.lex_state = 39, .external_lex_state = 3}, + [2062] = {.lex_state = 39, .external_lex_state = 2}, [2063] = {.lex_state = 39, .external_lex_state = 2}, [2064] = {.lex_state = 39, .external_lex_state = 2}, - [2065] = {.lex_state = 39, .external_lex_state = 3}, + [2065] = {.lex_state = 39, .external_lex_state = 2}, [2066] = {.lex_state = 39, .external_lex_state = 3}, - [2067] = {.lex_state = 39, .external_lex_state = 3}, - [2068] = {.lex_state = 39, .external_lex_state = 3}, - [2069] = {.lex_state = 39, .external_lex_state = 4}, + [2067] = {.lex_state = 39, .external_lex_state = 2}, + [2068] = {.lex_state = 39, .external_lex_state = 2}, + [2069] = {.lex_state = 39, .external_lex_state = 2}, [2070] = {.lex_state = 39, .external_lex_state = 2}, - [2071] = {.lex_state = 39, .external_lex_state = 4}, - [2072] = {.lex_state = 39, .external_lex_state = 5}, - [2073] = {.lex_state = 39, .external_lex_state = 3}, - [2074] = {.lex_state = 39, .external_lex_state = 4}, - [2075] = {.lex_state = 39, .external_lex_state = 3}, - [2076] = {.lex_state = 39, .external_lex_state = 4}, - [2077] = {.lex_state = 39, .external_lex_state = 3}, + [2071] = {.lex_state = 39, .external_lex_state = 2}, + [2072] = {.lex_state = 39, .external_lex_state = 2}, + [2073] = {.lex_state = 39, .external_lex_state = 2}, + [2074] = {.lex_state = 39, .external_lex_state = 2}, + [2075] = {.lex_state = 39, .external_lex_state = 2}, + [2076] = {.lex_state = 39, .external_lex_state = 2}, + [2077] = {.lex_state = 39, .external_lex_state = 2}, [2078] = {.lex_state = 39, .external_lex_state = 2}, - [2079] = {.lex_state = 39, .external_lex_state = 3}, - [2080] = {.lex_state = 39, .external_lex_state = 3}, - [2081] = {.lex_state = 39, .external_lex_state = 5}, - [2082] = {.lex_state = 39, .external_lex_state = 4}, - [2083] = {.lex_state = 39, .external_lex_state = 4}, - [2084] = {.lex_state = 39, .external_lex_state = 5}, + [2079] = {.lex_state = 39, .external_lex_state = 2}, + [2080] = {.lex_state = 39, .external_lex_state = 2}, + [2081] = {.lex_state = 39, .external_lex_state = 2}, + [2082] = {.lex_state = 39, .external_lex_state = 3}, + [2083] = {.lex_state = 39, .external_lex_state = 2}, + [2084] = {.lex_state = 39, .external_lex_state = 2}, [2085] = {.lex_state = 39, .external_lex_state = 2}, - [2086] = {.lex_state = 39, .external_lex_state = 3}, - [2087] = {.lex_state = 39, .external_lex_state = 3}, - [2088] = {.lex_state = 39, .external_lex_state = 5}, - [2089] = {.lex_state = 39, .external_lex_state = 4}, - [2090] = {.lex_state = 39, .external_lex_state = 5}, - [2091] = {.lex_state = 39, .external_lex_state = 5}, - [2092] = {.lex_state = 39, .external_lex_state = 5}, - [2093] = {.lex_state = 39, .external_lex_state = 5}, - [2094] = {.lex_state = 39, .external_lex_state = 5}, - [2095] = {.lex_state = 39, .external_lex_state = 5}, - [2096] = {.lex_state = 39, .external_lex_state = 4}, - [2097] = {.lex_state = 39, .external_lex_state = 4}, - [2098] = {.lex_state = 39, .external_lex_state = 3}, - [2099] = {.lex_state = 39, .external_lex_state = 4}, - [2100] = {.lex_state = 39, .external_lex_state = 5}, - [2101] = {.lex_state = 39, .external_lex_state = 5}, - [2102] = {.lex_state = 39, .external_lex_state = 5}, + [2086] = {.lex_state = 39, .external_lex_state = 2}, + [2087] = {.lex_state = 39, .external_lex_state = 2}, + [2088] = {.lex_state = 39, .external_lex_state = 2}, + [2089] = {.lex_state = 39, .external_lex_state = 2}, + [2090] = {.lex_state = 39, .external_lex_state = 2}, + [2091] = {.lex_state = 39, .external_lex_state = 2}, + [2092] = {.lex_state = 39, .external_lex_state = 2}, + [2093] = {.lex_state = 39, .external_lex_state = 2}, + [2094] = {.lex_state = 39, .external_lex_state = 2}, + [2095] = {.lex_state = 39, .external_lex_state = 2}, + [2096] = {.lex_state = 39, .external_lex_state = 2}, + [2097] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 4}, + [2102] = {.lex_state = 39, .external_lex_state = 2}, [2103] = {.lex_state = 39, .external_lex_state = 2}, - [2104] = {.lex_state = 39, .external_lex_state = 5}, + [2104] = {.lex_state = 39, .external_lex_state = 2}, [2105] = {.lex_state = 39, .external_lex_state = 2}, - [2106] = {.lex_state = 39, .external_lex_state = 5}, + [2106] = {.lex_state = 39, .external_lex_state = 2}, [2107] = {.lex_state = 39, .external_lex_state = 2}, - [2108] = {.lex_state = 39, .external_lex_state = 5}, - [2109] = {.lex_state = 39, .external_lex_state = 5}, - [2110] = {.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}, [2111] = {.lex_state = 39, .external_lex_state = 2}, - [2112] = {.lex_state = 39, .external_lex_state = 2}, - [2113] = {.lex_state = 39, .external_lex_state = 2}, + [2112] = {.lex_state = 39, .external_lex_state = 5}, + [2113] = {.lex_state = 39, .external_lex_state = 5}, [2114] = {.lex_state = 39, .external_lex_state = 2}, - [2115] = {.lex_state = 39, .external_lex_state = 7}, - [2116] = {.lex_state = 39, .external_lex_state = 5}, + [2115] = {.lex_state = 39, .external_lex_state = 2}, + [2116] = {.lex_state = 39, .external_lex_state = 2}, [2117] = {.lex_state = 39, .external_lex_state = 2}, [2118] = {.lex_state = 39, .external_lex_state = 2}, - [2119] = {.lex_state = 39, .external_lex_state = 5}, - [2120] = {.lex_state = 39, .external_lex_state = 2}, - [2121] = {.lex_state = 39, .external_lex_state = 5}, - [2122] = {.lex_state = 39, .external_lex_state = 2}, - [2123] = {.lex_state = 39, .external_lex_state = 2}, + [2119] = {.lex_state = 39, .external_lex_state = 2}, + [2120] = {.lex_state = 39, .external_lex_state = 5}, + [2121] = {.lex_state = 39, .external_lex_state = 2}, + [2122] = {.lex_state = 39, .external_lex_state = 5}, + [2123] = {.lex_state = 39, .external_lex_state = 4}, [2124] = {.lex_state = 39, .external_lex_state = 5}, - [2125] = {.lex_state = 39, .external_lex_state = 2}, + [2125] = {.lex_state = 39, .external_lex_state = 5}, [2126] = {.lex_state = 39, .external_lex_state = 5}, [2127] = {.lex_state = 39, .external_lex_state = 5}, - [2128] = {.lex_state = 39, .external_lex_state = 7}, - [2129] = {.lex_state = 39, .external_lex_state = 2}, - [2130] = {.lex_state = 39, .external_lex_state = 5}, + [2128] = {.lex_state = 39, .external_lex_state = 5}, + [2129] = {.lex_state = 39, .external_lex_state = 5}, + [2130] = {.lex_state = 39, .external_lex_state = 6}, [2131] = {.lex_state = 39, .external_lex_state = 5}, - [2132] = {.lex_state = 39, .external_lex_state = 2}, - [2133] = {.lex_state = 39, .external_lex_state = 2}, - [2134] = {.lex_state = 39, .external_lex_state = 2}, + [2132] = {.lex_state = 39, .external_lex_state = 5}, + [2133] = {.lex_state = 39, .external_lex_state = 5}, + [2134] = {.lex_state = 39, .external_lex_state = 5}, [2135] = {.lex_state = 39, .external_lex_state = 2}, [2136] = {.lex_state = 39, .external_lex_state = 2}, - [2137] = {.lex_state = 39, .external_lex_state = 6}, + [2137] = {.lex_state = 39, .external_lex_state = 5}, [2138] = {.lex_state = 39, .external_lex_state = 5}, - [2139] = {.lex_state = 39, .external_lex_state = 2}, - [2140] = {.lex_state = 39, .external_lex_state = 2}, + [2139] = {.lex_state = 39, .external_lex_state = 5}, + [2140] = {.lex_state = 39, .external_lex_state = 5}, [2141] = {.lex_state = 39, .external_lex_state = 2}, [2142] = {.lex_state = 39, .external_lex_state = 2}, - [2143] = {.lex_state = 39, .external_lex_state = 2}, - [2144] = {.lex_state = 39, .external_lex_state = 6}, - [2145] = {.lex_state = 39, .external_lex_state = 2}, + [2143] = {.lex_state = 39, .external_lex_state = 5}, + [2144] = {.lex_state = 39, .external_lex_state = 5}, + [2145] = {.lex_state = 39, .external_lex_state = 5}, [2146] = {.lex_state = 39, .external_lex_state = 5}, - [2147] = {.lex_state = 39, .external_lex_state = 2}, + [2147] = {.lex_state = 39, .external_lex_state = 5}, [2148] = {.lex_state = 39, .external_lex_state = 5}, - [2149] = {.lex_state = 39, .external_lex_state = 5}, - [2150] = {.lex_state = 39, .external_lex_state = 5}, - [2151] = {.lex_state = 39, .external_lex_state = 4}, - [2152] = {.lex_state = 39, .external_lex_state = 5}, - [2153] = {.lex_state = 39, .external_lex_state = 2}, + [2149] = {.lex_state = 39, .external_lex_state = 2}, + [2150] = {.lex_state = 39, .external_lex_state = 4}, + [2151] = {.lex_state = 39, .external_lex_state = 6}, + [2152] = {.lex_state = 39, .external_lex_state = 4}, + [2153] = {.lex_state = 39, .external_lex_state = 5}, [2154] = {.lex_state = 39, .external_lex_state = 5}, - [2155] = {.lex_state = 39, .external_lex_state = 3}, + [2155] = {.lex_state = 39, .external_lex_state = 5}, [2156] = {.lex_state = 39, .external_lex_state = 2}, [2157] = {.lex_state = 39, .external_lex_state = 5}, - [2158] = {.lex_state = 39, .external_lex_state = 6}, - [2159] = {.lex_state = 39, .external_lex_state = 5}, + [2158] = {.lex_state = 39, .external_lex_state = 5}, + [2159] = {.lex_state = 39, .external_lex_state = 2}, [2160] = {.lex_state = 39, .external_lex_state = 5}, [2161] = {.lex_state = 39, .external_lex_state = 2}, - [2162] = {.lex_state = 39, .external_lex_state = 2}, - [2163] = {.lex_state = 39, .external_lex_state = 2}, - [2164] = {.lex_state = 39, .external_lex_state = 2}, - [2165] = {.lex_state = 39, .external_lex_state = 2}, + [2162] = {.lex_state = 39, .external_lex_state = 5}, + [2163] = {.lex_state = 39, .external_lex_state = 5}, + [2164] = {.lex_state = 39, .external_lex_state = 5}, + [2165] = {.lex_state = 39, .external_lex_state = 5}, [2166] = {.lex_state = 39, .external_lex_state = 5}, - [2167] = {.lex_state = 39, .external_lex_state = 2}, - [2168] = {.lex_state = 39, .external_lex_state = 2}, - [2169] = {.lex_state = 39, .external_lex_state = 2}, + [2167] = {.lex_state = 39, .external_lex_state = 5}, + [2168] = {.lex_state = 39, .external_lex_state = 5}, + [2169] = {.lex_state = 39, .external_lex_state = 5}, [2170] = {.lex_state = 39, .external_lex_state = 2}, - [2171] = {.lex_state = 39, .external_lex_state = 5}, - [2172] = {.lex_state = 39, .external_lex_state = 7}, + [2171] = {.lex_state = 39, .external_lex_state = 2}, + [2172] = {.lex_state = 39, .external_lex_state = 2}, [2173] = {.lex_state = 39, .external_lex_state = 5}, [2174] = {.lex_state = 39, .external_lex_state = 2}, [2175] = {.lex_state = 39, .external_lex_state = 2}, [2176] = {.lex_state = 39, .external_lex_state = 2}, [2177] = {.lex_state = 39, .external_lex_state = 5}, [2178] = {.lex_state = 39, .external_lex_state = 2}, - [2179] = {.lex_state = 39, .external_lex_state = 5}, - [2180] = {.lex_state = 39, .external_lex_state = 5}, - [2181] = {.lex_state = 39, .external_lex_state = 5}, + [2179] = {.lex_state = 39, .external_lex_state = 2}, + [2180] = {.lex_state = 39, .external_lex_state = 2}, + [2181] = {.lex_state = 39, .external_lex_state = 2}, [2182] = {.lex_state = 39, .external_lex_state = 5}, - [2183] = {.lex_state = 39, .external_lex_state = 5}, - [2184] = {.lex_state = 39, .external_lex_state = 5}, + [2183] = {.lex_state = 39, .external_lex_state = 2}, + [2184] = {.lex_state = 39, .external_lex_state = 2}, [2185] = {.lex_state = 39, .external_lex_state = 2}, [2186] = {.lex_state = 39, .external_lex_state = 2}, [2187] = {.lex_state = 39, .external_lex_state = 5}, [2188] = {.lex_state = 39, .external_lex_state = 2}, - [2189] = {.lex_state = 39, .external_lex_state = 5}, + [2189] = {.lex_state = 39, .external_lex_state = 3}, [2190] = {.lex_state = 39, .external_lex_state = 5}, - [2191] = {.lex_state = 39, .external_lex_state = 2}, + [2191] = {.lex_state = 39, .external_lex_state = 5}, [2192] = {.lex_state = 39, .external_lex_state = 5}, - [2193] = {.lex_state = 39, .external_lex_state = 5}, - [2194] = {.lex_state = 39, .external_lex_state = 4}, + [2193] = {.lex_state = 39, .external_lex_state = 2}, + [2194] = {.lex_state = 39, .external_lex_state = 5}, [2195] = {.lex_state = 39, .external_lex_state = 2}, [2196] = {.lex_state = 39, .external_lex_state = 2}, - [2197] = {.lex_state = 39, .external_lex_state = 5}, - [2198] = {.lex_state = 39, .external_lex_state = 5}, - [2199] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 5}, [2201] = {.lex_state = 39, .external_lex_state = 2}, - [2202] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 5}, - [2206] = {.lex_state = 39, .external_lex_state = 5}, + [2204] = {.lex_state = 39, .external_lex_state = 3}, + [2205] = {.lex_state = 39, .external_lex_state = 6}, + [2206] = {.lex_state = 39, .external_lex_state = 2}, [2207] = {.lex_state = 39, .external_lex_state = 2}, - [2208] = {.lex_state = 39, .external_lex_state = 5}, - [2209] = {.lex_state = 39, .external_lex_state = 3}, - [2210] = {.lex_state = 39, .external_lex_state = 5}, - [2211] = {.lex_state = 39, .external_lex_state = 2}, - [2212] = {.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 = 5}, + [2212] = {.lex_state = 39, .external_lex_state = 5}, [2213] = {.lex_state = 39, .external_lex_state = 2}, - [2214] = {.lex_state = 39, .external_lex_state = 5}, - [2215] = {.lex_state = 39, .external_lex_state = 5}, + [2214] = {.lex_state = 39, .external_lex_state = 2}, + [2215] = {.lex_state = 39, .external_lex_state = 2}, [2216] = {.lex_state = 39, .external_lex_state = 2}, - [2217] = {.lex_state = 39, .external_lex_state = 5}, + [2217] = {.lex_state = 39, .external_lex_state = 2}, [2218] = {.lex_state = 39, .external_lex_state = 2}, - [2219] = {.lex_state = 39, .external_lex_state = 5}, - [2220] = {.lex_state = 39, .external_lex_state = 5}, - [2221] = {.lex_state = 39, .external_lex_state = 5}, + [2219] = {.lex_state = 39, .external_lex_state = 2}, + [2220] = {.lex_state = 39, .external_lex_state = 2}, + [2221] = {.lex_state = 39, .external_lex_state = 2}, [2222] = {.lex_state = 39, .external_lex_state = 2}, - [2223] = {.lex_state = 39, .external_lex_state = 2}, - [2224] = {.lex_state = 39, .external_lex_state = 2}, - [2225] = {.lex_state = 39, .external_lex_state = 2}, + [2223] = {.lex_state = 39, .external_lex_state = 5}, + [2224] = {.lex_state = 39, .external_lex_state = 3}, + [2225] = {.lex_state = 39, .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 = 5}, - [2229] = {.lex_state = 39, .external_lex_state = 5}, + [2228] = {.lex_state = 39, .external_lex_state = 2}, + [2229] = {.lex_state = 39, .external_lex_state = 2}, [2230] = {.lex_state = 39, .external_lex_state = 2}, [2231] = {.lex_state = 39, .external_lex_state = 2}, [2232] = {.lex_state = 39, .external_lex_state = 5}, - [2233] = {.lex_state = 39, .external_lex_state = 5}, - [2234] = {.lex_state = 39, .external_lex_state = 6}, - [2235] = {.lex_state = 39, .external_lex_state = 6}, - [2236] = {.lex_state = 39, .external_lex_state = 2}, + [2233] = {.lex_state = 39, .external_lex_state = 2}, + [2234] = {.lex_state = 39, .external_lex_state = 5}, + [2235] = {.lex_state = 39, .external_lex_state = 2}, + [2236] = {.lex_state = 39, .external_lex_state = 5}, [2237] = {.lex_state = 39, .external_lex_state = 5}, - [2238] = {.lex_state = 39, .external_lex_state = 6}, - [2239] = {.lex_state = 39, .external_lex_state = 2}, - [2240] = {.lex_state = 39, .external_lex_state = 5}, - [2241] = {.lex_state = 39, .external_lex_state = 8}, - [2242] = {.lex_state = 39, .external_lex_state = 2}, + [2238] = {.lex_state = 39, .external_lex_state = 5}, + [2239] = {.lex_state = 39, .external_lex_state = 5}, + [2240] = {.lex_state = 39, .external_lex_state = 2}, + [2241] = {.lex_state = 39, .external_lex_state = 2}, + [2242] = {.lex_state = 39, .external_lex_state = 5}, [2243] = {.lex_state = 39, .external_lex_state = 2}, - [2244] = {.lex_state = 39, .external_lex_state = 8}, - [2245] = {.lex_state = 39, .external_lex_state = 8}, + [2244] = {.lex_state = 39, .external_lex_state = 5}, + [2245] = {.lex_state = 39, .external_lex_state = 2}, [2246] = {.lex_state = 39, .external_lex_state = 2}, - [2247] = {.lex_state = 39, .external_lex_state = 6}, - [2248] = {.lex_state = 39, .external_lex_state = 7}, - [2249] = {.lex_state = 39, .external_lex_state = 7}, - [2250] = {.lex_state = 39, .external_lex_state = 7}, - [2251] = {.lex_state = 3, .external_lex_state = 7}, - [2252] = {.lex_state = 39, .external_lex_state = 7}, - [2253] = {.lex_state = 39, .external_lex_state = 7}, + [2247] = {.lex_state = 39, .external_lex_state = 2}, + [2248] = {.lex_state = 39, .external_lex_state = 2}, + [2249] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 5}, [2254] = {.lex_state = 39, .external_lex_state = 2}, - [2255] = {.lex_state = 39, .external_lex_state = 7}, - [2256] = {.lex_state = 39, .external_lex_state = 7}, - [2257] = {.lex_state = 39, .external_lex_state = 7}, - [2258] = {.lex_state = 39, .external_lex_state = 7}, - [2259] = {.lex_state = 39, .external_lex_state = 6}, + [2255] = {.lex_state = 39, .external_lex_state = 2}, + [2256] = {.lex_state = 39, .external_lex_state = 5}, + [2257] = {.lex_state = 39, .external_lex_state = 2}, + [2258] = {.lex_state = 39, .external_lex_state = 2}, + [2259] = {.lex_state = 39, .external_lex_state = 2}, [2260] = {.lex_state = 39, .external_lex_state = 7}, - [2261] = {.lex_state = 39, .external_lex_state = 6}, + [2261] = {.lex_state = 39, .external_lex_state = 4}, [2262] = {.lex_state = 39, .external_lex_state = 6}, [2263] = {.lex_state = 39, .external_lex_state = 6}, - [2264] = {.lex_state = 39, .external_lex_state = 6}, + [2264] = {.lex_state = 39, .external_lex_state = 3}, [2265] = {.lex_state = 39, .external_lex_state = 7}, [2266] = {.lex_state = 39, .external_lex_state = 7}, - [2267] = {.lex_state = 3, .external_lex_state = 7}, - [2268] = {.lex_state = 39, .external_lex_state = 6}, - [2269] = {.lex_state = 39, .external_lex_state = 6}, - [2270] = {.lex_state = 39, .external_lex_state = 7}, - [2271] = {.lex_state = 39, .external_lex_state = 7}, - [2272] = {.lex_state = 39, .external_lex_state = 7}, - [2273] = {.lex_state = 39, .external_lex_state = 6}, - [2274] = {.lex_state = 39, .external_lex_state = 6}, - [2275] = {.lex_state = 39, .external_lex_state = 6}, - [2276] = {.lex_state = 39, .external_lex_state = 6}, - [2277] = {.lex_state = 39, .external_lex_state = 6}, + [2267] = {.lex_state = 39, .external_lex_state = 2}, + [2268] = {.lex_state = 39, .external_lex_state = 2}, + [2269] = {.lex_state = 39, .external_lex_state = 5}, + [2270] = {.lex_state = 39, .external_lex_state = 5}, + [2271] = {.lex_state = 39, .external_lex_state = 6}, + [2272] = {.lex_state = 39, .external_lex_state = 5}, + [2273] = {.lex_state = 39, .external_lex_state = 2}, + [2274] = {.lex_state = 39, .external_lex_state = 2}, + [2275] = {.lex_state = 39, .external_lex_state = 2}, + [2276] = {.lex_state = 39, .external_lex_state = 5}, + [2277] = {.lex_state = 39, .external_lex_state = 2}, [2278] = {.lex_state = 39, .external_lex_state = 6}, [2279] = {.lex_state = 39, .external_lex_state = 6}, [2280] = {.lex_state = 39, .external_lex_state = 6}, - [2281] = {.lex_state = 39, .external_lex_state = 7}, + [2281] = {.lex_state = 39, .external_lex_state = 6}, [2282] = {.lex_state = 39, .external_lex_state = 6}, - [2283] = {.lex_state = 39, .external_lex_state = 7}, + [2283] = {.lex_state = 39, .external_lex_state = 6}, [2284] = {.lex_state = 39, .external_lex_state = 6}, [2285] = {.lex_state = 39, .external_lex_state = 6}, [2286] = {.lex_state = 39, .external_lex_state = 6}, [2287] = {.lex_state = 39, .external_lex_state = 6}, [2288] = {.lex_state = 39, .external_lex_state = 6}, [2289] = {.lex_state = 39, .external_lex_state = 6}, - [2290] = {.lex_state = 39, .external_lex_state = 7}, + [2290] = {.lex_state = 39, .external_lex_state = 2}, [2291] = {.lex_state = 39, .external_lex_state = 6}, - [2292] = {.lex_state = 39, .external_lex_state = 6}, - [2293] = {.lex_state = 39, .external_lex_state = 2}, + [2292] = {.lex_state = 39, .external_lex_state = 8}, + [2293] = {.lex_state = 39, .external_lex_state = 6}, [2294] = {.lex_state = 39, .external_lex_state = 6}, [2295] = {.lex_state = 39, .external_lex_state = 6}, - [2296] = {.lex_state = 39, .external_lex_state = 7}, + [2296] = {.lex_state = 39, .external_lex_state = 6}, [2297] = {.lex_state = 39, .external_lex_state = 6}, [2298] = {.lex_state = 39, .external_lex_state = 6}, - [2299] = {.lex_state = 39, .external_lex_state = 7}, + [2299] = {.lex_state = 39, .external_lex_state = 6}, [2300] = {.lex_state = 39, .external_lex_state = 6}, [2301] = {.lex_state = 39, .external_lex_state = 6}, - [2302] = {.lex_state = 3, .external_lex_state = 7}, + [2302] = {.lex_state = 39, .external_lex_state = 6}, [2303] = {.lex_state = 39, .external_lex_state = 6}, [2304] = {.lex_state = 39, .external_lex_state = 6}, [2305] = {.lex_state = 39, .external_lex_state = 6}, [2306] = {.lex_state = 39, .external_lex_state = 6}, [2307] = {.lex_state = 39, .external_lex_state = 6}, - [2308] = {.lex_state = 39, .external_lex_state = 6}, - [2309] = {.lex_state = 39, .external_lex_state = 7}, - [2310] = {.lex_state = 39, .external_lex_state = 7}, - [2311] = {.lex_state = 39, .external_lex_state = 7}, + [2308] = {.lex_state = 39, .external_lex_state = 8}, + [2309] = {.lex_state = 39, .external_lex_state = 6}, + [2310] = {.lex_state = 39, .external_lex_state = 6}, + [2311] = {.lex_state = 39, .external_lex_state = 6}, [2312] = {.lex_state = 39, .external_lex_state = 6}, [2313] = {.lex_state = 39, .external_lex_state = 6}, - [2314] = {.lex_state = 39, .external_lex_state = 7}, - [2315] = {.lex_state = 39, .external_lex_state = 7}, - [2316] = {.lex_state = 39, .external_lex_state = 7}, - [2317] = {.lex_state = 39, .external_lex_state = 7}, + [2314] = {.lex_state = 39, .external_lex_state = 6}, + [2315] = {.lex_state = 39, .external_lex_state = 6}, + [2316] = {.lex_state = 39, .external_lex_state = 6}, + [2317] = {.lex_state = 39, .external_lex_state = 6}, [2318] = {.lex_state = 39, .external_lex_state = 6}, [2319] = {.lex_state = 39, .external_lex_state = 6}, [2320] = {.lex_state = 39, .external_lex_state = 6}, - [2321] = {.lex_state = 39, .external_lex_state = 7}, - [2322] = {.lex_state = 39, .external_lex_state = 7}, - [2323] = {.lex_state = 39, .external_lex_state = 7}, - [2324] = {.lex_state = 39, .external_lex_state = 7}, - [2325] = {.lex_state = 39, .external_lex_state = 9}, - [2326] = {.lex_state = 39, .external_lex_state = 7}, + [2321] = {.lex_state = 39, .external_lex_state = 6}, + [2322] = {.lex_state = 39, .external_lex_state = 2}, + [2323] = {.lex_state = 39, .external_lex_state = 8}, + [2324] = {.lex_state = 39, .external_lex_state = 6}, + [2325] = {.lex_state = 39, .external_lex_state = 6}, + [2326] = {.lex_state = 39, .external_lex_state = 6}, [2327] = {.lex_state = 39, .external_lex_state = 2}, [2328] = {.lex_state = 39, .external_lex_state = 6}, - [2329] = {.lex_state = 39, .external_lex_state = 6}, - [2330] = {.lex_state = 39, .external_lex_state = 7}, + [2329] = {.lex_state = 39, .external_lex_state = 7}, + [2330] = {.lex_state = 39, .external_lex_state = 6}, [2331] = {.lex_state = 39, .external_lex_state = 6}, - [2332] = {.lex_state = 39, .external_lex_state = 6}, + [2332] = {.lex_state = 39, .external_lex_state = 7}, [2333] = {.lex_state = 39, .external_lex_state = 6}, - [2334] = {.lex_state = 39, .external_lex_state = 6}, - [2335] = {.lex_state = 39, .external_lex_state = 6}, - [2336] = {.lex_state = 39, .external_lex_state = 4}, - [2337] = {.lex_state = 39, .external_lex_state = 9}, + [2334] = {.lex_state = 39, .external_lex_state = 7}, + [2335] = {.lex_state = 39, .external_lex_state = 7}, + [2336] = {.lex_state = 39, .external_lex_state = 7}, + [2337] = {.lex_state = 39, .external_lex_state = 6}, [2338] = {.lex_state = 39, .external_lex_state = 7}, [2339] = {.lex_state = 39, .external_lex_state = 6}, [2340] = {.lex_state = 39, .external_lex_state = 7}, - [2341] = {.lex_state = 39, .external_lex_state = 2}, + [2341] = {.lex_state = 39, .external_lex_state = 3}, [2342] = {.lex_state = 39, .external_lex_state = 6}, - [2343] = {.lex_state = 39, .external_lex_state = 6}, - [2344] = {.lex_state = 39, .external_lex_state = 9}, + [2343] = {.lex_state = 39, .external_lex_state = 2}, + [2344] = {.lex_state = 39, .external_lex_state = 6}, [2345] = {.lex_state = 39, .external_lex_state = 6}, [2346] = {.lex_state = 39, .external_lex_state = 6}, [2347] = {.lex_state = 39, .external_lex_state = 6}, - [2348] = {.lex_state = 39, .external_lex_state = 6}, + [2348] = {.lex_state = 39, .external_lex_state = 7}, [2349] = {.lex_state = 39, .external_lex_state = 7}, - [2350] = {.lex_state = 39, .external_lex_state = 6}, - [2351] = {.lex_state = 39, .external_lex_state = 6}, + [2350] = {.lex_state = 39, .external_lex_state = 2}, + [2351] = {.lex_state = 39, .external_lex_state = 7}, [2352] = {.lex_state = 39, .external_lex_state = 6}, [2353] = {.lex_state = 39, .external_lex_state = 6}, - [2354] = {.lex_state = 39, .external_lex_state = 6}, - [2355] = {.lex_state = 39, .external_lex_state = 6}, - [2356] = {.lex_state = 39, .external_lex_state = 2}, + [2354] = {.lex_state = 39, .external_lex_state = 7}, + [2355] = {.lex_state = 39, .external_lex_state = 7}, + [2356] = {.lex_state = 39, .external_lex_state = 6}, [2357] = {.lex_state = 39, .external_lex_state = 6}, [2358] = {.lex_state = 39, .external_lex_state = 6}, - [2359] = {.lex_state = 39, .external_lex_state = 4}, - [2360] = {.lex_state = 39, .external_lex_state = 6}, + [2359] = {.lex_state = 39, .external_lex_state = 6}, + [2360] = {.lex_state = 39, .external_lex_state = 7}, [2361] = {.lex_state = 39, .external_lex_state = 6}, [2362] = {.lex_state = 39, .external_lex_state = 6}, [2363] = {.lex_state = 39, .external_lex_state = 6}, - [2364] = {.lex_state = 39, .external_lex_state = 6}, - [2365] = {.lex_state = 39, .external_lex_state = 7}, - [2366] = {.lex_state = 39, .external_lex_state = 7}, + [2364] = {.lex_state = 3, .external_lex_state = 7}, + [2365] = {.lex_state = 39, .external_lex_state = 6}, + [2366] = {.lex_state = 39, .external_lex_state = 6}, [2367] = {.lex_state = 39, .external_lex_state = 6}, [2368] = {.lex_state = 39, .external_lex_state = 6}, - [2369] = {.lex_state = 39, .external_lex_state = 6}, + [2369] = {.lex_state = 39, .external_lex_state = 7}, [2370] = {.lex_state = 39, .external_lex_state = 6}, [2371] = {.lex_state = 39, .external_lex_state = 6}, - [2372] = {.lex_state = 39, .external_lex_state = 6}, - [2373] = {.lex_state = 39, .external_lex_state = 6}, - [2374] = {.lex_state = 39, .external_lex_state = 6}, - [2375] = {.lex_state = 39, .external_lex_state = 6}, + [2372] = {.lex_state = 39, .external_lex_state = 7}, + [2373] = {.lex_state = 39, .external_lex_state = 7}, + [2374] = {.lex_state = 39, .external_lex_state = 7}, + [2375] = {.lex_state = 39, .external_lex_state = 7}, [2376] = {.lex_state = 39, .external_lex_state = 6}, [2377] = {.lex_state = 39, .external_lex_state = 6}, [2378] = {.lex_state = 39, .external_lex_state = 6}, [2379] = {.lex_state = 39, .external_lex_state = 6}, - [2380] = {.lex_state = 39, .external_lex_state = 6}, - [2381] = {.lex_state = 39, .external_lex_state = 6}, - [2382] = {.lex_state = 39, .external_lex_state = 2}, - [2383] = {.lex_state = 39, .external_lex_state = 6}, - [2384] = {.lex_state = 39, .external_lex_state = 6}, - [2385] = {.lex_state = 39, .external_lex_state = 6}, - [2386] = {.lex_state = 39, .external_lex_state = 6}, + [2380] = {.lex_state = 39, .external_lex_state = 7}, + [2381] = {.lex_state = 39, .external_lex_state = 7}, + [2382] = {.lex_state = 39, .external_lex_state = 7}, + [2383] = {.lex_state = 39, .external_lex_state = 7}, + [2384] = {.lex_state = 39, .external_lex_state = 7}, + [2385] = {.lex_state = 39, .external_lex_state = 7}, + [2386] = {.lex_state = 39, .external_lex_state = 7}, [2387] = {.lex_state = 39, .external_lex_state = 7}, - [2388] = {.lex_state = 39, .external_lex_state = 7}, - [2389] = {.lex_state = 39, .external_lex_state = 7}, - [2390] = {.lex_state = 39, .external_lex_state = 2}, - [2391] = {.lex_state = 39, .external_lex_state = 7}, + [2388] = {.lex_state = 39, .external_lex_state = 6}, + [2389] = {.lex_state = 39, .external_lex_state = 6}, + [2390] = {.lex_state = 39, .external_lex_state = 7}, + [2391] = {.lex_state = 39, .external_lex_state = 6}, [2392] = {.lex_state = 39, .external_lex_state = 7}, - [2393] = {.lex_state = 39, .external_lex_state = 7}, - [2394] = {.lex_state = 39, .external_lex_state = 7}, - [2395] = {.lex_state = 39, .external_lex_state = 2}, - [2396] = {.lex_state = 39, .external_lex_state = 2}, - [2397] = {.lex_state = 39, .external_lex_state = 4}, - [2398] = {.lex_state = 39, .external_lex_state = 6}, + [2393] = {.lex_state = 39, .external_lex_state = 2}, + [2394] = {.lex_state = 39, .external_lex_state = 3}, + [2395] = {.lex_state = 39, .external_lex_state = 6}, + [2396] = {.lex_state = 39, .external_lex_state = 6}, + [2397] = {.lex_state = 3, .external_lex_state = 7}, + [2398] = {.lex_state = 39, .external_lex_state = 2}, [2399] = {.lex_state = 39, .external_lex_state = 6}, - [2400] = {.lex_state = 39, .external_lex_state = 7}, + [2400] = {.lex_state = 3, .external_lex_state = 7}, [2401] = {.lex_state = 39, .external_lex_state = 7}, [2402] = {.lex_state = 39, .external_lex_state = 7}, - [2403] = {.lex_state = 39, .external_lex_state = 7}, + [2403] = {.lex_state = 39, .external_lex_state = 6}, [2404] = {.lex_state = 39, .external_lex_state = 6}, - [2405] = {.lex_state = 39, .external_lex_state = 7}, - [2406] = {.lex_state = 39, .external_lex_state = 7}, + [2405] = {.lex_state = 39, .external_lex_state = 6}, + [2406] = {.lex_state = 39, .external_lex_state = 6}, [2407] = {.lex_state = 39, .external_lex_state = 6}, [2408] = {.lex_state = 39, .external_lex_state = 6}, - [2409] = {.lex_state = 39, .external_lex_state = 7}, - [2410] = {.lex_state = 39, .external_lex_state = 2}, - [2411] = {.lex_state = 39, .external_lex_state = 2}, - [2412] = {.lex_state = 39, .external_lex_state = 7}, - [2413] = {.lex_state = 39, .external_lex_state = 2}, - [2414] = {.lex_state = 39, .external_lex_state = 2}, - [2415] = {.lex_state = 39, .external_lex_state = 7}, - [2416] = {.lex_state = 39, .external_lex_state = 7}, - [2417] = {.lex_state = 39, .external_lex_state = 2}, - [2418] = {.lex_state = 39, .external_lex_state = 2}, - [2419] = {.lex_state = 39, .external_lex_state = 2}, - [2420] = {.lex_state = 39, .external_lex_state = 7}, - [2421] = {.lex_state = 39, .external_lex_state = 8}, + [2409] = {.lex_state = 39, .external_lex_state = 6}, + [2410] = {.lex_state = 39, .external_lex_state = 6}, + [2411] = {.lex_state = 39, .external_lex_state = 6}, + [2412] = {.lex_state = 39, .external_lex_state = 6}, + [2413] = {.lex_state = 39, .external_lex_state = 6}, + [2414] = {.lex_state = 39, .external_lex_state = 6}, + [2415] = {.lex_state = 39, .external_lex_state = 6}, + [2416] = {.lex_state = 39, .external_lex_state = 6}, + [2417] = {.lex_state = 39, .external_lex_state = 6}, + [2418] = {.lex_state = 39, .external_lex_state = 6}, + [2419] = {.lex_state = 39, .external_lex_state = 6}, + [2420] = {.lex_state = 39, .external_lex_state = 9}, + [2421] = {.lex_state = 39, .external_lex_state = 2}, [2422] = {.lex_state = 39, .external_lex_state = 7}, - [2423] = {.lex_state = 39, .external_lex_state = 7}, - [2424] = {.lex_state = 39, .external_lex_state = 7}, - [2425] = {.lex_state = 39, .external_lex_state = 7}, - [2426] = {.lex_state = 39, .external_lex_state = 7}, - [2427] = {.lex_state = 39, .external_lex_state = 7}, - [2428] = {.lex_state = 39, .external_lex_state = 2}, - [2429] = {.lex_state = 39, .external_lex_state = 7}, - [2430] = {.lex_state = 39, .external_lex_state = 6}, + [2423] = {.lex_state = 39, .external_lex_state = 2}, + [2424] = {.lex_state = 39, .external_lex_state = 2}, + [2425] = {.lex_state = 39, .external_lex_state = 2}, + [2426] = {.lex_state = 39, .external_lex_state = 2}, + [2427] = {.lex_state = 39, .external_lex_state = 2}, + [2428] = {.lex_state = 39, .external_lex_state = 7}, + [2429] = {.lex_state = 39, .external_lex_state = 3}, + [2430] = {.lex_state = 39, .external_lex_state = 2}, [2431] = {.lex_state = 39, .external_lex_state = 2}, - [2432] = {.lex_state = 39, .external_lex_state = 7}, - [2433] = {.lex_state = 39, .external_lex_state = 7}, - [2434] = {.lex_state = 39, .external_lex_state = 6}, - [2435] = {.lex_state = 39, .external_lex_state = 7}, + [2432] = {.lex_state = 39, .external_lex_state = 9}, + [2433] = {.lex_state = 39, .external_lex_state = 2}, + [2434] = {.lex_state = 39, .external_lex_state = 2}, + [2435] = {.lex_state = 39, .external_lex_state = 2}, [2436] = {.lex_state = 39, .external_lex_state = 7}, - [2437] = {.lex_state = 39, .external_lex_state = 2}, - [2438] = {.lex_state = 39, .external_lex_state = 7}, - [2439] = {.lex_state = 39, .external_lex_state = 7}, + [2437] = {.lex_state = 39, .external_lex_state = 7}, + [2438] = {.lex_state = 39, .external_lex_state = 2}, + [2439] = {.lex_state = 39, .external_lex_state = 2}, [2440] = {.lex_state = 39, .external_lex_state = 2}, - [2441] = {.lex_state = 39, .external_lex_state = 7}, - [2442] = {.lex_state = 39, .external_lex_state = 7}, + [2441] = {.lex_state = 39, .external_lex_state = 2}, + [2442] = {.lex_state = 39, .external_lex_state = 2}, [2443] = {.lex_state = 39, .external_lex_state = 2}, [2444] = {.lex_state = 39, .external_lex_state = 2}, [2445] = {.lex_state = 39, .external_lex_state = 2}, - [2446] = {.lex_state = 39, .external_lex_state = 2}, - [2447] = {.lex_state = 39, .external_lex_state = 7}, + [2446] = {.lex_state = 39, .external_lex_state = 6}, + [2447] = {.lex_state = 39, .external_lex_state = 2}, [2448] = {.lex_state = 39, .external_lex_state = 2}, - [2449] = {.lex_state = 39, .external_lex_state = 2}, - [2450] = {.lex_state = 39, .external_lex_state = 2}, - [2451] = {.lex_state = 39, .external_lex_state = 2}, - [2452] = {.lex_state = 39, .external_lex_state = 7}, - [2453] = {.lex_state = 39, .external_lex_state = 7}, + [2449] = {.lex_state = 39, .external_lex_state = 6}, + [2450] = {.lex_state = 39, .external_lex_state = 7}, + [2451] = {.lex_state = 39, .external_lex_state = 6}, + [2452] = {.lex_state = 39, .external_lex_state = 6}, + [2453] = {.lex_state = 39, .external_lex_state = 2}, [2454] = {.lex_state = 39, .external_lex_state = 7}, - [2455] = {.lex_state = 39, .external_lex_state = 7}, + [2455] = {.lex_state = 39, .external_lex_state = 2}, [2456] = {.lex_state = 39, .external_lex_state = 6}, - [2457] = {.lex_state = 39, .external_lex_state = 7}, - [2458] = {.lex_state = 39, .external_lex_state = 6}, - [2459] = {.lex_state = 39, .external_lex_state = 7}, - [2460] = {.lex_state = 39, .external_lex_state = 2}, - [2461] = {.lex_state = 39, .external_lex_state = 2}, + [2457] = {.lex_state = 39, .external_lex_state = 9}, + [2458] = {.lex_state = 39, .external_lex_state = 7}, + [2459] = {.lex_state = 39, .external_lex_state = 6}, + [2460] = {.lex_state = 39, .external_lex_state = 7}, + [2461] = {.lex_state = 39, .external_lex_state = 6}, [2462] = {.lex_state = 39, .external_lex_state = 2}, - [2463] = {.lex_state = 39, .external_lex_state = 7}, + [2463] = {.lex_state = 39, .external_lex_state = 6}, [2464] = {.lex_state = 39, .external_lex_state = 2}, [2465] = {.lex_state = 39, .external_lex_state = 2}, - [2466] = {.lex_state = 39, .external_lex_state = 8}, - [2467] = {.lex_state = 39, .external_lex_state = 8}, + [2466] = {.lex_state = 39, .external_lex_state = 6}, + [2467] = {.lex_state = 39, .external_lex_state = 2}, [2468] = {.lex_state = 39, .external_lex_state = 2}, [2469] = {.lex_state = 39, .external_lex_state = 2}, [2470] = {.lex_state = 39, .external_lex_state = 2}, - [2471] = {.lex_state = 39, .external_lex_state = 8}, - [2472] = {.lex_state = 39, .external_lex_state = 2}, - [2473] = {.lex_state = 39, .external_lex_state = 8}, - [2474] = {.lex_state = 39, .external_lex_state = 8}, - [2475] = {.lex_state = 39, .external_lex_state = 7}, + [2471] = {.lex_state = 39, .external_lex_state = 2}, + [2472] = {.lex_state = 39, .external_lex_state = 7}, + [2473] = {.lex_state = 39, .external_lex_state = 2}, + [2474] = {.lex_state = 39, .external_lex_state = 2}, + [2475] = {.lex_state = 39, .external_lex_state = 6}, [2476] = {.lex_state = 39, .external_lex_state = 2}, [2477] = {.lex_state = 39, .external_lex_state = 2}, [2478] = {.lex_state = 39, .external_lex_state = 2}, [2479] = {.lex_state = 39, .external_lex_state = 2}, - [2480] = {.lex_state = 39, .external_lex_state = 2}, - [2481] = {.lex_state = 39, .external_lex_state = 8}, - [2482] = {.lex_state = 39, .external_lex_state = 2}, - [2483] = {.lex_state = 39, .external_lex_state = 2}, - [2484] = {.lex_state = 39, .external_lex_state = 8}, - [2485] = {.lex_state = 39, .external_lex_state = 8}, - [2486] = {.lex_state = 39, .external_lex_state = 2}, - [2487] = {.lex_state = 39, .external_lex_state = 2}, - [2488] = {.lex_state = 39, .external_lex_state = 2}, + [2480] = {.lex_state = 39, .external_lex_state = 6}, + [2481] = {.lex_state = 39, .external_lex_state = 6}, + [2482] = {.lex_state = 39, .external_lex_state = 6}, + [2483] = {.lex_state = 39, .external_lex_state = 7}, + [2484] = {.lex_state = 39, .external_lex_state = 7}, + [2485] = {.lex_state = 39, .external_lex_state = 7}, + [2486] = {.lex_state = 39, .external_lex_state = 6}, + [2487] = {.lex_state = 39, .external_lex_state = 6}, + [2488] = {.lex_state = 39, .external_lex_state = 6}, [2489] = {.lex_state = 39, .external_lex_state = 2}, [2490] = {.lex_state = 39, .external_lex_state = 6}, - [2491] = {.lex_state = 39, .external_lex_state = 2}, - [2492] = {.lex_state = 39, .external_lex_state = 6}, - [2493] = {.lex_state = 39, .external_lex_state = 2}, - [2494] = {.lex_state = 39, .external_lex_state = 2}, - [2495] = {.lex_state = 39, .external_lex_state = 2}, - [2496] = {.lex_state = 39, .external_lex_state = 2}, - [2497] = {.lex_state = 39, .external_lex_state = 2}, - [2498] = {.lex_state = 39, .external_lex_state = 6}, - [2499] = {.lex_state = 39, .external_lex_state = 6}, + [2491] = {.lex_state = 39, .external_lex_state = 6}, + [2492] = {.lex_state = 39, .external_lex_state = 2}, + [2493] = {.lex_state = 39, .external_lex_state = 6}, + [2494] = {.lex_state = 39, .external_lex_state = 6}, + [2495] = {.lex_state = 39, .external_lex_state = 6}, + [2496] = {.lex_state = 39, .external_lex_state = 6}, + [2497] = {.lex_state = 39, .external_lex_state = 7}, + [2498] = {.lex_state = 39, .external_lex_state = 2}, + [2499] = {.lex_state = 39, .external_lex_state = 2}, [2500] = {.lex_state = 39, .external_lex_state = 2}, - [2501] = {.lex_state = 39, .external_lex_state = 8}, - [2502] = {.lex_state = 39, .external_lex_state = 8}, - [2503] = {.lex_state = 39, .external_lex_state = 8}, - [2504] = {.lex_state = 39, .external_lex_state = 8}, + [2501] = {.lex_state = 39, .external_lex_state = 2}, + [2502] = {.lex_state = 39, .external_lex_state = 2}, + [2503] = {.lex_state = 39, .external_lex_state = 2}, + [2504] = {.lex_state = 39, .external_lex_state = 2}, [2505] = {.lex_state = 39, .external_lex_state = 6}, - [2506] = {.lex_state = 39, .external_lex_state = 2}, - [2507] = {.lex_state = 39, .external_lex_state = 8}, - [2508] = {.lex_state = 39, .external_lex_state = 8}, - [2509] = {.lex_state = 39, .external_lex_state = 8}, - [2510] = {.lex_state = 39, .external_lex_state = 6}, - [2511] = {.lex_state = 39, .external_lex_state = 8}, - [2512] = {.lex_state = 39, .external_lex_state = 8}, - [2513] = {.lex_state = 39, .external_lex_state = 6}, - [2514] = {.lex_state = 39, .external_lex_state = 6}, - [2515] = {.lex_state = 39, .external_lex_state = 8}, - [2516] = {.lex_state = 39, .external_lex_state = 6}, + [2506] = {.lex_state = 39, .external_lex_state = 7}, + [2507] = {.lex_state = 39, .external_lex_state = 2}, + [2508] = {.lex_state = 39, .external_lex_state = 2}, + [2509] = {.lex_state = 39, .external_lex_state = 6}, + [2510] = {.lex_state = 39, .external_lex_state = 7}, + [2511] = {.lex_state = 39, .external_lex_state = 2}, + [2512] = {.lex_state = 39, .external_lex_state = 2}, + [2513] = {.lex_state = 39, .external_lex_state = 2}, + [2514] = {.lex_state = 39, .external_lex_state = 2}, + [2515] = {.lex_state = 39, .external_lex_state = 6}, + [2516] = {.lex_state = 39, .external_lex_state = 2}, [2517] = {.lex_state = 39, .external_lex_state = 6}, - [2518] = {.lex_state = 39, .external_lex_state = 8}, - [2519] = {.lex_state = 39, .external_lex_state = 7}, + [2518] = {.lex_state = 39, .external_lex_state = 6}, + [2519] = {.lex_state = 39, .external_lex_state = 2}, [2520] = {.lex_state = 39, .external_lex_state = 2}, - [2521] = {.lex_state = 39, .external_lex_state = 6}, - [2522] = {.lex_state = 39, .external_lex_state = 8}, - [2523] = {.lex_state = 39, .external_lex_state = 6}, - [2524] = {.lex_state = 39, .external_lex_state = 6}, + [2521] = {.lex_state = 39, .external_lex_state = 2}, + [2522] = {.lex_state = 39, .external_lex_state = 6}, + [2523] = {.lex_state = 39, .external_lex_state = 2}, + [2524] = {.lex_state = 39, .external_lex_state = 2}, [2525] = {.lex_state = 39, .external_lex_state = 6}, - [2526] = {.lex_state = 39, .external_lex_state = 2}, + [2526] = {.lex_state = 39, .external_lex_state = 6}, [2527] = {.lex_state = 39, .external_lex_state = 7}, - [2528] = {.lex_state = 39, .external_lex_state = 8}, - [2529] = {.lex_state = 39, .external_lex_state = 6}, + [2528] = {.lex_state = 39, .external_lex_state = 2}, + [2529] = {.lex_state = 39, .external_lex_state = 2}, [2530] = {.lex_state = 39, .external_lex_state = 6}, [2531] = {.lex_state = 39, .external_lex_state = 6}, - [2532] = {.lex_state = 39, .external_lex_state = 8}, + [2532] = {.lex_state = 39, .external_lex_state = 6}, [2533] = {.lex_state = 39, .external_lex_state = 6}, - [2534] = {.lex_state = 39, .external_lex_state = 6}, - [2535] = {.lex_state = 39, .external_lex_state = 8}, - [2536] = {.lex_state = 39, .external_lex_state = 7}, - [2537] = {.lex_state = 39, .external_lex_state = 6}, - [2538] = {.lex_state = 39, .external_lex_state = 8}, - [2539] = {.lex_state = 39, .external_lex_state = 8}, - [2540] = {.lex_state = 39, .external_lex_state = 2}, - [2541] = {.lex_state = 39, .external_lex_state = 7}, - [2542] = {.lex_state = 39, .external_lex_state = 2}, - [2543] = {.lex_state = 39, .external_lex_state = 6}, - [2544] = {.lex_state = 39, .external_lex_state = 8}, - [2545] = {.lex_state = 39, .external_lex_state = 7}, - [2546] = {.lex_state = 39, .external_lex_state = 7}, - [2547] = {.lex_state = 39, .external_lex_state = 6}, - [2548] = {.lex_state = 39, .external_lex_state = 7}, - [2549] = {.lex_state = 39, .external_lex_state = 6}, + [2534] = {.lex_state = 39, .external_lex_state = 2}, + [2535] = {.lex_state = 39, .external_lex_state = 2}, + [2536] = {.lex_state = 39, .external_lex_state = 2}, + [2537] = {.lex_state = 39, .external_lex_state = 2}, + [2538] = {.lex_state = 39, .external_lex_state = 2}, + [2539] = {.lex_state = 39, .external_lex_state = 6}, + [2540] = {.lex_state = 39, .external_lex_state = 6}, + [2541] = {.lex_state = 39, .external_lex_state = 2}, + [2542] = {.lex_state = 39, .external_lex_state = 6}, + [2543] = {.lex_state = 39, .external_lex_state = 2}, + [2544] = {.lex_state = 39, .external_lex_state = 2}, + [2545] = {.lex_state = 39, .external_lex_state = 2}, + [2546] = {.lex_state = 39, .external_lex_state = 2}, + [2547] = {.lex_state = 39, .external_lex_state = 2}, + [2548] = {.lex_state = 39, .external_lex_state = 2}, + [2549] = {.lex_state = 39, .external_lex_state = 2}, [2550] = {.lex_state = 39, .external_lex_state = 2}, - [2551] = {.lex_state = 39, .external_lex_state = 8}, + [2551] = {.lex_state = 39, .external_lex_state = 2}, [2552] = {.lex_state = 39, .external_lex_state = 2}, [2553] = {.lex_state = 39, .external_lex_state = 2}, - [2554] = {.lex_state = 39, .external_lex_state = 7}, - [2555] = {.lex_state = 39, .external_lex_state = 7}, - [2556] = {.lex_state = 39, .external_lex_state = 7}, + [2554] = {.lex_state = 39, .external_lex_state = 2}, + [2555] = {.lex_state = 39, .external_lex_state = 6}, + [2556] = {.lex_state = 39, .external_lex_state = 2}, [2557] = {.lex_state = 39, .external_lex_state = 2}, - [2558] = {.lex_state = 39, .external_lex_state = 6}, - [2559] = {.lex_state = 39, .external_lex_state = 8}, - [2560] = {.lex_state = 39, .external_lex_state = 2}, - [2561] = {.lex_state = 39, .external_lex_state = 7}, - [2562] = {.lex_state = 39, .external_lex_state = 2}, - [2563] = {.lex_state = 39, .external_lex_state = 2}, + [2558] = {.lex_state = 39, .external_lex_state = 7}, + [2559] = {.lex_state = 39, .external_lex_state = 2}, + [2560] = {.lex_state = 39, .external_lex_state = 7}, + [2561] = {.lex_state = 39, .external_lex_state = 2}, + [2562] = {.lex_state = 39, .external_lex_state = 7}, + [2563] = {.lex_state = 39, .external_lex_state = 6}, [2564] = {.lex_state = 39, .external_lex_state = 6}, [2565] = {.lex_state = 39, .external_lex_state = 2}, - [2566] = {.lex_state = 39, .external_lex_state = 2}, - [2567] = {.lex_state = 39, .external_lex_state = 2}, - [2568] = {.lex_state = 39, .external_lex_state = 2}, + [2566] = {.lex_state = 39, .external_lex_state = 6}, + [2567] = {.lex_state = 39, .external_lex_state = 7}, + [2568] = {.lex_state = 39, .external_lex_state = 6}, [2569] = {.lex_state = 39, .external_lex_state = 6}, - [2570] = {.lex_state = 39, .external_lex_state = 2}, - [2571] = {.lex_state = 39, .external_lex_state = 2}, - [2572] = {.lex_state = 39, .external_lex_state = 2}, - [2573] = {.lex_state = 39, .external_lex_state = 2}, - [2574] = {.lex_state = 39, .external_lex_state = 2}, - [2575] = {.lex_state = 39, .external_lex_state = 2}, - [2576] = {.lex_state = 39, .external_lex_state = 2}, - [2577] = {.lex_state = 39, .external_lex_state = 2}, - [2578] = {.lex_state = 39, .external_lex_state = 7}, - [2579] = {.lex_state = 39, .external_lex_state = 2}, - [2580] = {.lex_state = 39, .external_lex_state = 2}, - [2581] = {.lex_state = 39, .external_lex_state = 6}, - [2582] = {.lex_state = 39, .external_lex_state = 6}, - [2583] = {.lex_state = 39, .external_lex_state = 6}, - [2584] = {.lex_state = 39, .external_lex_state = 6}, - [2585] = {.lex_state = 39, .external_lex_state = 6}, - [2586] = {.lex_state = 39, .external_lex_state = 6}, + [2570] = {.lex_state = 39, .external_lex_state = 6}, + [2571] = {.lex_state = 39, .external_lex_state = 6}, + [2572] = {.lex_state = 39, .external_lex_state = 6}, + [2573] = {.lex_state = 39, .external_lex_state = 6}, + [2574] = {.lex_state = 39, .external_lex_state = 7}, + [2575] = {.lex_state = 39, .external_lex_state = 6}, + [2576] = {.lex_state = 39, .external_lex_state = 6}, + [2577] = {.lex_state = 39, .external_lex_state = 6}, + [2578] = {.lex_state = 39, .external_lex_state = 2}, + [2579] = {.lex_state = 39, .external_lex_state = 6}, + [2580] = {.lex_state = 39, .external_lex_state = 6}, + [2581] = {.lex_state = 39, .external_lex_state = 2}, + [2582] = {.lex_state = 39, .external_lex_state = 7}, + [2583] = {.lex_state = 39, .external_lex_state = 2}, + [2584] = {.lex_state = 39, .external_lex_state = 2}, + [2585] = {.lex_state = 39, .external_lex_state = 2}, + [2586] = {.lex_state = 39, .external_lex_state = 2}, [2587] = {.lex_state = 39, .external_lex_state = 6}, [2588] = {.lex_state = 39, .external_lex_state = 2}, - [2589] = {.lex_state = 39, .external_lex_state = 6}, - [2590] = {.lex_state = 39, .external_lex_state = 2}, - [2591] = {.lex_state = 39, .external_lex_state = 8}, + [2589] = {.lex_state = 39, .external_lex_state = 2}, + [2590] = {.lex_state = 39, .external_lex_state = 6}, + [2591] = {.lex_state = 39, .external_lex_state = 2}, [2592] = {.lex_state = 39, .external_lex_state = 6}, - [2593] = {.lex_state = 39, .external_lex_state = 2}, - [2594] = {.lex_state = 39, .external_lex_state = 2}, + [2593] = {.lex_state = 39, .external_lex_state = 6}, + [2594] = {.lex_state = 39, .external_lex_state = 7}, [2595] = {.lex_state = 39, .external_lex_state = 6}, - [2596] = {.lex_state = 39, .external_lex_state = 2}, + [2596] = {.lex_state = 39, .external_lex_state = 6}, [2597] = {.lex_state = 39, .external_lex_state = 6}, - [2598] = {.lex_state = 39, .external_lex_state = 6}, - [2599] = {.lex_state = 39, .external_lex_state = 6}, - [2600] = {.lex_state = 39, .external_lex_state = 7}, - [2601] = {.lex_state = 39, .external_lex_state = 6}, - [2602] = {.lex_state = 39, .external_lex_state = 6}, - [2603] = {.lex_state = 39, .external_lex_state = 6}, - [2604] = {.lex_state = 39, .external_lex_state = 6}, - [2605] = {.lex_state = 39, .external_lex_state = 2}, + [2598] = {.lex_state = 39, .external_lex_state = 2}, + [2599] = {.lex_state = 39, .external_lex_state = 2}, + [2600] = {.lex_state = 39, .external_lex_state = 6}, + [2601] = {.lex_state = 39, .external_lex_state = 2}, + [2602] = {.lex_state = 39, .external_lex_state = 7}, + [2603] = {.lex_state = 39, .external_lex_state = 2}, + [2604] = {.lex_state = 39, .external_lex_state = 2}, + [2605] = {.lex_state = 39, .external_lex_state = 8}, [2606] = {.lex_state = 39, .external_lex_state = 7}, - [2607] = {.lex_state = 39, .external_lex_state = 2}, - [2608] = {.lex_state = 39, .external_lex_state = 2}, - [2609] = {.lex_state = 39, .external_lex_state = 2}, - [2610] = {.lex_state = 39, .external_lex_state = 2}, + [2607] = {.lex_state = 39, .external_lex_state = 7}, + [2608] = {.lex_state = 39, .external_lex_state = 7}, + [2609] = {.lex_state = 39, .external_lex_state = 7}, + [2610] = {.lex_state = 39, .external_lex_state = 7}, [2611] = {.lex_state = 39, .external_lex_state = 2}, - [2612] = {.lex_state = 39, .external_lex_state = 2}, - [2613] = {.lex_state = 39, .external_lex_state = 2}, - [2614] = {.lex_state = 39, .external_lex_state = 2}, - [2615] = {.lex_state = 39, .external_lex_state = 6}, - [2616] = {.lex_state = 39, .external_lex_state = 2}, - [2617] = {.lex_state = 39, .external_lex_state = 2}, - [2618] = {.lex_state = 39, .external_lex_state = 2}, - [2619] = {.lex_state = 39, .external_lex_state = 8}, - [2620] = {.lex_state = 39, .external_lex_state = 8}, + [2612] = {.lex_state = 39, .external_lex_state = 8}, + [2613] = {.lex_state = 39, .external_lex_state = 7}, + [2614] = {.lex_state = 39, .external_lex_state = 6}, + [2615] = {.lex_state = 39, .external_lex_state = 8}, + [2616] = {.lex_state = 39, .external_lex_state = 8}, + [2617] = {.lex_state = 39, .external_lex_state = 7}, + [2618] = {.lex_state = 39, .external_lex_state = 7}, + [2619] = {.lex_state = 39, .external_lex_state = 7}, + [2620] = {.lex_state = 39, .external_lex_state = 7}, [2621] = {.lex_state = 39, .external_lex_state = 7}, - [2622] = {.lex_state = 39, .external_lex_state = 8}, + [2622] = {.lex_state = 39, .external_lex_state = 7}, [2623] = {.lex_state = 39, .external_lex_state = 7}, - [2624] = {.lex_state = 39, .external_lex_state = 8}, - [2625] = {.lex_state = 39, .external_lex_state = 8}, - [2626] = {.lex_state = 39, .external_lex_state = 8}, - [2627] = {.lex_state = 39, .external_lex_state = 8}, - [2628] = {.lex_state = 39, .external_lex_state = 8}, + [2624] = {.lex_state = 39, .external_lex_state = 2}, + [2625] = {.lex_state = 39, .external_lex_state = 7}, + [2626] = {.lex_state = 39, .external_lex_state = 7}, + [2627] = {.lex_state = 39, .external_lex_state = 7}, + [2628] = {.lex_state = 39, .external_lex_state = 7}, [2629] = {.lex_state = 39, .external_lex_state = 8}, - [2630] = {.lex_state = 39, .external_lex_state = 6}, - [2631] = {.lex_state = 39, .external_lex_state = 6}, + [2630] = {.lex_state = 39, .external_lex_state = 7}, + [2631] = {.lex_state = 39, .external_lex_state = 8}, [2632] = {.lex_state = 39, .external_lex_state = 7}, - [2633] = {.lex_state = 39, .external_lex_state = 7}, + [2633] = {.lex_state = 39, .external_lex_state = 2}, [2634] = {.lex_state = 39, .external_lex_state = 7}, - [2635] = {.lex_state = 39, .external_lex_state = 7}, + [2635] = {.lex_state = 39, .external_lex_state = 8}, [2636] = {.lex_state = 39, .external_lex_state = 7}, - [2637] = {.lex_state = 39, .external_lex_state = 7}, - [2638] = {.lex_state = 39, .external_lex_state = 7}, - [2639] = {.lex_state = 39, .external_lex_state = 6}, - [2640] = {.lex_state = 39, .external_lex_state = 6}, - [2641] = {.lex_state = 39, .external_lex_state = 6}, - [2642] = {.lex_state = 39, .external_lex_state = 6}, - [2643] = {.lex_state = 39, .external_lex_state = 6}, - [2644] = {.lex_state = 39, .external_lex_state = 6}, - [2645] = {.lex_state = 39, .external_lex_state = 6}, - [2646] = {.lex_state = 39, .external_lex_state = 6}, - [2647] = {.lex_state = 39, .external_lex_state = 6}, - [2648] = {.lex_state = 39, .external_lex_state = 6}, - [2649] = {.lex_state = 39, .external_lex_state = 6}, + [2637] = {.lex_state = 39, .external_lex_state = 2}, + [2638] = {.lex_state = 39, .external_lex_state = 8}, + [2639] = {.lex_state = 39, .external_lex_state = 8}, + [2640] = {.lex_state = 39, .external_lex_state = 8}, + [2641] = {.lex_state = 39, .external_lex_state = 7}, + [2642] = {.lex_state = 39, .external_lex_state = 7}, + [2643] = {.lex_state = 39, .external_lex_state = 8}, + [2644] = {.lex_state = 39, .external_lex_state = 8}, + [2645] = {.lex_state = 39, .external_lex_state = 7}, + [2646] = {.lex_state = 39, .external_lex_state = 8}, + [2647] = {.lex_state = 39, .external_lex_state = 7}, + [2648] = {.lex_state = 39, .external_lex_state = 7}, + [2649] = {.lex_state = 39, .external_lex_state = 7}, [2650] = {.lex_state = 39, .external_lex_state = 7}, - [2651] = {.lex_state = 39, .external_lex_state = 7}, - [2652] = {.lex_state = 39, .external_lex_state = 7}, - [2653] = {.lex_state = 39, .external_lex_state = 7}, - [2654] = {.lex_state = 39, .external_lex_state = 7}, + [2651] = {.lex_state = 39, .external_lex_state = 8}, + [2652] = {.lex_state = 39, .external_lex_state = 8}, + [2653] = {.lex_state = 39, .external_lex_state = 8}, + [2654] = {.lex_state = 39, .external_lex_state = 2}, [2655] = {.lex_state = 39, .external_lex_state = 7}, - [2656] = {.lex_state = 39, .external_lex_state = 7}, - [2657] = {.lex_state = 39, .external_lex_state = 7}, + [2656] = {.lex_state = 39, .external_lex_state = 8}, + [2657] = {.lex_state = 39, .external_lex_state = 2}, [2658] = {.lex_state = 39, .external_lex_state = 7}, - [2659] = {.lex_state = 39, .external_lex_state = 7}, - [2660] = {.lex_state = 39, .external_lex_state = 6}, - [2661] = {.lex_state = 39, .external_lex_state = 7}, + [2659] = {.lex_state = 39, .external_lex_state = 8}, + [2660] = {.lex_state = 39, .external_lex_state = 8}, + [2661] = {.lex_state = 39, .external_lex_state = 2}, [2662] = {.lex_state = 39, .external_lex_state = 7}, [2663] = {.lex_state = 39, .external_lex_state = 7}, [2664] = {.lex_state = 39, .external_lex_state = 7}, - [2665] = {.lex_state = 39, .external_lex_state = 7}, - [2666] = {.lex_state = 39, .external_lex_state = 8}, + [2665] = {.lex_state = 39, .external_lex_state = 2}, + [2666] = {.lex_state = 39, .external_lex_state = 7}, [2667] = {.lex_state = 39, .external_lex_state = 7}, [2668] = {.lex_state = 39, .external_lex_state = 2}, - [2669] = {.lex_state = 39, .external_lex_state = 2}, - [2670] = {.lex_state = 39, .external_lex_state = 7}, + [2669] = {.lex_state = 39, .external_lex_state = 8}, + [2670] = {.lex_state = 39, .external_lex_state = 8}, [2671] = {.lex_state = 39, .external_lex_state = 7}, [2672] = {.lex_state = 39, .external_lex_state = 8}, - [2673] = {.lex_state = 39, .external_lex_state = 7}, + [2673] = {.lex_state = 39, .external_lex_state = 8}, [2674] = {.lex_state = 39, .external_lex_state = 8}, - [2675] = {.lex_state = 3, .external_lex_state = 7}, - [2676] = {.lex_state = 3, .external_lex_state = 7}, - [2677] = {.lex_state = 39, .external_lex_state = 8}, - [2678] = {.lex_state = 3, .external_lex_state = 7}, - [2679] = {.lex_state = 3, .external_lex_state = 7}, - [2680] = {.lex_state = 39, .external_lex_state = 8}, - [2681] = {.lex_state = 39, .external_lex_state = 2}, - [2682] = {.lex_state = 3, .external_lex_state = 7}, - [2683] = {.lex_state = 3, .external_lex_state = 7}, - [2684] = {.lex_state = 3, .external_lex_state = 7}, - [2685] = {.lex_state = 3, .external_lex_state = 7}, - [2686] = {.lex_state = 3, .external_lex_state = 7}, - [2687] = {.lex_state = 3, .external_lex_state = 7}, - [2688] = {.lex_state = 3, .external_lex_state = 7}, - [2689] = {.lex_state = 3, .external_lex_state = 7}, - [2690] = {.lex_state = 3, .external_lex_state = 7}, - [2691] = {.lex_state = 39, .external_lex_state = 6}, - [2692] = {.lex_state = 3, .external_lex_state = 7}, - [2693] = {.lex_state = 39, .external_lex_state = 10}, - [2694] = {.lex_state = 3, .external_lex_state = 7}, - [2695] = {.lex_state = 3, .external_lex_state = 7}, - [2696] = {.lex_state = 3, .external_lex_state = 7}, - [2697] = {.lex_state = 39, .external_lex_state = 2}, - [2698] = {.lex_state = 3, .external_lex_state = 7}, + [2675] = {.lex_state = 39, .external_lex_state = 8}, + [2676] = {.lex_state = 39, .external_lex_state = 8}, + [2677] = {.lex_state = 39, .external_lex_state = 2}, + [2678] = {.lex_state = 39, .external_lex_state = 8}, + [2679] = {.lex_state = 39, .external_lex_state = 8}, + [2680] = {.lex_state = 39, .external_lex_state = 7}, + [2681] = {.lex_state = 39, .external_lex_state = 8}, + [2682] = {.lex_state = 39, .external_lex_state = 6}, + [2683] = {.lex_state = 39, .external_lex_state = 8}, + [2684] = {.lex_state = 39, .external_lex_state = 8}, + [2685] = {.lex_state = 39, .external_lex_state = 7}, + [2686] = {.lex_state = 39, .external_lex_state = 7}, + [2687] = {.lex_state = 39, .external_lex_state = 7}, + [2688] = {.lex_state = 39, .external_lex_state = 8}, + [2689] = {.lex_state = 39, .external_lex_state = 8}, + [2690] = {.lex_state = 39, .external_lex_state = 7}, + [2691] = {.lex_state = 39, .external_lex_state = 7}, + [2692] = {.lex_state = 39, .external_lex_state = 7}, + [2693] = {.lex_state = 39, .external_lex_state = 7}, + [2694] = {.lex_state = 39, .external_lex_state = 7}, + [2695] = {.lex_state = 39, .external_lex_state = 2}, + [2696] = {.lex_state = 39, .external_lex_state = 8}, + [2697] = {.lex_state = 39, .external_lex_state = 7}, + [2698] = {.lex_state = 39, .external_lex_state = 2}, [2699] = {.lex_state = 39, .external_lex_state = 2}, - [2700] = {.lex_state = 39, .external_lex_state = 2}, - [2701] = {.lex_state = 39, .external_lex_state = 2}, - [2702] = {.lex_state = 39, .external_lex_state = 8}, - [2703] = {.lex_state = 39, .external_lex_state = 8}, - [2704] = {.lex_state = 39, .external_lex_state = 8}, - [2705] = {.lex_state = 39, .external_lex_state = 8}, - [2706] = {.lex_state = 39, .external_lex_state = 8}, - [2707] = {.lex_state = 39, .external_lex_state = 8}, - [2708] = {.lex_state = 3, .external_lex_state = 7}, - [2709] = {.lex_state = 3, .external_lex_state = 7}, - [2710] = {.lex_state = 39, .external_lex_state = 8}, - [2711] = {.lex_state = 3, .external_lex_state = 7}, - [2712] = {.lex_state = 3, .external_lex_state = 7}, - [2713] = {.lex_state = 3, .external_lex_state = 7}, - [2714] = {.lex_state = 3, .external_lex_state = 7}, - [2715] = {.lex_state = 3, .external_lex_state = 7}, + [2700] = {.lex_state = 39, .external_lex_state = 8}, + [2701] = {.lex_state = 39, .external_lex_state = 7}, + [2702] = {.lex_state = 39, .external_lex_state = 7}, + [2703] = {.lex_state = 39, .external_lex_state = 7}, + [2704] = {.lex_state = 39, .external_lex_state = 2}, + [2705] = {.lex_state = 39, .external_lex_state = 7}, + [2706] = {.lex_state = 39, .external_lex_state = 7}, + [2707] = {.lex_state = 39, .external_lex_state = 7}, + [2708] = {.lex_state = 39, .external_lex_state = 6}, + [2709] = {.lex_state = 39, .external_lex_state = 7}, + [2710] = {.lex_state = 39, .external_lex_state = 7}, + [2711] = {.lex_state = 39, .external_lex_state = 7}, + [2712] = {.lex_state = 39, .external_lex_state = 7}, + [2713] = {.lex_state = 39, .external_lex_state = 7}, + [2714] = {.lex_state = 39, .external_lex_state = 8}, + [2715] = {.lex_state = 39, .external_lex_state = 8}, [2716] = {.lex_state = 39, .external_lex_state = 8}, - [2717] = {.lex_state = 39, .external_lex_state = 8}, - [2718] = {.lex_state = 3, .external_lex_state = 7}, + [2717] = {.lex_state = 39, .external_lex_state = 7}, + [2718] = {.lex_state = 39, .external_lex_state = 7}, [2719] = {.lex_state = 39, .external_lex_state = 8}, - [2720] = {.lex_state = 39, .external_lex_state = 8}, - [2721] = {.lex_state = 3, .external_lex_state = 7}, + [2720] = {.lex_state = 39, .external_lex_state = 2}, + [2721] = {.lex_state = 39, .external_lex_state = 7}, [2722] = {.lex_state = 39, .external_lex_state = 8}, - [2723] = {.lex_state = 3, .external_lex_state = 7}, - [2724] = {.lex_state = 39, .external_lex_state = 8}, + [2723] = {.lex_state = 39, .external_lex_state = 7}, + [2724] = {.lex_state = 39, .external_lex_state = 7}, [2725] = {.lex_state = 39, .external_lex_state = 8}, - [2726] = {.lex_state = 3, .external_lex_state = 7}, - [2727] = {.lex_state = 39, .external_lex_state = 8}, - [2728] = {.lex_state = 39, .external_lex_state = 2}, - [2729] = {.lex_state = 39, .external_lex_state = 8}, - [2730] = {.lex_state = 3, .external_lex_state = 7}, - [2731] = {.lex_state = 39, .external_lex_state = 8}, - [2732] = {.lex_state = 39, .external_lex_state = 8}, - [2733] = {.lex_state = 3, .external_lex_state = 7}, - [2734] = {.lex_state = 3, .external_lex_state = 7}, + [2726] = {.lex_state = 39, .external_lex_state = 8}, + [2727] = {.lex_state = 39, .external_lex_state = 7}, + [2728] = {.lex_state = 39, .external_lex_state = 7}, + [2729] = {.lex_state = 39, .external_lex_state = 7}, + [2730] = {.lex_state = 39, .external_lex_state = 7}, + [2731] = {.lex_state = 39, .external_lex_state = 7}, + [2732] = {.lex_state = 39, .external_lex_state = 7}, + [2733] = {.lex_state = 39, .external_lex_state = 7}, + [2734] = {.lex_state = 39, .external_lex_state = 8}, [2735] = {.lex_state = 39, .external_lex_state = 8}, [2736] = {.lex_state = 39, .external_lex_state = 8}, [2737] = {.lex_state = 39, .external_lex_state = 8}, - [2738] = {.lex_state = 39, .external_lex_state = 2}, - [2739] = {.lex_state = 39, .external_lex_state = 6}, - [2740] = {.lex_state = 39, .external_lex_state = 2}, - [2741] = {.lex_state = 39, .external_lex_state = 2}, - [2742] = {.lex_state = 39, .external_lex_state = 2}, - [2743] = {.lex_state = 39, .external_lex_state = 6}, - [2744] = {.lex_state = 39, .external_lex_state = 2}, - [2745] = {.lex_state = 39, .external_lex_state = 2}, + [2738] = {.lex_state = 39, .external_lex_state = 8}, + [2739] = {.lex_state = 3, .external_lex_state = 7}, + [2740] = {.lex_state = 39, .external_lex_state = 8}, + [2741] = {.lex_state = 39, .external_lex_state = 10}, + [2742] = {.lex_state = 39, .external_lex_state = 8}, + [2743] = {.lex_state = 39, .external_lex_state = 8}, + [2744] = {.lex_state = 3, .external_lex_state = 7}, + [2745] = {.lex_state = 3, .external_lex_state = 7}, [2746] = {.lex_state = 39, .external_lex_state = 2}, - [2747] = {.lex_state = 39, .external_lex_state = 2}, - [2748] = {.lex_state = 39, .external_lex_state = 2}, - [2749] = {.lex_state = 3, .external_lex_state = 7}, + [2747] = {.lex_state = 3, .external_lex_state = 7}, + [2748] = {.lex_state = 3, .external_lex_state = 7}, + [2749] = {.lex_state = 39, .external_lex_state = 3}, [2750] = {.lex_state = 3, .external_lex_state = 7}, - [2751] = {.lex_state = 3, .external_lex_state = 7}, + [2751] = {.lex_state = 39, .external_lex_state = 8}, [2752] = {.lex_state = 3, .external_lex_state = 7}, - [2753] = {.lex_state = 3, .external_lex_state = 7}, - [2754] = {.lex_state = 3, .external_lex_state = 7}, - [2755] = {.lex_state = 39, .external_lex_state = 2}, + [2753] = {.lex_state = 39, .external_lex_state = 3}, + [2754] = {.lex_state = 39, .external_lex_state = 3}, + [2755] = {.lex_state = 39, .external_lex_state = 8}, [2756] = {.lex_state = 3, .external_lex_state = 7}, [2757] = {.lex_state = 39, .external_lex_state = 2}, [2758] = {.lex_state = 3, .external_lex_state = 7}, - [2759] = {.lex_state = 3, .external_lex_state = 7}, - [2760] = {.lex_state = 39, .external_lex_state = 2}, - [2761] = {.lex_state = 3, .external_lex_state = 7}, - [2762] = {.lex_state = 39, .external_lex_state = 2}, - [2763] = {.lex_state = 3, .external_lex_state = 7}, - [2764] = {.lex_state = 39, .external_lex_state = 9}, - [2765] = {.lex_state = 39, .external_lex_state = 9}, - [2766] = {.lex_state = 39, .external_lex_state = 4}, - [2767] = {.lex_state = 39, .external_lex_state = 4}, - [2768] = {.lex_state = 39, .external_lex_state = 9}, - [2769] = {.lex_state = 39, .external_lex_state = 2}, - [2770] = {.lex_state = 39, .external_lex_state = 9}, - [2771] = {.lex_state = 39, .external_lex_state = 4}, - [2772] = {.lex_state = 39, .external_lex_state = 9}, - [2773] = {.lex_state = 39, .external_lex_state = 9}, - [2774] = {.lex_state = 3, .external_lex_state = 7}, - [2775] = {.lex_state = 3, .external_lex_state = 7}, - [2776] = {.lex_state = 39, .external_lex_state = 4}, - [2777] = {.lex_state = 39, .external_lex_state = 4}, - [2778] = {.lex_state = 39, .external_lex_state = 8}, - [2779] = {.lex_state = 3, .external_lex_state = 7}, - [2780] = {.lex_state = 39, .external_lex_state = 4}, - [2781] = {.lex_state = 39, .external_lex_state = 4}, - [2782] = {.lex_state = 39, .external_lex_state = 4}, + [2759] = {.lex_state = 39, .external_lex_state = 3}, + [2760] = {.lex_state = 3, .external_lex_state = 7}, + [2761] = {.lex_state = 39, .external_lex_state = 8}, + [2762] = {.lex_state = 39, .external_lex_state = 3}, + [2763] = {.lex_state = 39, .external_lex_state = 3}, + [2764] = {.lex_state = 39, .external_lex_state = 8}, + [2765] = {.lex_state = 39, .external_lex_state = 3}, + [2766] = {.lex_state = 3, .external_lex_state = 7}, + [2767] = {.lex_state = 39, .external_lex_state = 3}, + [2768] = {.lex_state = 3, .external_lex_state = 7}, + [2769] = {.lex_state = 39, .external_lex_state = 8}, + [2770] = {.lex_state = 3, .external_lex_state = 7}, + [2771] = {.lex_state = 39, .external_lex_state = 3}, + [2772] = {.lex_state = 39, .external_lex_state = 3}, + [2773] = {.lex_state = 3, .external_lex_state = 7}, + [2774] = {.lex_state = 39, .external_lex_state = 3}, + [2775] = {.lex_state = 39, .external_lex_state = 3}, + [2776] = {.lex_state = 39, .external_lex_state = 8}, + [2777] = {.lex_state = 39, .external_lex_state = 8}, + [2778] = {.lex_state = 3, .external_lex_state = 7}, + [2779] = {.lex_state = 39, .external_lex_state = 8}, + [2780] = {.lex_state = 39, .external_lex_state = 3}, + [2781] = {.lex_state = 3, .external_lex_state = 7}, + [2782] = {.lex_state = 3, .external_lex_state = 7}, [2783] = {.lex_state = 3, .external_lex_state = 7}, [2784] = {.lex_state = 3, .external_lex_state = 7}, - [2785] = {.lex_state = 39, .external_lex_state = 4}, - [2786] = {.lex_state = 39, .external_lex_state = 9}, - [2787] = {.lex_state = 39, .external_lex_state = 9}, - [2788] = {.lex_state = 39, .external_lex_state = 9}, - [2789] = {.lex_state = 39, .external_lex_state = 9}, - [2790] = {.lex_state = 39, .external_lex_state = 4}, + [2785] = {.lex_state = 39, .external_lex_state = 8}, + [2786] = {.lex_state = 39, .external_lex_state = 8}, + [2787] = {.lex_state = 39, .external_lex_state = 8}, + [2788] = {.lex_state = 39, .external_lex_state = 3}, + [2789] = {.lex_state = 3, .external_lex_state = 7}, + [2790] = {.lex_state = 39, .external_lex_state = 3}, [2791] = {.lex_state = 3, .external_lex_state = 7}, - [2792] = {.lex_state = 39, .external_lex_state = 9}, - [2793] = {.lex_state = 39, .external_lex_state = 9}, - [2794] = {.lex_state = 39, .external_lex_state = 7}, - [2795] = {.lex_state = 39, .external_lex_state = 9}, - [2796] = {.lex_state = 3, .external_lex_state = 7}, + [2792] = {.lex_state = 3, .external_lex_state = 7}, + [2793] = {.lex_state = 3, .external_lex_state = 7}, + [2794] = {.lex_state = 39, .external_lex_state = 8}, + [2795] = {.lex_state = 3, .external_lex_state = 7}, + [2796] = {.lex_state = 39, .external_lex_state = 3}, [2797] = {.lex_state = 3, .external_lex_state = 7}, - [2798] = {.lex_state = 39, .external_lex_state = 8}, - [2799] = {.lex_state = 39, .external_lex_state = 2}, - [2800] = {.lex_state = 39, .external_lex_state = 4}, - [2801] = {.lex_state = 39, .external_lex_state = 4}, - [2802] = {.lex_state = 39, .external_lex_state = 4}, - [2803] = {.lex_state = 39, .external_lex_state = 9}, + [2798] = {.lex_state = 3, .external_lex_state = 7}, + [2799] = {.lex_state = 39, .external_lex_state = 3}, + [2800] = {.lex_state = 3, .external_lex_state = 7}, + [2801] = {.lex_state = 39, .external_lex_state = 2}, + [2802] = {.lex_state = 3, .external_lex_state = 7}, + [2803] = {.lex_state = 3, .external_lex_state = 7}, [2804] = {.lex_state = 3, .external_lex_state = 7}, - [2805] = {.lex_state = 3, .external_lex_state = 7}, - [2806] = {.lex_state = 39, .external_lex_state = 4}, - [2807] = {.lex_state = 39, .external_lex_state = 9}, - [2808] = {.lex_state = 39, .external_lex_state = 4}, + [2805] = {.lex_state = 39, .external_lex_state = 3}, + [2806] = {.lex_state = 39, .external_lex_state = 3}, + [2807] = {.lex_state = 3, .external_lex_state = 7}, + [2808] = {.lex_state = 3, .external_lex_state = 7}, [2809] = {.lex_state = 3, .external_lex_state = 7}, - [2810] = {.lex_state = 3, .external_lex_state = 7}, + [2810] = {.lex_state = 39, .external_lex_state = 3}, [2811] = {.lex_state = 3, .external_lex_state = 7}, - [2812] = {.lex_state = 3, .external_lex_state = 7}, - [2813] = {.lex_state = 39, .external_lex_state = 9}, - [2814] = {.lex_state = 3, .external_lex_state = 7}, - [2815] = {.lex_state = 39, .external_lex_state = 9}, - [2816] = {.lex_state = 39, .external_lex_state = 9}, - [2817] = {.lex_state = 39, .external_lex_state = 4}, + [2812] = {.lex_state = 39, .external_lex_state = 3}, + [2813] = {.lex_state = 3, .external_lex_state = 7}, + [2814] = {.lex_state = 39, .external_lex_state = 3}, + [2815] = {.lex_state = 39, .external_lex_state = 3}, + [2816] = {.lex_state = 39, .external_lex_state = 3}, + [2817] = {.lex_state = 3, .external_lex_state = 7}, [2818] = {.lex_state = 3, .external_lex_state = 7}, - [2819] = {.lex_state = 39, .external_lex_state = 8}, - [2820] = {.lex_state = 39, .external_lex_state = 8}, - [2821] = {.lex_state = 39, .external_lex_state = 4}, - [2822] = {.lex_state = 39, .external_lex_state = 4}, - [2823] = {.lex_state = 3, .external_lex_state = 7}, - [2824] = {.lex_state = 3, .external_lex_state = 7}, - [2825] = {.lex_state = 39, .external_lex_state = 4}, - [2826] = {.lex_state = 39, .external_lex_state = 8}, - [2827] = {.lex_state = 39, .external_lex_state = 9}, - [2828] = {.lex_state = 39, .external_lex_state = 9}, - [2829] = {.lex_state = 39, .external_lex_state = 2}, - [2830] = {.lex_state = 39, .external_lex_state = 9}, - [2831] = {.lex_state = 39, .external_lex_state = 2}, + [2819] = {.lex_state = 3, .external_lex_state = 7}, + [2820] = {.lex_state = 39, .external_lex_state = 3}, + [2821] = {.lex_state = 39, .external_lex_state = 3}, + [2822] = {.lex_state = 39, .external_lex_state = 3}, + [2823] = {.lex_state = 39, .external_lex_state = 3}, + [2824] = {.lex_state = 39, .external_lex_state = 3}, + [2825] = {.lex_state = 39, .external_lex_state = 3}, + [2826] = {.lex_state = 39, .external_lex_state = 3}, + [2827] = {.lex_state = 39, .external_lex_state = 3}, + [2828] = {.lex_state = 3, .external_lex_state = 7}, + [2829] = {.lex_state = 39, .external_lex_state = 3}, + [2830] = {.lex_state = 3, .external_lex_state = 7}, + [2831] = {.lex_state = 3, .external_lex_state = 7}, [2832] = {.lex_state = 39, .external_lex_state = 8}, - [2833] = {.lex_state = 39, .external_lex_state = 4}, - [2834] = {.lex_state = 39, .external_lex_state = 4}, - [2835] = {.lex_state = 39, .external_lex_state = 2}, - [2836] = {.lex_state = 39, .external_lex_state = 8}, - [2837] = {.lex_state = 3, .external_lex_state = 7}, - [2838] = {.lex_state = 39, .external_lex_state = 8}, + [2833] = {.lex_state = 39, .external_lex_state = 8}, + [2834] = {.lex_state = 39, .external_lex_state = 3}, + [2835] = {.lex_state = 39, .external_lex_state = 3}, + [2836] = {.lex_state = 39, .external_lex_state = 2}, + [2837] = {.lex_state = 39, .external_lex_state = 3}, + [2838] = {.lex_state = 3, .external_lex_state = 7}, [2839] = {.lex_state = 39, .external_lex_state = 8}, - [2840] = {.lex_state = 39, .external_lex_state = 9}, - [2841] = {.lex_state = 39, .external_lex_state = 2}, + [2840] = {.lex_state = 39, .external_lex_state = 3}, + [2841] = {.lex_state = 39, .external_lex_state = 3}, [2842] = {.lex_state = 39, .external_lex_state = 8}, - [2843] = {.lex_state = 39, .external_lex_state = 8}, - [2844] = {.lex_state = 3, .external_lex_state = 7}, - [2845] = {.lex_state = 39, .external_lex_state = 8}, - [2846] = {.lex_state = 39, .external_lex_state = 2}, - [2847] = {.lex_state = 39, .external_lex_state = 8}, - [2848] = {.lex_state = 39, .external_lex_state = 2}, - [2849] = {.lex_state = 39, .external_lex_state = 2}, - [2850] = {.lex_state = 39, .external_lex_state = 2}, - [2851] = {.lex_state = 39, .external_lex_state = 9}, - [2852] = {.lex_state = 39, .external_lex_state = 2}, - [2853] = {.lex_state = 39, .external_lex_state = 9}, - [2854] = {.lex_state = 39, .external_lex_state = 4}, - [2855] = {.lex_state = 39, .external_lex_state = 4}, - [2856] = {.lex_state = 39, .external_lex_state = 2}, - [2857] = {.lex_state = 39, .external_lex_state = 2}, - [2858] = {.lex_state = 39, .external_lex_state = 4}, - [2859] = {.lex_state = 39, .external_lex_state = 2}, - [2860] = {.lex_state = 39, .external_lex_state = 9}, - [2861] = {.lex_state = 39, .external_lex_state = 2}, - [2862] = {.lex_state = 39, .external_lex_state = 9}, - [2863] = {.lex_state = 39, .external_lex_state = 2}, - [2864] = {.lex_state = 39, .external_lex_state = 2}, - [2865] = {.lex_state = 39, .external_lex_state = 2}, - [2866] = {.lex_state = 39, .external_lex_state = 2}, - [2867] = {.lex_state = 39, .external_lex_state = 2}, - [2868] = {.lex_state = 39, .external_lex_state = 4}, - [2869] = {.lex_state = 39, .external_lex_state = 4}, - [2870] = {.lex_state = 3, .external_lex_state = 7}, - [2871] = {.lex_state = 39, .external_lex_state = 4}, - [2872] = {.lex_state = 39, .external_lex_state = 4}, - [2873] = {.lex_state = 39, .external_lex_state = 2}, - [2874] = {.lex_state = 39, .external_lex_state = 4}, - [2875] = {.lex_state = 39, .external_lex_state = 8}, - [2876] = {.lex_state = 39, .external_lex_state = 8}, - [2877] = {.lex_state = 39, .external_lex_state = 4}, - [2878] = {.lex_state = 39, .external_lex_state = 4}, - [2879] = {.lex_state = 39, .external_lex_state = 4}, - [2880] = {.lex_state = 39, .external_lex_state = 4}, - [2881] = {.lex_state = 39, .external_lex_state = 4}, - [2882] = {.lex_state = 39, .external_lex_state = 4}, - [2883] = {.lex_state = 39, .external_lex_state = 9}, - [2884] = {.lex_state = 39, .external_lex_state = 2}, - [2885] = {.lex_state = 39, .external_lex_state = 9}, - [2886] = {.lex_state = 39, .external_lex_state = 8}, - [2887] = {.lex_state = 39, .external_lex_state = 8}, - [2888] = {.lex_state = 39, .external_lex_state = 8}, - [2889] = {.lex_state = 39, .external_lex_state = 8}, - [2890] = {.lex_state = 39, .external_lex_state = 8}, - [2891] = {.lex_state = 39, .external_lex_state = 8}, - [2892] = {.lex_state = 39, .external_lex_state = 8}, - [2893] = {.lex_state = 39, .external_lex_state = 8}, - [2894] = {.lex_state = 39, .external_lex_state = 8}, - [2895] = {.lex_state = 39, .external_lex_state = 4}, - [2896] = {.lex_state = 39, .external_lex_state = 2}, - [2897] = {.lex_state = 39, .external_lex_state = 4}, - [2898] = {.lex_state = 39, .external_lex_state = 2}, - [2899] = {.lex_state = 39, .external_lex_state = 8}, - [2900] = {.lex_state = 39, .external_lex_state = 8}, + [2843] = {.lex_state = 3, .external_lex_state = 7}, + [2844] = {.lex_state = 39, .external_lex_state = 3}, + [2845] = {.lex_state = 39, .external_lex_state = 3}, + [2846] = {.lex_state = 39, .external_lex_state = 3}, + [2847] = {.lex_state = 39, .external_lex_state = 9}, + [2848] = {.lex_state = 39, .external_lex_state = 3}, + [2849] = {.lex_state = 39, .external_lex_state = 3}, + [2850] = {.lex_state = 39, .external_lex_state = 3}, + [2851] = {.lex_state = 39, .external_lex_state = 3}, + [2852] = {.lex_state = 39, .external_lex_state = 3}, + [2853] = {.lex_state = 39, .external_lex_state = 3}, + [2854] = {.lex_state = 39, .external_lex_state = 9}, + [2855] = {.lex_state = 39, .external_lex_state = 8}, + [2856] = {.lex_state = 39, .external_lex_state = 9}, + [2857] = {.lex_state = 39, .external_lex_state = 9}, + [2858] = {.lex_state = 39, .external_lex_state = 3}, + [2859] = {.lex_state = 39, .external_lex_state = 8}, + [2860] = {.lex_state = 3, .external_lex_state = 7}, + [2861] = {.lex_state = 3, .external_lex_state = 7}, + [2862] = {.lex_state = 39, .external_lex_state = 8}, + [2863] = {.lex_state = 39, .external_lex_state = 7}, + [2864] = {.lex_state = 39, .external_lex_state = 3}, + [2865] = {.lex_state = 39, .external_lex_state = 8}, + [2866] = {.lex_state = 39, .external_lex_state = 3}, + [2867] = {.lex_state = 39, .external_lex_state = 3}, + [2868] = {.lex_state = 39, .external_lex_state = 8}, + [2869] = {.lex_state = 39, .external_lex_state = 8}, + [2870] = {.lex_state = 39, .external_lex_state = 8}, + [2871] = {.lex_state = 39, .external_lex_state = 3}, + [2872] = {.lex_state = 39, .external_lex_state = 9}, + [2873] = {.lex_state = 39, .external_lex_state = 8}, + [2874] = {.lex_state = 39, .external_lex_state = 3}, + [2875] = {.lex_state = 39, .external_lex_state = 3}, + [2876] = {.lex_state = 39, .external_lex_state = 3}, + [2877] = {.lex_state = 3, .external_lex_state = 7}, + [2878] = {.lex_state = 39, .external_lex_state = 3}, + [2879] = {.lex_state = 39, .external_lex_state = 3}, + [2880] = {.lex_state = 39, .external_lex_state = 3}, + [2881] = {.lex_state = 39, .external_lex_state = 8}, + [2882] = {.lex_state = 39, .external_lex_state = 8}, + [2883] = {.lex_state = 39, .external_lex_state = 8}, + [2884] = {.lex_state = 3, .external_lex_state = 7}, + [2885] = {.lex_state = 39, .external_lex_state = 8}, + [2886] = {.lex_state = 39, .external_lex_state = 9}, + [2887] = {.lex_state = 3, .external_lex_state = 7}, + [2888] = {.lex_state = 39, .external_lex_state = 9}, + [2889] = {.lex_state = 39, .external_lex_state = 9}, + [2890] = {.lex_state = 39, .external_lex_state = 3}, + [2891] = {.lex_state = 39, .external_lex_state = 9}, + [2892] = {.lex_state = 39, .external_lex_state = 9}, + [2893] = {.lex_state = 3, .external_lex_state = 7}, + [2894] = {.lex_state = 3, .external_lex_state = 7}, + [2895] = {.lex_state = 3, .external_lex_state = 7}, + [2896] = {.lex_state = 3, .external_lex_state = 7}, + [2897] = {.lex_state = 39, .external_lex_state = 8}, + [2898] = {.lex_state = 39, .external_lex_state = 9}, + [2899] = {.lex_state = 39, .external_lex_state = 9}, + [2900] = {.lex_state = 3, .external_lex_state = 7}, [2901] = {.lex_state = 39, .external_lex_state = 8}, - [2902] = {.lex_state = 39, .external_lex_state = 8}, - [2903] = {.lex_state = 39, .external_lex_state = 8}, - [2904] = {.lex_state = 39, .external_lex_state = 2}, - [2905] = {.lex_state = 39, .external_lex_state = 2}, - [2906] = {.lex_state = 39, .external_lex_state = 9}, - [2907] = {.lex_state = 39, .external_lex_state = 9}, + [2902] = {.lex_state = 3, .external_lex_state = 7}, + [2903] = {.lex_state = 39, .external_lex_state = 9}, + [2904] = {.lex_state = 3, .external_lex_state = 7}, + [2905] = {.lex_state = 39, .external_lex_state = 9}, + [2906] = {.lex_state = 39, .external_lex_state = 8}, + [2907] = {.lex_state = 3, .external_lex_state = 7}, [2908] = {.lex_state = 39, .external_lex_state = 9}, - [2909] = {.lex_state = 39, .external_lex_state = 2}, - [2910] = {.lex_state = 39, .external_lex_state = 2}, - [2911] = {.lex_state = 39, .external_lex_state = 8}, - [2912] = {.lex_state = 39, .external_lex_state = 8}, - [2913] = {.lex_state = 39, .external_lex_state = 8}, - [2914] = {.lex_state = 39, .external_lex_state = 9}, + [2909] = {.lex_state = 39, .external_lex_state = 8}, + [2910] = {.lex_state = 39, .external_lex_state = 8}, + [2911] = {.lex_state = 39, .external_lex_state = 9}, + [2912] = {.lex_state = 3, .external_lex_state = 7}, + [2913] = {.lex_state = 3, .external_lex_state = 7}, + [2914] = {.lex_state = 3, .external_lex_state = 7}, [2915] = {.lex_state = 39, .external_lex_state = 8}, [2916] = {.lex_state = 39, .external_lex_state = 8}, - [2917] = {.lex_state = 39, .external_lex_state = 2}, - [2918] = {.lex_state = 39, .external_lex_state = 4}, - [2919] = {.lex_state = 39, .external_lex_state = 2}, - [2920] = {.lex_state = 39, .external_lex_state = 2}, + [2917] = {.lex_state = 39, .external_lex_state = 9}, + [2918] = {.lex_state = 39, .external_lex_state = 8}, + [2919] = {.lex_state = 39, .external_lex_state = 8}, + [2920] = {.lex_state = 39, .external_lex_state = 9}, [2921] = {.lex_state = 39, .external_lex_state = 8}, [2922] = {.lex_state = 39, .external_lex_state = 9}, - [2923] = {.lex_state = 39, .external_lex_state = 8}, - [2924] = {.lex_state = 39, .external_lex_state = 8}, + [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}, - [2927] = {.lex_state = 39, .external_lex_state = 8}, + [2926] = {.lex_state = 39, .external_lex_state = 3}, + [2927] = {.lex_state = 39, .external_lex_state = 9}, [2928] = {.lex_state = 39, .external_lex_state = 8}, - [2929] = {.lex_state = 39, .external_lex_state = 2}, + [2929] = {.lex_state = 39, .external_lex_state = 8}, [2930] = {.lex_state = 39, .external_lex_state = 9}, - [2931] = {.lex_state = 39, .external_lex_state = 4}, + [2931] = {.lex_state = 39, .external_lex_state = 8}, [2932] = {.lex_state = 39, .external_lex_state = 8}, [2933] = {.lex_state = 39, .external_lex_state = 8}, - [2934] = {.lex_state = 39, .external_lex_state = 2}, + [2934] = {.lex_state = 39, .external_lex_state = 9}, [2935] = {.lex_state = 39, .external_lex_state = 8}, - [2936] = {.lex_state = 39, .external_lex_state = 8}, - [2937] = {.lex_state = 39, .external_lex_state = 8}, - [2938] = {.lex_state = 39, .external_lex_state = 2}, + [2936] = {.lex_state = 3, .external_lex_state = 7}, + [2937] = {.lex_state = 3, .external_lex_state = 7}, + [2938] = {.lex_state = 39, .external_lex_state = 9}, [2939] = {.lex_state = 39, .external_lex_state = 9}, - [2940] = {.lex_state = 39, .external_lex_state = 2}, - [2941] = {.lex_state = 39, .external_lex_state = 8}, - [2942] = {.lex_state = 39, .external_lex_state = 4}, - [2943] = {.lex_state = 39, .external_lex_state = 2}, - [2944] = {.lex_state = 39, .external_lex_state = 2}, - [2945] = {.lex_state = 39, .external_lex_state = 4}, + [2940] = {.lex_state = 39, .external_lex_state = 9}, + [2941] = {.lex_state = 39, .external_lex_state = 2}, + [2942] = {.lex_state = 39, .external_lex_state = 8}, + [2943] = {.lex_state = 39, .external_lex_state = 9}, + [2944] = {.lex_state = 39, .external_lex_state = 8}, + [2945] = {.lex_state = 39, .external_lex_state = 8}, [2946] = {.lex_state = 39, .external_lex_state = 8}, - [2947] = {.lex_state = 39, .external_lex_state = 9}, - [2948] = {.lex_state = 39, .external_lex_state = 9}, - [2949] = {.lex_state = 39, .external_lex_state = 8}, - [2950] = {.lex_state = 39, .external_lex_state = 8}, - [2951] = {.lex_state = 39, .external_lex_state = 9}, + [2947] = {.lex_state = 39, .external_lex_state = 8}, + [2948] = {.lex_state = 39, .external_lex_state = 8}, + [2949] = {.lex_state = 39, .external_lex_state = 9}, + [2950] = {.lex_state = 39, .external_lex_state = 9}, + [2951] = {.lex_state = 39, .external_lex_state = 8}, [2952] = {.lex_state = 39, .external_lex_state = 8}, [2953] = {.lex_state = 39, .external_lex_state = 8}, - [2954] = {.lex_state = 39, .external_lex_state = 9}, - [2955] = {.lex_state = 39, .external_lex_state = 8}, - [2956] = {.lex_state = 39, .external_lex_state = 8}, - [2957] = {.lex_state = 39, .external_lex_state = 4}, - [2958] = {.lex_state = 39, .external_lex_state = 8}, - [2959] = {.lex_state = 3, .external_lex_state = 7}, - [2960] = {.lex_state = 39, .external_lex_state = 8}, - [2961] = {.lex_state = 39, .external_lex_state = 9}, - [2962] = {.lex_state = 3, .external_lex_state = 7}, - [2963] = {.lex_state = 39, .external_lex_state = 4}, - [2964] = {.lex_state = 39, .external_lex_state = 4}, - [2965] = {.lex_state = 39, .external_lex_state = 4}, - [2966] = {.lex_state = 3, .external_lex_state = 7}, - [2967] = {.lex_state = 3, .external_lex_state = 7}, - [2968] = {.lex_state = 39, .external_lex_state = 9}, - [2969] = {.lex_state = 39, .external_lex_state = 9}, - [2970] = {.lex_state = 39, .external_lex_state = 9}, - [2971] = {.lex_state = 39, .external_lex_state = 4}, - [2972] = {.lex_state = 39, .external_lex_state = 4}, - [2973] = {.lex_state = 39, .external_lex_state = 7}, - [2974] = {.lex_state = 39, .external_lex_state = 2}, - [2975] = {.lex_state = 39, .external_lex_state = 7}, - [2976] = {.lex_state = 39, .external_lex_state = 7}, - [2977] = {.lex_state = 39, .external_lex_state = 7}, - [2978] = {.lex_state = 39, .external_lex_state = 7}, - [2979] = {.lex_state = 39, .external_lex_state = 2}, - [2980] = {.lex_state = 3, .external_lex_state = 7}, - [2981] = {.lex_state = 39, .external_lex_state = 4}, + [2954] = {.lex_state = 39, .external_lex_state = 8}, + [2955] = {.lex_state = 39, .external_lex_state = 2}, + [2956] = {.lex_state = 39, .external_lex_state = 2}, + [2957] = {.lex_state = 39, .external_lex_state = 2}, + [2958] = {.lex_state = 39, .external_lex_state = 3}, + [2959] = {.lex_state = 39, .external_lex_state = 2}, + [2960] = {.lex_state = 39, .external_lex_state = 2}, + [2961] = {.lex_state = 39, .external_lex_state = 2}, + [2962] = {.lex_state = 39, .external_lex_state = 9}, + [2963] = {.lex_state = 39, .external_lex_state = 8}, + [2964] = {.lex_state = 39, .external_lex_state = 8}, + [2965] = {.lex_state = 39, .external_lex_state = 2}, + [2966] = {.lex_state = 39, .external_lex_state = 8}, + [2967] = {.lex_state = 39, .external_lex_state = 2}, + [2968] = {.lex_state = 39, .external_lex_state = 2}, + [2969] = {.lex_state = 39, .external_lex_state = 2}, + [2970] = {.lex_state = 39, .external_lex_state = 2}, + [2971] = {.lex_state = 39, .external_lex_state = 2}, + [2972] = {.lex_state = 39, .external_lex_state = 2}, + [2973] = {.lex_state = 39, .external_lex_state = 2}, + [2974] = {.lex_state = 39, .external_lex_state = 8}, + [2975] = {.lex_state = 39, .external_lex_state = 8}, + [2976] = {.lex_state = 39, .external_lex_state = 8}, + [2977] = {.lex_state = 39, .external_lex_state = 8}, + [2978] = {.lex_state = 39, .external_lex_state = 9}, + [2979] = {.lex_state = 39, .external_lex_state = 8}, + [2980] = {.lex_state = 39, .external_lex_state = 9}, + [2981] = {.lex_state = 39, .external_lex_state = 8}, [2982] = {.lex_state = 39, .external_lex_state = 2}, - [2983] = {.lex_state = 39, .external_lex_state = 2}, - [2984] = {.lex_state = 39, .external_lex_state = 2}, + [2983] = {.lex_state = 39, .external_lex_state = 8}, + [2984] = {.lex_state = 39, .external_lex_state = 9}, [2985] = {.lex_state = 39, .external_lex_state = 2}, - [2986] = {.lex_state = 3, .external_lex_state = 7}, - [2987] = {.lex_state = 39, .external_lex_state = 7}, - [2988] = {.lex_state = 39, .external_lex_state = 7}, - [2989] = {.lex_state = 3, .external_lex_state = 7}, - [2990] = {.lex_state = 39, .external_lex_state = 4}, - [2991] = {.lex_state = 39, .external_lex_state = 7}, - [2992] = {.lex_state = 39, .external_lex_state = 7}, - [2993] = {.lex_state = 39, .external_lex_state = 4}, - [2994] = {.lex_state = 3, .external_lex_state = 7}, - [2995] = {.lex_state = 39, .external_lex_state = 7}, - [2996] = {.lex_state = 39, .external_lex_state = 2}, - [2997] = {.lex_state = 3, .external_lex_state = 7}, - [2998] = {.lex_state = 39, .external_lex_state = 7}, - [2999] = {.lex_state = 39, .external_lex_state = 7}, - [3000] = {.lex_state = 3, .external_lex_state = 7}, - [3001] = {.lex_state = 39, .external_lex_state = 7}, + [2986] = {.lex_state = 39, .external_lex_state = 8}, + [2987] = {.lex_state = 39, .external_lex_state = 2}, + [2988] = {.lex_state = 39, .external_lex_state = 2}, + [2989] = {.lex_state = 39, .external_lex_state = 2}, + [2990] = {.lex_state = 39, .external_lex_state = 2}, + [2991] = {.lex_state = 39, .external_lex_state = 2}, + [2992] = {.lex_state = 39, .external_lex_state = 2}, + [2993] = {.lex_state = 39, .external_lex_state = 2}, + [2994] = {.lex_state = 39, .external_lex_state = 2}, + [2995] = {.lex_state = 39, .external_lex_state = 8}, + [2996] = {.lex_state = 39, .external_lex_state = 9}, + [2997] = {.lex_state = 39, .external_lex_state = 8}, + [2998] = {.lex_state = 39, .external_lex_state = 9}, + [2999] = {.lex_state = 39, .external_lex_state = 3}, + [3000] = {.lex_state = 39, .external_lex_state = 2}, + [3001] = {.lex_state = 39, .external_lex_state = 2}, [3002] = {.lex_state = 39, .external_lex_state = 2}, - [3003] = {.lex_state = 3, .external_lex_state = 7}, - [3004] = {.lex_state = 39, .external_lex_state = 2}, - [3005] = {.lex_state = 39, .external_lex_state = 4}, - [3006] = {.lex_state = 39, .external_lex_state = 7}, - [3007] = {.lex_state = 39, .external_lex_state = 7}, - [3008] = {.lex_state = 39, .external_lex_state = 7}, - [3009] = {.lex_state = 3, .external_lex_state = 7}, - [3010] = {.lex_state = 39, .external_lex_state = 7}, + [3003] = {.lex_state = 39, .external_lex_state = 2}, + [3004] = {.lex_state = 39, .external_lex_state = 3}, + [3005] = {.lex_state = 39, .external_lex_state = 3}, + [3006] = {.lex_state = 39, .external_lex_state = 2}, + [3007] = {.lex_state = 3, .external_lex_state = 7}, + [3008] = {.lex_state = 39, .external_lex_state = 2}, + [3009] = {.lex_state = 39, .external_lex_state = 3}, + [3010] = {.lex_state = 39, .external_lex_state = 8}, [3011] = {.lex_state = 39, .external_lex_state = 9}, - [3012] = {.lex_state = 39, .external_lex_state = 9}, + [3012] = {.lex_state = 3, .external_lex_state = 7}, [3013] = {.lex_state = 39, .external_lex_state = 9}, [3014] = {.lex_state = 39, .external_lex_state = 9}, [3015] = {.lex_state = 39, .external_lex_state = 9}, - [3016] = {.lex_state = 39, .external_lex_state = 4}, - [3017] = {.lex_state = 39, .external_lex_state = 2}, - [3018] = {.lex_state = 3, .external_lex_state = 7}, - [3019] = {.lex_state = 3, .external_lex_state = 7}, - [3020] = {.lex_state = 39, .external_lex_state = 7}, - [3021] = {.lex_state = 39, .external_lex_state = 9}, - [3022] = {.lex_state = 3, .external_lex_state = 7}, + [3016] = {.lex_state = 3, .external_lex_state = 7}, + [3017] = {.lex_state = 39, .external_lex_state = 9}, + [3018] = {.lex_state = 39, .external_lex_state = 2}, + [3019] = {.lex_state = 39, .external_lex_state = 2}, + [3020] = {.lex_state = 39, .external_lex_state = 9}, + [3021] = {.lex_state = 39, .external_lex_state = 2}, + [3022] = {.lex_state = 39, .external_lex_state = 8}, [3023] = {.lex_state = 39, .external_lex_state = 2}, [3024] = {.lex_state = 3, .external_lex_state = 7}, - [3025] = {.lex_state = 3, .external_lex_state = 7}, - [3026] = {.lex_state = 39, .external_lex_state = 9}, - [3027] = {.lex_state = 39, .external_lex_state = 9}, - [3028] = {.lex_state = 39, .external_lex_state = 9}, - [3029] = {.lex_state = 3, .external_lex_state = 7}, - [3030] = {.lex_state = 39, .external_lex_state = 4}, - [3031] = {.lex_state = 39, .external_lex_state = 4}, - [3032] = {.lex_state = 39, .external_lex_state = 4}, - [3033] = {.lex_state = 39, .external_lex_state = 4}, - [3034] = {.lex_state = 3, .external_lex_state = 7}, - [3035] = {.lex_state = 3, .external_lex_state = 7}, + [3025] = {.lex_state = 39, .external_lex_state = 8}, + [3026] = {.lex_state = 3, .external_lex_state = 7}, + [3027] = {.lex_state = 39, .external_lex_state = 3}, + [3028] = {.lex_state = 39, .external_lex_state = 3}, + [3029] = {.lex_state = 39, .external_lex_state = 2}, + [3030] = {.lex_state = 39, .external_lex_state = 2}, + [3031] = {.lex_state = 39, .external_lex_state = 2}, + [3032] = {.lex_state = 39, .external_lex_state = 7}, + [3033] = {.lex_state = 39, .external_lex_state = 7}, + [3034] = {.lex_state = 39, .external_lex_state = 9}, + [3035] = {.lex_state = 39, .external_lex_state = 7}, [3036] = {.lex_state = 3, .external_lex_state = 7}, - [3037] = {.lex_state = 39, .external_lex_state = 9}, - [3038] = {.lex_state = 39, .external_lex_state = 7}, - [3039] = {.lex_state = 3, .external_lex_state = 7}, - [3040] = {.lex_state = 39, .external_lex_state = 9}, - [3041] = {.lex_state = 39, .external_lex_state = 9}, - [3042] = {.lex_state = 39, .external_lex_state = 4}, - [3043] = {.lex_state = 39, .external_lex_state = 4}, + [3037] = {.lex_state = 39, .external_lex_state = 3}, + [3038] = {.lex_state = 39, .external_lex_state = 3}, + [3039] = {.lex_state = 39, .external_lex_state = 9}, + [3040] = {.lex_state = 3, .external_lex_state = 7}, + [3041] = {.lex_state = 39, .external_lex_state = 3}, + [3042] = {.lex_state = 39, .external_lex_state = 3}, + [3043] = {.lex_state = 39, .external_lex_state = 2}, [3044] = {.lex_state = 39, .external_lex_state = 2}, - [3045] = {.lex_state = 39, .external_lex_state = 9}, - [3046] = {.lex_state = 39, .external_lex_state = 9}, - [3047] = {.lex_state = 39, .external_lex_state = 9}, - [3048] = {.lex_state = 39, .external_lex_state = 9}, - [3049] = {.lex_state = 3, .external_lex_state = 7}, + [3045] = {.lex_state = 39, .external_lex_state = 3}, + [3046] = {.lex_state = 39, .external_lex_state = 3}, + [3047] = {.lex_state = 39, .external_lex_state = 3}, + [3048] = {.lex_state = 39, .external_lex_state = 3}, + [3049] = {.lex_state = 39, .external_lex_state = 3}, [3050] = {.lex_state = 3, .external_lex_state = 7}, - [3051] = {.lex_state = 3, .external_lex_state = 7}, - [3052] = {.lex_state = 39, .external_lex_state = 7}, - [3053] = {.lex_state = 39, .external_lex_state = 7}, - [3054] = {.lex_state = 39, .external_lex_state = 7}, - [3055] = {.lex_state = 3, .external_lex_state = 7}, - [3056] = {.lex_state = 3, .external_lex_state = 7}, - [3057] = {.lex_state = 3, .external_lex_state = 7}, - [3058] = {.lex_state = 3, .external_lex_state = 7}, - [3059] = {.lex_state = 3, .external_lex_state = 7}, - [3060] = {.lex_state = 3, .external_lex_state = 7}, - [3061] = {.lex_state = 39, .external_lex_state = 7}, - [3062] = {.lex_state = 3, .external_lex_state = 7}, - [3063] = {.lex_state = 3, .external_lex_state = 7}, - [3064] = {.lex_state = 39, .external_lex_state = 4}, - [3065] = {.lex_state = 3, .external_lex_state = 7}, - [3066] = {.lex_state = 39, .external_lex_state = 7}, - [3067] = {.lex_state = 39, .external_lex_state = 4}, - [3068] = {.lex_state = 3, .external_lex_state = 7}, - [3069] = {.lex_state = 39, .external_lex_state = 4}, - [3070] = {.lex_state = 3, .external_lex_state = 7}, - [3071] = {.lex_state = 39, .external_lex_state = 7}, - [3072] = {.lex_state = 39, .external_lex_state = 7}, - [3073] = {.lex_state = 39, .external_lex_state = 9}, - [3074] = {.lex_state = 3, .external_lex_state = 7}, - [3075] = {.lex_state = 3, .external_lex_state = 7}, - [3076] = {.lex_state = 3, .external_lex_state = 7}, - [3077] = {.lex_state = 3, .external_lex_state = 7}, - [3078] = {.lex_state = 39, .external_lex_state = 4}, - [3079] = {.lex_state = 3, .external_lex_state = 7}, - [3080] = {.lex_state = 39, .external_lex_state = 7}, - [3081] = {.lex_state = 3, .external_lex_state = 7}, - [3082] = {.lex_state = 3, .external_lex_state = 7}, - [3083] = {.lex_state = 39, .external_lex_state = 9}, - [3084] = {.lex_state = 39, .external_lex_state = 9}, - [3085] = {.lex_state = 3, .external_lex_state = 7}, - [3086] = {.lex_state = 3, .external_lex_state = 7}, - [3087] = {.lex_state = 3, .external_lex_state = 7}, - [3088] = {.lex_state = 39, .external_lex_state = 7}, - [3089] = {.lex_state = 3, .external_lex_state = 7}, + [3051] = {.lex_state = 39, .external_lex_state = 3}, + [3052] = {.lex_state = 39, .external_lex_state = 3}, + [3053] = {.lex_state = 39, .external_lex_state = 3}, + [3054] = {.lex_state = 39, .external_lex_state = 2}, + [3055] = {.lex_state = 39, .external_lex_state = 3}, + [3056] = {.lex_state = 39, .external_lex_state = 3}, + [3057] = {.lex_state = 39, .external_lex_state = 3}, + [3058] = {.lex_state = 39, .external_lex_state = 2}, + [3059] = {.lex_state = 39, .external_lex_state = 3}, + [3060] = {.lex_state = 39, .external_lex_state = 3}, + [3061] = {.lex_state = 39, .external_lex_state = 3}, + [3062] = {.lex_state = 39, .external_lex_state = 3}, + [3063] = {.lex_state = 39, .external_lex_state = 3}, + [3064] = {.lex_state = 39, .external_lex_state = 3}, + [3065] = {.lex_state = 39, .external_lex_state = 3}, + [3066] = {.lex_state = 39, .external_lex_state = 3}, + [3067] = {.lex_state = 39, .external_lex_state = 2}, + [3068] = {.lex_state = 39, .external_lex_state = 9}, + [3069] = {.lex_state = 39, .external_lex_state = 9}, + [3070] = {.lex_state = 39, .external_lex_state = 9}, + [3071] = {.lex_state = 39, .external_lex_state = 9}, + [3072] = {.lex_state = 39, .external_lex_state = 3}, + [3073] = {.lex_state = 39, .external_lex_state = 2}, + [3074] = {.lex_state = 39, .external_lex_state = 3}, + [3075] = {.lex_state = 39, .external_lex_state = 2}, + [3076] = {.lex_state = 39, .external_lex_state = 3}, + [3077] = {.lex_state = 39, .external_lex_state = 3}, + [3078] = {.lex_state = 39, .external_lex_state = 3}, + [3079] = {.lex_state = 39, .external_lex_state = 7}, + [3080] = {.lex_state = 39, .external_lex_state = 3}, + [3081] = {.lex_state = 39, .external_lex_state = 3}, + [3082] = {.lex_state = 39, .external_lex_state = 3}, + [3083] = {.lex_state = 39, .external_lex_state = 3}, + [3084] = {.lex_state = 39, .external_lex_state = 3}, + [3085] = {.lex_state = 39, .external_lex_state = 3}, + [3086] = {.lex_state = 39, .external_lex_state = 3}, + [3087] = {.lex_state = 39, .external_lex_state = 3}, + [3088] = {.lex_state = 39, .external_lex_state = 3}, + [3089] = {.lex_state = 39, .external_lex_state = 3}, [3090] = {.lex_state = 3, .external_lex_state = 7}, - [3091] = {.lex_state = 3, .external_lex_state = 7}, - [3092] = {.lex_state = 39, .external_lex_state = 9}, - [3093] = {.lex_state = 3, .external_lex_state = 7}, - [3094] = {.lex_state = 39, .external_lex_state = 4}, - [3095] = {.lex_state = 3, .external_lex_state = 7}, - [3096] = {.lex_state = 39, .external_lex_state = 4}, - [3097] = {.lex_state = 39, .external_lex_state = 4}, - [3098] = {.lex_state = 3, .external_lex_state = 7}, - [3099] = {.lex_state = 3, .external_lex_state = 7}, - [3100] = {.lex_state = 3, .external_lex_state = 7}, + [3091] = {.lex_state = 39, .external_lex_state = 3}, + [3092] = {.lex_state = 39, .external_lex_state = 3}, + [3093] = {.lex_state = 39, .external_lex_state = 3}, + [3094] = {.lex_state = 39, .external_lex_state = 3}, + [3095] = {.lex_state = 39, .external_lex_state = 3}, + [3096] = {.lex_state = 39, .external_lex_state = 3}, + [3097] = {.lex_state = 39, .external_lex_state = 3}, + [3098] = {.lex_state = 39, .external_lex_state = 3}, + [3099] = {.lex_state = 39, .external_lex_state = 3}, + [3100] = {.lex_state = 39, .external_lex_state = 3}, [3101] = {.lex_state = 3, .external_lex_state = 7}, [3102] = {.lex_state = 39, .external_lex_state = 9}, - [3103] = {.lex_state = 39, .external_lex_state = 4}, - [3104] = {.lex_state = 39, .external_lex_state = 4}, - [3105] = {.lex_state = 39, .external_lex_state = 9}, - [3106] = {.lex_state = 39, .external_lex_state = 9}, - [3107] = {.lex_state = 39, .external_lex_state = 9}, - [3108] = {.lex_state = 39, .external_lex_state = 9}, - [3109] = {.lex_state = 39, .external_lex_state = 9}, - [3110] = {.lex_state = 39, .external_lex_state = 9}, - [3111] = {.lex_state = 39, .external_lex_state = 4}, - [3112] = {.lex_state = 39, .external_lex_state = 4}, - [3113] = {.lex_state = 39, .external_lex_state = 4}, - [3114] = {.lex_state = 39, .external_lex_state = 9}, - [3115] = {.lex_state = 39, .external_lex_state = 4}, - [3116] = {.lex_state = 39, .external_lex_state = 9}, - [3117] = {.lex_state = 39, .external_lex_state = 4}, - [3118] = {.lex_state = 39, .external_lex_state = 4}, + [3103] = {.lex_state = 3, .external_lex_state = 7}, + [3104] = {.lex_state = 3, .external_lex_state = 7}, + [3105] = {.lex_state = 3, .external_lex_state = 7}, + [3106] = {.lex_state = 3, .external_lex_state = 7}, + [3107] = {.lex_state = 3, .external_lex_state = 7}, + [3108] = {.lex_state = 3, .external_lex_state = 7}, + [3109] = {.lex_state = 3, .external_lex_state = 7}, + [3110] = {.lex_state = 3, .external_lex_state = 7}, + [3111] = {.lex_state = 3, .external_lex_state = 7}, + [3112] = {.lex_state = 39, .external_lex_state = 3}, + [3113] = {.lex_state = 3, .external_lex_state = 7}, + [3114] = {.lex_state = 3, .external_lex_state = 7}, + [3115] = {.lex_state = 39, .external_lex_state = 9}, + [3116] = {.lex_state = 3, .external_lex_state = 7}, + [3117] = {.lex_state = 3, .external_lex_state = 7}, + [3118] = {.lex_state = 3, .external_lex_state = 7}, [3119] = {.lex_state = 39, .external_lex_state = 9}, - [3120] = {.lex_state = 39, .external_lex_state = 9}, - [3121] = {.lex_state = 39, .external_lex_state = 9}, - [3122] = {.lex_state = 39, .external_lex_state = 9}, - [3123] = {.lex_state = 39, .external_lex_state = 9}, - [3124] = {.lex_state = 39, .external_lex_state = 2}, - [3125] = {.lex_state = 39, .external_lex_state = 4}, + [3120] = {.lex_state = 39, .external_lex_state = 7}, + [3121] = {.lex_state = 3, .external_lex_state = 7}, + [3122] = {.lex_state = 3, .external_lex_state = 7}, + [3123] = {.lex_state = 39, .external_lex_state = 7}, + [3124] = {.lex_state = 39, .external_lex_state = 7}, + [3125] = {.lex_state = 39, .external_lex_state = 7}, [3126] = {.lex_state = 39, .external_lex_state = 9}, [3127] = {.lex_state = 39, .external_lex_state = 9}, [3128] = {.lex_state = 39, .external_lex_state = 9}, [3129] = {.lex_state = 39, .external_lex_state = 9}, - [3130] = {.lex_state = 39, .external_lex_state = 9}, - [3131] = {.lex_state = 39, .external_lex_state = 9}, - [3132] = {.lex_state = 39, .external_lex_state = 4}, - [3133] = {.lex_state = 39, .external_lex_state = 9}, - [3134] = {.lex_state = 39, .external_lex_state = 9}, - [3135] = {.lex_state = 39, .external_lex_state = 9}, - [3136] = {.lex_state = 39, .external_lex_state = 9}, - [3137] = {.lex_state = 39, .external_lex_state = 9}, - [3138] = {.lex_state = 39, .external_lex_state = 9}, - [3139] = {.lex_state = 39, .external_lex_state = 4}, - [3140] = {.lex_state = 39, .external_lex_state = 9}, - [3141] = {.lex_state = 39, .external_lex_state = 9}, - [3142] = {.lex_state = 39, .external_lex_state = 9}, - [3143] = {.lex_state = 39, .external_lex_state = 9}, - [3144] = {.lex_state = 39, .external_lex_state = 4}, - [3145] = {.lex_state = 39, .external_lex_state = 4}, - [3146] = {.lex_state = 39, .external_lex_state = 9}, + [3130] = {.lex_state = 3, .external_lex_state = 7}, + [3131] = {.lex_state = 3, .external_lex_state = 7}, + [3132] = {.lex_state = 3, .external_lex_state = 7}, + [3133] = {.lex_state = 39, .external_lex_state = 7}, + [3134] = {.lex_state = 39, .external_lex_state = 7}, + [3135] = {.lex_state = 3, .external_lex_state = 7}, + [3136] = {.lex_state = 3, .external_lex_state = 7}, + [3137] = {.lex_state = 3, .external_lex_state = 7}, + [3138] = {.lex_state = 39, .external_lex_state = 7}, + [3139] = {.lex_state = 3, .external_lex_state = 7}, + [3140] = {.lex_state = 3, .external_lex_state = 7}, + [3141] = {.lex_state = 39, .external_lex_state = 3}, + [3142] = {.lex_state = 3, .external_lex_state = 7}, + [3143] = {.lex_state = 3, .external_lex_state = 7}, + [3144] = {.lex_state = 39, .external_lex_state = 9}, + [3145] = {.lex_state = 39, .external_lex_state = 9}, + [3146] = {.lex_state = 3, .external_lex_state = 7}, [3147] = {.lex_state = 39, .external_lex_state = 9}, - [3148] = {.lex_state = 39, .external_lex_state = 4}, - [3149] = {.lex_state = 39, .external_lex_state = 4}, - [3150] = {.lex_state = 39, .external_lex_state = 4}, - [3151] = {.lex_state = 39, .external_lex_state = 4}, - [3152] = {.lex_state = 39, .external_lex_state = 4}, - [3153] = {.lex_state = 39, .external_lex_state = 9}, - [3154] = {.lex_state = 39, .external_lex_state = 4}, - [3155] = {.lex_state = 39, .external_lex_state = 3}, - [3156] = {.lex_state = 39, .external_lex_state = 4}, - [3157] = {.lex_state = 39, .external_lex_state = 4}, - [3158] = {.lex_state = 39, .external_lex_state = 3}, - [3159] = {.lex_state = 39, .external_lex_state = 4}, - [3160] = {.lex_state = 39, .external_lex_state = 4}, - [3161] = {.lex_state = 39, .external_lex_state = 4}, - [3162] = {.lex_state = 39, .external_lex_state = 3}, - [3163] = {.lex_state = 39, .external_lex_state = 4}, - [3164] = {.lex_state = 39, .external_lex_state = 2}, - [3165] = {.lex_state = 39, .external_lex_state = 4}, - [3166] = {.lex_state = 39, .external_lex_state = 3}, - [3167] = {.lex_state = 39, .external_lex_state = 4}, - [3168] = {.lex_state = 39, .external_lex_state = 4}, - [3169] = {.lex_state = 39, .external_lex_state = 9}, - [3170] = {.lex_state = 39, .external_lex_state = 4}, - [3171] = {.lex_state = 39, .external_lex_state = 4}, - [3172] = {.lex_state = 39, .external_lex_state = 4}, - [3173] = {.lex_state = 39, .external_lex_state = 4}, - [3174] = {.lex_state = 39, .external_lex_state = 4}, - [3175] = {.lex_state = 39, .external_lex_state = 4}, - [3176] = {.lex_state = 39, .external_lex_state = 4}, - [3177] = {.lex_state = 39, .external_lex_state = 4}, - [3178] = {.lex_state = 39, .external_lex_state = 4}, - [3179] = {.lex_state = 39, .external_lex_state = 4}, - [3180] = {.lex_state = 39, .external_lex_state = 4}, - [3181] = {.lex_state = 39, .external_lex_state = 4}, - [3182] = {.lex_state = 39, .external_lex_state = 7}, - [3183] = {.lex_state = 39, .external_lex_state = 4}, - [3184] = {.lex_state = 39, .external_lex_state = 4}, - [3185] = {.lex_state = 39, .external_lex_state = 7}, - [3186] = {.lex_state = 39, .external_lex_state = 4}, - [3187] = {.lex_state = 39, .external_lex_state = 9}, + [3148] = {.lex_state = 3, .external_lex_state = 7}, + [3149] = {.lex_state = 3, .external_lex_state = 7}, + [3150] = {.lex_state = 39, .external_lex_state = 9}, + [3151] = {.lex_state = 3, .external_lex_state = 7}, + [3152] = {.lex_state = 3, .external_lex_state = 7}, + [3153] = {.lex_state = 39, .external_lex_state = 2}, + [3154] = {.lex_state = 39, .external_lex_state = 9}, + [3155] = {.lex_state = 3, .external_lex_state = 7}, + [3156] = {.lex_state = 3, .external_lex_state = 7}, + [3157] = {.lex_state = 3, .external_lex_state = 7}, + [3158] = {.lex_state = 3, .external_lex_state = 7}, + [3159] = {.lex_state = 3, .external_lex_state = 7}, + [3160] = {.lex_state = 3, .external_lex_state = 7}, + [3161] = {.lex_state = 39, .external_lex_state = 9}, + [3162] = {.lex_state = 39, .external_lex_state = 7}, + [3163] = {.lex_state = 39, .external_lex_state = 3}, + [3164] = {.lex_state = 3, .external_lex_state = 7}, + [3165] = {.lex_state = 3, .external_lex_state = 7}, + [3166] = {.lex_state = 39, .external_lex_state = 9}, + [3167] = {.lex_state = 39, .external_lex_state = 7}, + [3168] = {.lex_state = 3, .external_lex_state = 7}, + [3169] = {.lex_state = 39, .external_lex_state = 7}, + [3170] = {.lex_state = 39, .external_lex_state = 11}, + [3171] = {.lex_state = 39, .external_lex_state = 9}, + [3172] = {.lex_state = 39, .external_lex_state = 7}, + [3173] = {.lex_state = 39, .external_lex_state = 7}, + [3174] = {.lex_state = 39, .external_lex_state = 7}, + [3175] = {.lex_state = 3, .external_lex_state = 7}, + [3176] = {.lex_state = 39, .external_lex_state = 7}, + [3177] = {.lex_state = 39, .external_lex_state = 9}, + [3178] = {.lex_state = 39, .external_lex_state = 9}, + [3179] = {.lex_state = 39, .external_lex_state = 3}, + [3180] = {.lex_state = 39, .external_lex_state = 7}, + [3181] = {.lex_state = 39, .external_lex_state = 2}, + [3182] = {.lex_state = 3, .external_lex_state = 7}, + [3183] = {.lex_state = 39, .external_lex_state = 7}, + [3184] = {.lex_state = 39, .external_lex_state = 7}, + [3185] = {.lex_state = 3, .external_lex_state = 7}, + [3186] = {.lex_state = 39, .external_lex_state = 7}, + [3187] = {.lex_state = 3, .external_lex_state = 7}, [3188] = {.lex_state = 39, .external_lex_state = 7}, - [3189] = {.lex_state = 39, .external_lex_state = 9}, - [3190] = {.lex_state = 39, .external_lex_state = 9}, - [3191] = {.lex_state = 39, .external_lex_state = 4}, - [3192] = {.lex_state = 39, .external_lex_state = 4}, + [3189] = {.lex_state = 39, .external_lex_state = 7}, + [3190] = {.lex_state = 39, .external_lex_state = 7}, + [3191] = {.lex_state = 39, .external_lex_state = 7}, + [3192] = {.lex_state = 39, .external_lex_state = 7}, [3193] = {.lex_state = 39, .external_lex_state = 7}, - [3194] = {.lex_state = 39, .external_lex_state = 4}, - [3195] = {.lex_state = 39, .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 = 4}, + [3194] = {.lex_state = 3, .external_lex_state = 7}, + [3195] = {.lex_state = 3, .external_lex_state = 7}, + [3196] = {.lex_state = 39, .external_lex_state = 7}, + [3197] = {.lex_state = 3, .external_lex_state = 7}, + [3198] = {.lex_state = 3, .external_lex_state = 7}, + [3199] = {.lex_state = 3, .external_lex_state = 7}, [3200] = {.lex_state = 39, .external_lex_state = 9}, - [3201] = {.lex_state = 39, .external_lex_state = 9}, - [3202] = {.lex_state = 39, .external_lex_state = 4}, - [3203] = {.lex_state = 39, .external_lex_state = 9}, - [3204] = {.lex_state = 39, .external_lex_state = 4}, - [3205] = {.lex_state = 39, .external_lex_state = 4}, - [3206] = {.lex_state = 39, .external_lex_state = 9}, - [3207] = {.lex_state = 39, .external_lex_state = 9}, - [3208] = {.lex_state = 39, .external_lex_state = 7}, - [3209] = {.lex_state = 39, .external_lex_state = 7}, + [3201] = {.lex_state = 39, .external_lex_state = 4}, + [3202] = {.lex_state = 39, .external_lex_state = 9}, + [3203] = {.lex_state = 39, .external_lex_state = 3}, + [3204] = {.lex_state = 39, .external_lex_state = 9}, + [3205] = {.lex_state = 39, .external_lex_state = 3}, + [3206] = {.lex_state = 39, .external_lex_state = 3}, + [3207] = {.lex_state = 39, .external_lex_state = 7}, + [3208] = {.lex_state = 39, .external_lex_state = 9}, + [3209] = {.lex_state = 39, .external_lex_state = 9}, [3210] = {.lex_state = 39, .external_lex_state = 9}, [3211] = {.lex_state = 39, .external_lex_state = 9}, - [3212] = {.lex_state = 39, .external_lex_state = 4}, - [3213] = {.lex_state = 39, .external_lex_state = 9}, - [3214] = {.lex_state = 39, .external_lex_state = 4}, - [3215] = {.lex_state = 39, .external_lex_state = 9}, + [3212] = {.lex_state = 39, .external_lex_state = 7}, + [3213] = {.lex_state = 39, .external_lex_state = 3}, + [3214] = {.lex_state = 39, .external_lex_state = 3}, + [3215] = {.lex_state = 39, .external_lex_state = 7}, [3216] = {.lex_state = 39, .external_lex_state = 9}, - [3217] = {.lex_state = 39, .external_lex_state = 11}, - [3218] = {.lex_state = 39, .external_lex_state = 9}, - [3219] = {.lex_state = 39, .external_lex_state = 7}, - [3220] = {.lex_state = 39, .external_lex_state = 9}, + [3217] = {.lex_state = 39, .external_lex_state = 9}, + [3218] = {.lex_state = 39, .external_lex_state = 4}, + [3219] = {.lex_state = 39, .external_lex_state = 4}, + [3220] = {.lex_state = 39, .external_lex_state = 2}, [3221] = {.lex_state = 39, .external_lex_state = 4}, - [3222] = {.lex_state = 39, .external_lex_state = 2}, - [3223] = {.lex_state = 39, .external_lex_state = 4}, + [3222] = {.lex_state = 39, .external_lex_state = 9}, + [3223] = {.lex_state = 39, .external_lex_state = 7}, [3224] = {.lex_state = 39, .external_lex_state = 7}, [3225] = {.lex_state = 39, .external_lex_state = 7}, - [3226] = {.lex_state = 39, .external_lex_state = 4}, - [3227] = {.lex_state = 39, .external_lex_state = 4}, - [3228] = {.lex_state = 39, .external_lex_state = 4}, + [3226] = {.lex_state = 39, .external_lex_state = 2}, + [3227] = {.lex_state = 39, .external_lex_state = 7}, + [3228] = {.lex_state = 39, .external_lex_state = 9}, [3229] = {.lex_state = 39, .external_lex_state = 9}, - [3230] = {.lex_state = 39, .external_lex_state = 4}, - [3231] = {.lex_state = 39, .external_lex_state = 11}, - [3232] = {.lex_state = 39, .external_lex_state = 2}, - [3233] = {.lex_state = 39, .external_lex_state = 7}, - [3234] = {.lex_state = 39, .external_lex_state = 2}, - [3235] = {.lex_state = 39, .external_lex_state = 2}, - [3236] = {.lex_state = 39, .external_lex_state = 4}, - [3237] = {.lex_state = 39, .external_lex_state = 4}, - [3238] = {.lex_state = 39, .external_lex_state = 5}, - [3239] = {.lex_state = 39, .external_lex_state = 4}, - [3240] = {.lex_state = 39, .external_lex_state = 5}, - [3241] = {.lex_state = 39, .external_lex_state = 4}, - [3242] = {.lex_state = 39, .external_lex_state = 5}, - [3243] = {.lex_state = 39, .external_lex_state = 5}, - [3244] = {.lex_state = 39, .external_lex_state = 3}, - [3245] = {.lex_state = 39, .external_lex_state = 3}, - [3246] = {.lex_state = 39, .external_lex_state = 7}, - [3247] = {.lex_state = 39, .external_lex_state = 3}, - [3248] = {.lex_state = 39, .external_lex_state = 3}, - [3249] = {.lex_state = 39, .external_lex_state = 2}, - [3250] = {.lex_state = 39, .external_lex_state = 2}, - [3251] = {.lex_state = 39, .external_lex_state = 2}, - [3252] = {.lex_state = 39, .external_lex_state = 5}, - [3253] = {.lex_state = 39, .external_lex_state = 5}, - [3254] = {.lex_state = 39, .external_lex_state = 2}, - [3255] = {.lex_state = 39, .external_lex_state = 5}, - [3256] = {.lex_state = 39, .external_lex_state = 5}, - [3257] = {.lex_state = 39, .external_lex_state = 2}, - [3258] = {.lex_state = 39, .external_lex_state = 7}, - [3259] = {.lex_state = 39, .external_lex_state = 7}, - [3260] = {.lex_state = 39, .external_lex_state = 7}, - [3261] = {.lex_state = 39, .external_lex_state = 7}, - [3262] = {.lex_state = 39, .external_lex_state = 6}, - [3263] = {.lex_state = 39, .external_lex_state = 6}, - [3264] = {.lex_state = 39, .external_lex_state = 6}, - [3265] = {.lex_state = 39, .external_lex_state = 6}, - [3266] = {.lex_state = 39, .external_lex_state = 3}, - [3267] = {.lex_state = 39, .external_lex_state = 4}, - [3268] = {.lex_state = 39, .external_lex_state = 3}, - [3269] = {.lex_state = 39, .external_lex_state = 4}, - [3270] = {.lex_state = 39, .external_lex_state = 3}, - [3271] = {.lex_state = 39, .external_lex_state = 3}, - [3272] = {.lex_state = 39, .external_lex_state = 4}, - [3273] = {.lex_state = 39, .external_lex_state = 4}, - [3274] = {.lex_state = 39, .external_lex_state = 3}, - [3275] = {.lex_state = 39, .external_lex_state = 4}, - [3276] = {.lex_state = 39, .external_lex_state = 3}, - [3277] = {.lex_state = 39, .external_lex_state = 6}, - [3278] = {.lex_state = 39, .external_lex_state = 6}, - [3279] = {.lex_state = 39, .external_lex_state = 3}, - [3280] = {.lex_state = 39, .external_lex_state = 6}, - [3281] = {.lex_state = 39, .external_lex_state = 6}, - [3282] = {.lex_state = 39, .external_lex_state = 4}, + [3230] = {.lex_state = 39, .external_lex_state = 9}, + [3231] = {.lex_state = 39, .external_lex_state = 9}, + [3232] = {.lex_state = 39, .external_lex_state = 9}, + [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}, + [3240] = {.lex_state = 39, .external_lex_state = 9}, + [3241] = {.lex_state = 39, .external_lex_state = 9}, + [3242] = {.lex_state = 39, .external_lex_state = 9}, + [3243] = {.lex_state = 39, .external_lex_state = 9}, + [3244] = {.lex_state = 39, .external_lex_state = 9}, + [3245] = {.lex_state = 39, .external_lex_state = 9}, + [3246] = {.lex_state = 39, .external_lex_state = 9}, + [3247] = {.lex_state = 39, .external_lex_state = 9}, + [3248] = {.lex_state = 39, .external_lex_state = 9}, + [3249] = {.lex_state = 39, .external_lex_state = 9}, + [3250] = {.lex_state = 39, .external_lex_state = 9}, + [3251] = {.lex_state = 39, .external_lex_state = 9}, + [3252] = {.lex_state = 39, .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 = 7}, + [3256] = {.lex_state = 39, .external_lex_state = 2}, + [3257] = {.lex_state = 39, .external_lex_state = 9}, + [3258] = {.lex_state = 39, .external_lex_state = 9}, + [3259] = {.lex_state = 39, .external_lex_state = 9}, + [3260] = {.lex_state = 39, .external_lex_state = 9}, + [3261] = {.lex_state = 39, .external_lex_state = 9}, + [3262] = {.lex_state = 39, .external_lex_state = 9}, + [3263] = {.lex_state = 39, .external_lex_state = 9}, + [3264] = {.lex_state = 39, .external_lex_state = 9}, + [3265] = {.lex_state = 39, .external_lex_state = 9}, + [3266] = {.lex_state = 39, .external_lex_state = 7}, + [3267] = {.lex_state = 39, .external_lex_state = 9}, + [3268] = {.lex_state = 39, .external_lex_state = 11}, + [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 = 5}, + [3277] = {.lex_state = 39, .external_lex_state = 3}, + [3278] = {.lex_state = 39, .external_lex_state = 2}, + [3279] = {.lex_state = 39, .external_lex_state = 4}, + [3280] = {.lex_state = 39, .external_lex_state = 2}, + [3281] = {.lex_state = 39, .external_lex_state = 2}, + [3282] = {.lex_state = 39, .external_lex_state = 5}, [3283] = {.lex_state = 39, .external_lex_state = 3}, - [3284] = {.lex_state = 39, .external_lex_state = 4}, - [3285] = {.lex_state = 39, .external_lex_state = 12}, - [3286] = {.lex_state = 39, .external_lex_state = 4}, - [3287] = {.lex_state = 39, .external_lex_state = 4}, - [3288] = {.lex_state = 39, .external_lex_state = 4}, - [3289] = {.lex_state = 39, .external_lex_state = 3}, - [3290] = {.lex_state = 39, .external_lex_state = 12}, - [3291] = {.lex_state = 39, .external_lex_state = 12}, - [3292] = {.lex_state = 39, .external_lex_state = 3}, + [3284] = {.lex_state = 39, .external_lex_state = 7}, + [3285] = {.lex_state = 39, .external_lex_state = 3}, + [3286] = {.lex_state = 39, .external_lex_state = 5}, + [3287] = {.lex_state = 39, .external_lex_state = 5}, + [3288] = {.lex_state = 39, .external_lex_state = 2}, + [3289] = {.lex_state = 39, .external_lex_state = 7}, + [3290] = {.lex_state = 39, .external_lex_state = 3}, + [3291] = {.lex_state = 39, .external_lex_state = 4}, + [3292] = {.lex_state = 39, .external_lex_state = 4}, [3293] = {.lex_state = 39, .external_lex_state = 4}, - [3294] = {.lex_state = 39, .external_lex_state = 8}, - [3295] = {.lex_state = 39, .external_lex_state = 2}, + [3294] = {.lex_state = 39, .external_lex_state = 5}, + [3295] = {.lex_state = 39, .external_lex_state = 5}, [3296] = {.lex_state = 39, .external_lex_state = 2}, [3297] = {.lex_state = 39, .external_lex_state = 2}, - [3298] = {.lex_state = 39, .external_lex_state = 4}, + [3298] = {.lex_state = 39, .external_lex_state = 2}, [3299] = {.lex_state = 39, .external_lex_state = 2}, [3300] = {.lex_state = 39, .external_lex_state = 5}, [3301] = {.lex_state = 39, .external_lex_state = 5}, - [3302] = {.lex_state = 39, .external_lex_state = 5}, - [3303] = {.lex_state = 39, .external_lex_state = 5}, - [3304] = {.lex_state = 39, .external_lex_state = 2}, - [3305] = {.lex_state = 39, .external_lex_state = 5}, - [3306] = {.lex_state = 39, .external_lex_state = 5}, - [3307] = {.lex_state = 39, .external_lex_state = 4}, - [3308] = {.lex_state = 39, .external_lex_state = 5}, - [3309] = {.lex_state = 39, .external_lex_state = 4}, - [3310] = {.lex_state = 39, .external_lex_state = 3}, - [3311] = {.lex_state = 39, .external_lex_state = 5}, - [3312] = {.lex_state = 39, .external_lex_state = 3}, - [3313] = {.lex_state = 39, .external_lex_state = 5}, - [3314] = {.lex_state = 39, .external_lex_state = 4}, - [3315] = {.lex_state = 39, .external_lex_state = 2}, - [3316] = {.lex_state = 39, .external_lex_state = 4}, - [3317] = {.lex_state = 39, .external_lex_state = 8}, - [3318] = {.lex_state = 39, .external_lex_state = 3}, + [3302] = {.lex_state = 39, .external_lex_state = 7}, + [3303] = {.lex_state = 39, .external_lex_state = 7}, + [3304] = {.lex_state = 39, .external_lex_state = 6}, + [3305] = {.lex_state = 39, .external_lex_state = 7}, + [3306] = {.lex_state = 39, .external_lex_state = 7}, + [3307] = {.lex_state = 39, .external_lex_state = 6}, + [3308] = {.lex_state = 39, .external_lex_state = 6}, + [3309] = {.lex_state = 39, .external_lex_state = 6}, + [3310] = {.lex_state = 39, .external_lex_state = 6}, + [3311] = {.lex_state = 39, .external_lex_state = 6}, + [3312] = {.lex_state = 39, .external_lex_state = 6}, + [3313] = {.lex_state = 39, .external_lex_state = 6}, + [3314] = {.lex_state = 39, .external_lex_state = 2}, + [3315] = {.lex_state = 39, .external_lex_state = 4}, + [3316] = {.lex_state = 39, .external_lex_state = 3}, + [3317] = {.lex_state = 39, .external_lex_state = 4}, + [3318] = {.lex_state = 39, .external_lex_state = 2}, [3319] = {.lex_state = 39, .external_lex_state = 3}, - [3320] = {.lex_state = 39, .external_lex_state = 4}, - [3321] = {.lex_state = 39, .external_lex_state = 4}, - [3322] = {.lex_state = 39, .external_lex_state = 8}, - [3323] = {.lex_state = 39, .external_lex_state = 2}, - [3324] = {.lex_state = 39, .external_lex_state = 5}, - [3325] = {.lex_state = 39, .external_lex_state = 3}, + [3320] = {.lex_state = 39, .external_lex_state = 3}, + [3321] = {.lex_state = 39, .external_lex_state = 3}, + [3322] = {.lex_state = 39, .external_lex_state = 4}, + [3323] = {.lex_state = 39, .external_lex_state = 3}, + [3324] = {.lex_state = 39, .external_lex_state = 12}, + [3325] = {.lex_state = 39, .external_lex_state = 4}, [3326] = {.lex_state = 39, .external_lex_state = 3}, - [3327] = {.lex_state = 39, .external_lex_state = 2}, - [3328] = {.lex_state = 39, .external_lex_state = 3}, - [3329] = {.lex_state = 39, .external_lex_state = 8}, - [3330] = {.lex_state = 39, .external_lex_state = 3}, - [3331] = {.lex_state = 39, .external_lex_state = 3}, - [3332] = {.lex_state = 39, .external_lex_state = 2}, + [3327] = {.lex_state = 39, .external_lex_state = 3}, + [3328] = {.lex_state = 39, .external_lex_state = 4}, + [3329] = {.lex_state = 39, .external_lex_state = 2}, + [3330] = {.lex_state = 39, .external_lex_state = 4}, + [3331] = {.lex_state = 39, .external_lex_state = 12}, + [3332] = {.lex_state = 39, .external_lex_state = 4}, [3333] = {.lex_state = 39, .external_lex_state = 2}, - [3334] = {.lex_state = 39, .external_lex_state = 2}, - [3335] = {.lex_state = 39, .external_lex_state = 4}, + [3334] = {.lex_state = 39, .external_lex_state = 12}, + [3335] = {.lex_state = 39, .external_lex_state = 3}, [3336] = {.lex_state = 39, .external_lex_state = 4}, - [3337] = {.lex_state = 39, .external_lex_state = 3}, - [3338] = {.lex_state = 39, .external_lex_state = 2}, + [3337] = {.lex_state = 39, .external_lex_state = 4}, + [3338] = {.lex_state = 39, .external_lex_state = 3}, [3339] = {.lex_state = 39, .external_lex_state = 2}, [3340] = {.lex_state = 39, .external_lex_state = 2}, - [3341] = {.lex_state = 3, .external_lex_state = 7}, - [3342] = {.lex_state = 39, .external_lex_state = 2}, - [3343] = {.lex_state = 39, .external_lex_state = 2}, - [3344] = {.lex_state = 39, .external_lex_state = 13}, - [3345] = {.lex_state = 39, .external_lex_state = 2}, - [3346] = {.lex_state = 39, .external_lex_state = 11}, - [3347] = {.lex_state = 39, .external_lex_state = 2}, - [3348] = {.lex_state = 3, .external_lex_state = 7}, - [3349] = {.lex_state = 3, .external_lex_state = 7}, - [3350] = {.lex_state = 3, .external_lex_state = 7}, - [3351] = {.lex_state = 39, .external_lex_state = 5}, - [3352] = {.lex_state = 39, .external_lex_state = 2}, - [3353] = {.lex_state = 39, .external_lex_state = 2}, - [3354] = {.lex_state = 39, .external_lex_state = 2}, - [3355] = {.lex_state = 39, .external_lex_state = 5}, - [3356] = {.lex_state = 39, .external_lex_state = 12}, + [3341] = {.lex_state = 39, .external_lex_state = 3}, + [3342] = {.lex_state = 39, .external_lex_state = 3}, + [3343] = {.lex_state = 39, .external_lex_state = 3}, + [3344] = {.lex_state = 39, .external_lex_state = 11}, + [3345] = {.lex_state = 39, .external_lex_state = 3}, + [3346] = {.lex_state = 39, .external_lex_state = 8}, + [3347] = {.lex_state = 39, .external_lex_state = 3}, + [3348] = {.lex_state = 39, .external_lex_state = 3}, + [3349] = {.lex_state = 39, .external_lex_state = 8}, + [3350] = {.lex_state = 39, .external_lex_state = 4}, + [3351] = {.lex_state = 39, .external_lex_state = 3}, + [3352] = {.lex_state = 39, .external_lex_state = 8}, + [3353] = {.lex_state = 39, .external_lex_state = 11}, + [3354] = {.lex_state = 39, .external_lex_state = 5}, + [3355] = {.lex_state = 39, .external_lex_state = 3}, + [3356] = {.lex_state = 39, .external_lex_state = 5}, [3357] = {.lex_state = 39, .external_lex_state = 2}, - [3358] = {.lex_state = 39, .external_lex_state = 2}, - [3359] = {.lex_state = 39, .external_lex_state = 5}, - [3360] = {.lex_state = 39, .external_lex_state = 5}, + [3358] = {.lex_state = 39, .external_lex_state = 11}, + [3359] = {.lex_state = 39, .external_lex_state = 2}, + [3360] = {.lex_state = 39, .external_lex_state = 2}, [3361] = {.lex_state = 39, .external_lex_state = 5}, - [3362] = {.lex_state = 39, .external_lex_state = 5}, + [3362] = {.lex_state = 39, .external_lex_state = 4}, [3363] = {.lex_state = 39, .external_lex_state = 5}, - [3364] = {.lex_state = 39, .external_lex_state = 2}, - [3365] = {.lex_state = 39, .external_lex_state = 13}, - [3366] = {.lex_state = 39, .external_lex_state = 13}, - [3367] = {.lex_state = 39, .external_lex_state = 11}, - [3368] = {.lex_state = 39, .external_lex_state = 5}, + [3364] = {.lex_state = 39, .external_lex_state = 5}, + [3365] = {.lex_state = 39, .external_lex_state = 3}, + [3366] = {.lex_state = 39, .external_lex_state = 4}, + [3367] = {.lex_state = 39, .external_lex_state = 4}, + [3368] = {.lex_state = 39, .external_lex_state = 2}, [3369] = {.lex_state = 39, .external_lex_state = 5}, - [3370] = {.lex_state = 39, .external_lex_state = 13}, - [3371] = {.lex_state = 39, .external_lex_state = 5}, - [3372] = {.lex_state = 39, .external_lex_state = 11}, - [3373] = {.lex_state = 39, .external_lex_state = 13}, + [3370] = {.lex_state = 39, .external_lex_state = 5}, + [3371] = {.lex_state = 39, .external_lex_state = 2}, + [3372] = {.lex_state = 39, .external_lex_state = 8}, + [3373] = {.lex_state = 39, .external_lex_state = 4}, [3374] = {.lex_state = 39, .external_lex_state = 2}, - [3375] = {.lex_state = 39, .external_lex_state = 5}, - [3376] = {.lex_state = 39, .external_lex_state = 5}, + [3375] = {.lex_state = 39, .external_lex_state = 4}, + [3376] = {.lex_state = 39, .external_lex_state = 4}, [3377] = {.lex_state = 39, .external_lex_state = 5}, - [3378] = {.lex_state = 39, .external_lex_state = 4}, + [3378] = {.lex_state = 39, .external_lex_state = 5}, [3379] = {.lex_state = 39, .external_lex_state = 4}, - [3380] = {.lex_state = 39, .external_lex_state = 4}, - [3381] = {.lex_state = 3, .external_lex_state = 12}, - [3382] = {.lex_state = 39, .external_lex_state = 2}, - [3383] = {.lex_state = 39, .external_lex_state = 2}, + [3380] = {.lex_state = 39, .external_lex_state = 2}, + [3381] = {.lex_state = 39, .external_lex_state = 4}, + [3382] = {.lex_state = 39, .external_lex_state = 11}, + [3383] = {.lex_state = 39, .external_lex_state = 5}, [3384] = {.lex_state = 39, .external_lex_state = 2}, [3385] = {.lex_state = 39, .external_lex_state = 2}, - [3386] = {.lex_state = 39, .external_lex_state = 9}, - [3387] = {.lex_state = 39, .external_lex_state = 5}, - [3388] = {.lex_state = 39, .external_lex_state = 2}, + [3386] = {.lex_state = 39, .external_lex_state = 11}, + [3387] = {.lex_state = 39, .external_lex_state = 13}, + [3388] = {.lex_state = 39, .external_lex_state = 13}, [3389] = {.lex_state = 39, .external_lex_state = 2}, - [3390] = {.lex_state = 39, .external_lex_state = 9}, - [3391] = {.lex_state = 39, .external_lex_state = 2}, + [3390] = {.lex_state = 39, .external_lex_state = 2}, + [3391] = {.lex_state = 39, .external_lex_state = 5}, [3392] = {.lex_state = 39, .external_lex_state = 5}, - [3393] = {.lex_state = 39, .external_lex_state = 2}, + [3393] = {.lex_state = 39, .external_lex_state = 5}, [3394] = {.lex_state = 39, .external_lex_state = 2}, - [3395] = {.lex_state = 39, .external_lex_state = 2}, + [3395] = {.lex_state = 39, .external_lex_state = 5}, [3396] = {.lex_state = 39, .external_lex_state = 2}, - [3397] = {.lex_state = 39, .external_lex_state = 11}, - [3398] = {.lex_state = 39, .external_lex_state = 2}, - [3399] = {.lex_state = 39, .external_lex_state = 9}, - [3400] = {.lex_state = 39, .external_lex_state = 4}, - [3401] = {.lex_state = 39, .external_lex_state = 4}, + [3397] = {.lex_state = 39, .external_lex_state = 2}, + [3398] = {.lex_state = 39, .external_lex_state = 13}, + [3399] = {.lex_state = 39, .external_lex_state = 2}, + [3400] = {.lex_state = 39, .external_lex_state = 5}, + [3401] = {.lex_state = 39, .external_lex_state = 2}, [3402] = {.lex_state = 39, .external_lex_state = 2}, - [3403] = {.lex_state = 39, .external_lex_state = 9}, - [3404] = {.lex_state = 3, .external_lex_state = 12}, - [3405] = {.lex_state = 39, .external_lex_state = 2}, - [3406] = {.lex_state = 39, .external_lex_state = 3}, - [3407] = {.lex_state = 39, .external_lex_state = 2}, - [3408] = {.lex_state = 39, .external_lex_state = 5}, - [3409] = {.lex_state = 39, .external_lex_state = 2}, - [3410] = {.lex_state = 39, .external_lex_state = 14}, - [3411] = {.lex_state = 39, .external_lex_state = 11}, - [3412] = {.lex_state = 39, .external_lex_state = 5}, + [3403] = {.lex_state = 39, .external_lex_state = 5}, + [3404] = {.lex_state = 3, .external_lex_state = 7}, + [3405] = {.lex_state = 39, .external_lex_state = 13}, + [3406] = {.lex_state = 39, .external_lex_state = 5}, + [3407] = {.lex_state = 3, .external_lex_state = 7}, + [3408] = {.lex_state = 3, .external_lex_state = 7}, + [3409] = {.lex_state = 39, .external_lex_state = 5}, + [3410] = {.lex_state = 3, .external_lex_state = 7}, + [3411] = {.lex_state = 39, .external_lex_state = 12}, + [3412] = {.lex_state = 39, .external_lex_state = 13}, [3413] = {.lex_state = 39, .external_lex_state = 5}, [3414] = {.lex_state = 39, .external_lex_state = 5}, - [3415] = {.lex_state = 39, .external_lex_state = 5}, - [3416] = {.lex_state = 39, .external_lex_state = 5}, + [3415] = {.lex_state = 39, .external_lex_state = 3}, + [3416] = {.lex_state = 39, .external_lex_state = 2}, [3417] = {.lex_state = 39, .external_lex_state = 5}, - [3418] = {.lex_state = 39, .external_lex_state = 7}, + [3418] = {.lex_state = 39, .external_lex_state = 2}, [3419] = {.lex_state = 39, .external_lex_state = 5}, - [3420] = {.lex_state = 39, .external_lex_state = 7}, - [3421] = {.lex_state = 39, .external_lex_state = 7}, - [3422] = {.lex_state = 39, .external_lex_state = 7}, - [3423] = {.lex_state = 39, .external_lex_state = 11}, - [3424] = {.lex_state = 3, .external_lex_state = 12}, - [3425] = {.lex_state = 39, .external_lex_state = 12}, - [3426] = {.lex_state = 39, .external_lex_state = 12}, - [3427] = {.lex_state = 39, .external_lex_state = 12}, - [3428] = {.lex_state = 39, .external_lex_state = 12}, - [3429] = {.lex_state = 39, .external_lex_state = 11}, - [3430] = {.lex_state = 39, .external_lex_state = 12}, - [3431] = {.lex_state = 39, .external_lex_state = 12}, - [3432] = {.lex_state = 39, .external_lex_state = 12}, - [3433] = {.lex_state = 39, .external_lex_state = 12}, - [3434] = {.lex_state = 39, .external_lex_state = 12}, - [3435] = {.lex_state = 39, .external_lex_state = 12}, - [3436] = {.lex_state = 39, .external_lex_state = 11}, - [3437] = {.lex_state = 39, .external_lex_state = 12}, - [3438] = {.lex_state = 39, .external_lex_state = 12}, - [3439] = {.lex_state = 39, .external_lex_state = 12}, - [3440] = {.lex_state = 39, .external_lex_state = 14}, - [3441] = {.lex_state = 39, .external_lex_state = 12}, - [3442] = {.lex_state = 39, .external_lex_state = 12}, - [3443] = {.lex_state = 39, .external_lex_state = 10}, - [3444] = {.lex_state = 39, .external_lex_state = 12}, - [3445] = {.lex_state = 39, .external_lex_state = 12}, - [3446] = {.lex_state = 39, .external_lex_state = 11}, - [3447] = {.lex_state = 39, .external_lex_state = 11}, - [3448] = {.lex_state = 39, .external_lex_state = 10}, - [3449] = {.lex_state = 39, .external_lex_state = 5}, - [3450] = {.lex_state = 39, .external_lex_state = 14}, - [3451] = {.lex_state = 39, .external_lex_state = 7}, - [3452] = {.lex_state = 39, .external_lex_state = 12}, - [3453] = {.lex_state = 39, .external_lex_state = 12}, - [3454] = {.lex_state = 39, .external_lex_state = 12}, - [3455] = {.lex_state = 39, .external_lex_state = 12}, - [3456] = {.lex_state = 39, .external_lex_state = 11}, - [3457] = {.lex_state = 39, .external_lex_state = 12}, - [3458] = {.lex_state = 39, .external_lex_state = 12}, - [3459] = {.lex_state = 39, .external_lex_state = 14}, - [3460] = {.lex_state = 39, .external_lex_state = 12}, - [3461] = {.lex_state = 39, .external_lex_state = 2}, - [3462] = {.lex_state = 39, .external_lex_state = 12}, - [3463] = {.lex_state = 39, .external_lex_state = 12}, - [3464] = {.lex_state = 39, .external_lex_state = 12}, - [3465] = {.lex_state = 39, .external_lex_state = 11}, - [3466] = {.lex_state = 39, .external_lex_state = 12}, - [3467] = {.lex_state = 39, .external_lex_state = 12}, - [3468] = {.lex_state = 39, .external_lex_state = 12}, - [3469] = {.lex_state = 39, .external_lex_state = 11}, - [3470] = {.lex_state = 39, .external_lex_state = 11}, - [3471] = {.lex_state = 39, .external_lex_state = 11}, - [3472] = {.lex_state = 39, .external_lex_state = 7}, - [3473] = {.lex_state = 39, .external_lex_state = 7}, - [3474] = {.lex_state = 39, .external_lex_state = 7}, - [3475] = {.lex_state = 39, .external_lex_state = 7}, - [3476] = {.lex_state = 39, .external_lex_state = 11}, - [3477] = {.lex_state = 39, .external_lex_state = 12}, + [3420] = {.lex_state = 39, .external_lex_state = 2}, + [3421] = {.lex_state = 39, .external_lex_state = 2}, + [3422] = {.lex_state = 39, .external_lex_state = 14}, + [3423] = {.lex_state = 39, .external_lex_state = 2}, + [3424] = {.lex_state = 39, .external_lex_state = 5}, + [3425] = {.lex_state = 39, .external_lex_state = 7}, + [3426] = {.lex_state = 39, .external_lex_state = 2}, + [3427] = {.lex_state = 39, .external_lex_state = 3}, + [3428] = {.lex_state = 39, .external_lex_state = 2}, + [3429] = {.lex_state = 39, .external_lex_state = 5}, + [3430] = {.lex_state = 39, .external_lex_state = 2}, + [3431] = {.lex_state = 39, .external_lex_state = 5}, + [3432] = {.lex_state = 39, .external_lex_state = 11}, + [3433] = {.lex_state = 39, .external_lex_state = 11}, + [3434] = {.lex_state = 39, .external_lex_state = 5}, + [3435] = {.lex_state = 39, .external_lex_state = 3}, + [3436] = {.lex_state = 39, .external_lex_state = 9}, + [3437] = {.lex_state = 39, .external_lex_state = 9}, + [3438] = {.lex_state = 39, .external_lex_state = 7}, + [3439] = {.lex_state = 39, .external_lex_state = 3}, + [3440] = {.lex_state = 39, .external_lex_state = 10}, + [3441] = {.lex_state = 39, .external_lex_state = 3}, + [3442] = {.lex_state = 39, .external_lex_state = 9}, + [3443] = {.lex_state = 39, .external_lex_state = 9}, + [3444] = {.lex_state = 39, .external_lex_state = 2}, + [3445] = {.lex_state = 39, .external_lex_state = 2}, + [3446] = {.lex_state = 39, .external_lex_state = 2}, + [3447] = {.lex_state = 39, .external_lex_state = 2}, + [3448] = {.lex_state = 39, .external_lex_state = 2}, + [3449] = {.lex_state = 39, .external_lex_state = 2}, + [3450] = {.lex_state = 39, .external_lex_state = 2}, + [3451] = {.lex_state = 39, .external_lex_state = 2}, + [3452] = {.lex_state = 39, .external_lex_state = 4}, + [3453] = {.lex_state = 39, .external_lex_state = 5}, + [3454] = {.lex_state = 39, .external_lex_state = 10}, + [3455] = {.lex_state = 39, .external_lex_state = 2}, + [3456] = {.lex_state = 39, .external_lex_state = 2}, + [3457] = {.lex_state = 39, .external_lex_state = 5}, + [3458] = {.lex_state = 39, .external_lex_state = 11}, + [3459] = {.lex_state = 39, .external_lex_state = 5}, + [3460] = {.lex_state = 39, .external_lex_state = 5}, + [3461] = {.lex_state = 39, .external_lex_state = 7}, + [3462] = {.lex_state = 39, .external_lex_state = 5}, + [3463] = {.lex_state = 39, .external_lex_state = 2}, + [3464] = {.lex_state = 39, .external_lex_state = 7}, + [3465] = {.lex_state = 3, .external_lex_state = 12}, + [3466] = {.lex_state = 39, .external_lex_state = 5}, + [3467] = {.lex_state = 3, .external_lex_state = 12}, + [3468] = {.lex_state = 3, .external_lex_state = 12}, + [3469] = {.lex_state = 39, .external_lex_state = 2}, + [3470] = {.lex_state = 39, .external_lex_state = 5}, + [3471] = {.lex_state = 39, .external_lex_state = 5}, + [3472] = {.lex_state = 39, .external_lex_state = 5}, + [3473] = {.lex_state = 39, .external_lex_state = 11}, + [3474] = {.lex_state = 39, .external_lex_state = 5}, + [3475] = {.lex_state = 39, .external_lex_state = 2}, + [3476] = {.lex_state = 39, .external_lex_state = 2}, + [3477] = {.lex_state = 39, .external_lex_state = 5}, [3478] = {.lex_state = 39, .external_lex_state = 11}, - [3479] = {.lex_state = 39, .external_lex_state = 11}, - [3480] = {.lex_state = 39, .external_lex_state = 7}, - [3481] = {.lex_state = 39, .external_lex_state = 11}, - [3482] = {.lex_state = 39, .external_lex_state = 11}, - [3483] = {.lex_state = 39, .external_lex_state = 7}, - [3484] = {.lex_state = 39, .external_lex_state = 7}, + [3479] = {.lex_state = 39, .external_lex_state = 12}, + [3480] = {.lex_state = 39, .external_lex_state = 12}, + [3481] = {.lex_state = 39, .external_lex_state = 12}, + [3482] = {.lex_state = 39, .external_lex_state = 12}, + [3483] = {.lex_state = 39, .external_lex_state = 11}, + [3484] = {.lex_state = 39, .external_lex_state = 11}, [3485] = {.lex_state = 39, .external_lex_state = 11}, [3486] = {.lex_state = 39, .external_lex_state = 12}, [3487] = {.lex_state = 39, .external_lex_state = 12}, - [3488] = {.lex_state = 39, .external_lex_state = 11}, + [3488] = {.lex_state = 39, .external_lex_state = 12}, [3489] = {.lex_state = 39, .external_lex_state = 12}, - [3490] = {.lex_state = 39, .external_lex_state = 11}, - [3491] = {.lex_state = 39, .external_lex_state = 11}, + [3490] = {.lex_state = 39, .external_lex_state = 7}, + [3491] = {.lex_state = 39, .external_lex_state = 12}, [3492] = {.lex_state = 39, .external_lex_state = 11}, [3493] = {.lex_state = 39, .external_lex_state = 11}, [3494] = {.lex_state = 39, .external_lex_state = 11}, - [3495] = {.lex_state = 39, .external_lex_state = 7}, + [3495] = {.lex_state = 39, .external_lex_state = 11}, [3496] = {.lex_state = 39, .external_lex_state = 11}, - [3497] = {.lex_state = 39, .external_lex_state = 12}, + [3497] = {.lex_state = 39, .external_lex_state = 11}, [3498] = {.lex_state = 39, .external_lex_state = 11}, [3499] = {.lex_state = 39, .external_lex_state = 11}, [3500] = {.lex_state = 39, .external_lex_state = 11}, [3501] = {.lex_state = 39, .external_lex_state = 11}, - [3502] = {.lex_state = 39, .external_lex_state = 12}, + [3502] = {.lex_state = 39, .external_lex_state = 11}, [3503] = {.lex_state = 39, .external_lex_state = 11}, - [3504] = {.lex_state = 39, .external_lex_state = 12}, + [3504] = {.lex_state = 39, .external_lex_state = 11}, [3505] = {.lex_state = 39, .external_lex_state = 11}, [3506] = {.lex_state = 39, .external_lex_state = 11}, - [3507] = {.lex_state = 39, .external_lex_state = 11}, - [3508] = {.lex_state = 39, .external_lex_state = 12}, - [3509] = {.lex_state = 39, .external_lex_state = 11}, - [3510] = {.lex_state = 39, .external_lex_state = 11}, - [3511] = {.lex_state = 39, .external_lex_state = 7}, - [3512] = {.lex_state = 39, .external_lex_state = 10}, - [3513] = {.lex_state = 39, .external_lex_state = 12}, + [3507] = {.lex_state = 39, .external_lex_state = 12}, + [3508] = {.lex_state = 39, .external_lex_state = 11}, + [3509] = {.lex_state = 39, .external_lex_state = 12}, + [3510] = {.lex_state = 39, .external_lex_state = 12}, + [3511] = {.lex_state = 39, .external_lex_state = 11}, + [3512] = {.lex_state = 39, .external_lex_state = 11}, + [3513] = {.lex_state = 39, .external_lex_state = 11}, [3514] = {.lex_state = 39, .external_lex_state = 11}, [3515] = {.lex_state = 39, .external_lex_state = 11}, - [3516] = {.lex_state = 39, .external_lex_state = 11}, - [3517] = {.lex_state = 39, .external_lex_state = 11}, + [3516] = {.lex_state = 39, .external_lex_state = 12}, + [3517] = {.lex_state = 39, .external_lex_state = 12}, [3518] = {.lex_state = 39, .external_lex_state = 11}, [3519] = {.lex_state = 39, .external_lex_state = 11}, [3520] = {.lex_state = 39, .external_lex_state = 11}, - [3521] = {.lex_state = 39, .external_lex_state = 11}, - [3522] = {.lex_state = 39, .external_lex_state = 11}, - [3523] = {.lex_state = 39, .external_lex_state = 12}, + [3521] = {.lex_state = 39, .external_lex_state = 12}, + [3522] = {.lex_state = 39, .external_lex_state = 12}, + [3523] = {.lex_state = 39, .external_lex_state = 11}, [3524] = {.lex_state = 39, .external_lex_state = 11}, - [3525] = {.lex_state = 39, .external_lex_state = 12}, + [3525] = {.lex_state = 39, .external_lex_state = 11}, [3526] = {.lex_state = 39, .external_lex_state = 11}, - [3527] = {.lex_state = 39, .external_lex_state = 11}, + [3527] = {.lex_state = 39, .external_lex_state = 12}, [3528] = {.lex_state = 39, .external_lex_state = 11}, - [3529] = {.lex_state = 39, .external_lex_state = 11}, + [3529] = {.lex_state = 39, .external_lex_state = 5}, [3530] = {.lex_state = 39, .external_lex_state = 12}, - [3531] = {.lex_state = 39, .external_lex_state = 11}, + [3531] = {.lex_state = 39, .external_lex_state = 12}, [3532] = {.lex_state = 39, .external_lex_state = 12}, - [3533] = {.lex_state = 39, .external_lex_state = 11}, + [3533] = {.lex_state = 39, .external_lex_state = 12}, [3534] = {.lex_state = 39, .external_lex_state = 11}, - [3535] = {.lex_state = 39, .external_lex_state = 11}, + [3535] = {.lex_state = 39, .external_lex_state = 12}, [3536] = {.lex_state = 39, .external_lex_state = 12}, - [3537] = {.lex_state = 39, .external_lex_state = 12}, - [3538] = {.lex_state = 39, .external_lex_state = 11}, + [3537] = {.lex_state = 39, .external_lex_state = 11}, + [3538] = {.lex_state = 39, .external_lex_state = 12}, [3539] = {.lex_state = 39, .external_lex_state = 12}, - [3540] = {.lex_state = 39, .external_lex_state = 11}, + [3540] = {.lex_state = 39, .external_lex_state = 12}, [3541] = {.lex_state = 39, .external_lex_state = 12}, - [3542] = {.lex_state = 39, .external_lex_state = 11}, + [3542] = {.lex_state = 39, .external_lex_state = 12}, [3543] = {.lex_state = 39, .external_lex_state = 11}, - [3544] = {.lex_state = 39, .external_lex_state = 11}, - [3545] = {.lex_state = 39, .external_lex_state = 12}, + [3544] = {.lex_state = 39, .external_lex_state = 12}, + [3545] = {.lex_state = 39, .external_lex_state = 11}, [3546] = {.lex_state = 39, .external_lex_state = 11}, [3547] = {.lex_state = 39, .external_lex_state = 11}, - [3548] = {.lex_state = 39, .external_lex_state = 12}, + [3548] = {.lex_state = 39, .external_lex_state = 11}, [3549] = {.lex_state = 39, .external_lex_state = 11}, - [3550] = {.lex_state = 39, .external_lex_state = 12}, - [3551] = {.lex_state = 39, .external_lex_state = 12}, + [3550] = {.lex_state = 39, .external_lex_state = 11}, + [3551] = {.lex_state = 39, .external_lex_state = 11}, [3552] = {.lex_state = 39, .external_lex_state = 11}, - [3553] = {.lex_state = 39, .external_lex_state = 12}, - [3554] = {.lex_state = 39, .external_lex_state = 12}, + [3553] = {.lex_state = 39, .external_lex_state = 11}, + [3554] = {.lex_state = 39, .external_lex_state = 11}, [3555] = {.lex_state = 39, .external_lex_state = 11}, - [3556] = {.lex_state = 39, .external_lex_state = 12}, + [3556] = {.lex_state = 39, .external_lex_state = 11}, [3557] = {.lex_state = 39, .external_lex_state = 11}, - [3558] = {.lex_state = 39, .external_lex_state = 12}, - [3559] = {.lex_state = 39, .external_lex_state = 12}, + [3558] = {.lex_state = 39, .external_lex_state = 11}, + [3559] = {.lex_state = 39, .external_lex_state = 11}, [3560] = {.lex_state = 39, .external_lex_state = 11}, [3561] = {.lex_state = 39, .external_lex_state = 11}, [3562] = {.lex_state = 39, .external_lex_state = 11}, [3563] = {.lex_state = 39, .external_lex_state = 11}, - [3564] = {.lex_state = 39, .external_lex_state = 12}, + [3564] = {.lex_state = 39, .external_lex_state = 11}, [3565] = {.lex_state = 39, .external_lex_state = 11}, [3566] = {.lex_state = 39, .external_lex_state = 11}, - [3567] = {.lex_state = 39, .external_lex_state = 12}, - [3568] = {.lex_state = 39, .external_lex_state = 6}, - [3569] = {.lex_state = 39, .external_lex_state = 12}, - [3570] = {.lex_state = 39, .external_lex_state = 13}, + [3567] = {.lex_state = 39, .external_lex_state = 14}, + [3568] = {.lex_state = 39, .external_lex_state = 11}, + [3569] = {.lex_state = 39, .external_lex_state = 11}, + [3570] = {.lex_state = 39, .external_lex_state = 2}, [3571] = {.lex_state = 39, .external_lex_state = 12}, - [3572] = {.lex_state = 39, .external_lex_state = 12}, + [3572] = {.lex_state = 39, .external_lex_state = 11}, [3573] = {.lex_state = 39, .external_lex_state = 11}, - [3574] = {.lex_state = 39, .external_lex_state = 13}, + [3574] = {.lex_state = 39, .external_lex_state = 11}, [3575] = {.lex_state = 39, .external_lex_state = 12}, - [3576] = {.lex_state = 39, .external_lex_state = 12}, - [3577] = {.lex_state = 39, .external_lex_state = 12}, - [3578] = {.lex_state = 39, .external_lex_state = 5}, - [3579] = {.lex_state = 39, .external_lex_state = 12}, - [3580] = {.lex_state = 39, .external_lex_state = 13}, - [3581] = {.lex_state = 39, .external_lex_state = 13}, - [3582] = {.lex_state = 39, .external_lex_state = 5}, - [3583] = {.lex_state = 39, .external_lex_state = 12}, - [3584] = {.lex_state = 39, .external_lex_state = 12}, - [3585] = {.lex_state = 39, .external_lex_state = 2}, - [3586] = {.lex_state = 39, .external_lex_state = 13}, - [3587] = {.lex_state = 39, .external_lex_state = 13}, - [3588] = {.lex_state = 39, .external_lex_state = 13}, - [3589] = {.lex_state = 39, .external_lex_state = 12}, - [3590] = {.lex_state = 39, .external_lex_state = 5}, - [3591] = {.lex_state = 39, .external_lex_state = 12}, + [3576] = {.lex_state = 39, .external_lex_state = 11}, + [3577] = {.lex_state = 39, .external_lex_state = 14}, + [3578] = {.lex_state = 39, .external_lex_state = 14}, + [3579] = {.lex_state = 39, .external_lex_state = 6}, + [3580] = {.lex_state = 39, .external_lex_state = 11}, + [3581] = {.lex_state = 39, .external_lex_state = 12}, + [3582] = {.lex_state = 39, .external_lex_state = 6}, + [3583] = {.lex_state = 39, .external_lex_state = 11}, + [3584] = {.lex_state = 39, .external_lex_state = 11}, + [3585] = {.lex_state = 39, .external_lex_state = 11}, + [3586] = {.lex_state = 39, .external_lex_state = 6}, + [3587] = {.lex_state = 39, .external_lex_state = 7}, + [3588] = {.lex_state = 39, .external_lex_state = 11}, + [3589] = {.lex_state = 39, .external_lex_state = 7}, + [3590] = {.lex_state = 39, .external_lex_state = 11}, + [3591] = {.lex_state = 39, .external_lex_state = 11}, [3592] = {.lex_state = 39, .external_lex_state = 12}, [3593] = {.lex_state = 39, .external_lex_state = 11}, - [3594] = {.lex_state = 39, .external_lex_state = 11}, + [3594] = {.lex_state = 39, .external_lex_state = 7}, [3595] = {.lex_state = 39, .external_lex_state = 12}, - [3596] = {.lex_state = 39, .external_lex_state = 12}, - [3597] = {.lex_state = 39, .external_lex_state = 11}, - [3598] = {.lex_state = 39, .external_lex_state = 12}, - [3599] = {.lex_state = 39, .external_lex_state = 12}, - [3600] = {.lex_state = 39, .external_lex_state = 11}, - [3601] = {.lex_state = 39, .external_lex_state = 7}, + [3596] = {.lex_state = 39, .external_lex_state = 11}, + [3597] = {.lex_state = 39, .external_lex_state = 7}, + [3598] = {.lex_state = 39, .external_lex_state = 6}, + [3599] = {.lex_state = 39, .external_lex_state = 7}, + [3600] = {.lex_state = 39, .external_lex_state = 12}, + [3601] = {.lex_state = 39, .external_lex_state = 11}, [3602] = {.lex_state = 39, .external_lex_state = 12}, [3603] = {.lex_state = 39, .external_lex_state = 11}, [3604] = {.lex_state = 39, .external_lex_state = 12}, - [3605] = {.lex_state = 39, .external_lex_state = 12}, - [3606] = {.lex_state = 39, .external_lex_state = 12}, - [3607] = {.lex_state = 39, .external_lex_state = 12}, + [3605] = {.lex_state = 39, .external_lex_state = 11}, + [3606] = {.lex_state = 39, .external_lex_state = 6}, + [3607] = {.lex_state = 39, .external_lex_state = 7}, [3608] = {.lex_state = 39, .external_lex_state = 11}, - [3609] = {.lex_state = 39, .external_lex_state = 11}, - [3610] = {.lex_state = 39, .external_lex_state = 13}, - [3611] = {.lex_state = 39, .external_lex_state = 11}, - [3612] = {.lex_state = 39, .external_lex_state = 13}, - [3613] = {.lex_state = 39, .external_lex_state = 11}, - [3614] = {.lex_state = 39, .external_lex_state = 13}, - [3615] = {.lex_state = 39, .external_lex_state = 13}, - [3616] = {.lex_state = 39, .external_lex_state = 13}, - [3617] = {.lex_state = 39, .external_lex_state = 5}, - [3618] = {.lex_state = 39, .external_lex_state = 11}, - [3619] = {.lex_state = 39, .external_lex_state = 13}, - [3620] = {.lex_state = 39, .external_lex_state = 12}, - [3621] = {.lex_state = 39, .external_lex_state = 13}, - [3622] = {.lex_state = 39, .external_lex_state = 12}, - [3623] = {.lex_state = 39, .external_lex_state = 13}, + [3609] = {.lex_state = 39, .external_lex_state = 6}, + [3610] = {.lex_state = 39, .external_lex_state = 6}, + [3611] = {.lex_state = 39, .external_lex_state = 7}, + [3612] = {.lex_state = 39, .external_lex_state = 7}, + [3613] = {.lex_state = 39, .external_lex_state = 12}, + [3614] = {.lex_state = 39, .external_lex_state = 12}, + [3615] = {.lex_state = 39, .external_lex_state = 6}, + [3616] = {.lex_state = 39, .external_lex_state = 11}, + [3617] = {.lex_state = 39, .external_lex_state = 11}, + [3618] = {.lex_state = 39, .external_lex_state = 12}, + [3619] = {.lex_state = 39, .external_lex_state = 12}, + [3620] = {.lex_state = 39, .external_lex_state = 6}, + [3621] = {.lex_state = 39, .external_lex_state = 11}, + [3622] = {.lex_state = 39, .external_lex_state = 11}, + [3623] = {.lex_state = 39, .external_lex_state = 11}, [3624] = {.lex_state = 39, .external_lex_state = 11}, - [3625] = {.lex_state = 39, .external_lex_state = 6}, + [3625] = {.lex_state = 39, .external_lex_state = 11}, [3626] = {.lex_state = 39, .external_lex_state = 11}, [3627] = {.lex_state = 39, .external_lex_state = 12}, [3628] = {.lex_state = 39, .external_lex_state = 12}, - [3629] = {.lex_state = 39, .external_lex_state = 13}, - [3630] = {.lex_state = 39, .external_lex_state = 13}, + [3629] = {.lex_state = 39, .external_lex_state = 12}, + [3630] = {.lex_state = 39, .external_lex_state = 11}, [3631] = {.lex_state = 39, .external_lex_state = 12}, - [3632] = {.lex_state = 39, .external_lex_state = 13}, + [3632] = {.lex_state = 39, .external_lex_state = 12}, [3633] = {.lex_state = 39, .external_lex_state = 11}, - [3634] = {.lex_state = 39, .external_lex_state = 13}, - [3635] = {.lex_state = 39, .external_lex_state = 11}, - [3636] = {.lex_state = 39, .external_lex_state = 13}, + [3634] = {.lex_state = 39, .external_lex_state = 11}, + [3635] = {.lex_state = 39, .external_lex_state = 12}, + [3636] = {.lex_state = 39, .external_lex_state = 12}, [3637] = {.lex_state = 39, .external_lex_state = 12}, - [3638] = {.lex_state = 39, .external_lex_state = 13}, + [3638] = {.lex_state = 39, .external_lex_state = 11}, [3639] = {.lex_state = 39, .external_lex_state = 12}, - [3640] = {.lex_state = 39, .external_lex_state = 13}, - [3641] = {.lex_state = 39, .external_lex_state = 13}, - [3642] = {.lex_state = 39, .external_lex_state = 11}, + [3640] = {.lex_state = 39, .external_lex_state = 12}, + [3641] = {.lex_state = 39, .external_lex_state = 11}, + [3642] = {.lex_state = 39, .external_lex_state = 12}, [3643] = {.lex_state = 39, .external_lex_state = 12}, - [3644] = {.lex_state = 39, .external_lex_state = 13}, - [3645] = {.lex_state = 39, .external_lex_state = 2}, - [3646] = {.lex_state = 39, .external_lex_state = 2}, - [3647] = {.lex_state = 39, .external_lex_state = 12}, + [3644] = {.lex_state = 39, .external_lex_state = 12}, + [3645] = {.lex_state = 39, .external_lex_state = 12}, + [3646] = {.lex_state = 39, .external_lex_state = 12}, + [3647] = {.lex_state = 39, .external_lex_state = 10}, [3648] = {.lex_state = 39, .external_lex_state = 12}, - [3649] = {.lex_state = 39, .external_lex_state = 12}, - [3650] = {.lex_state = 39, .external_lex_state = 12}, + [3649] = {.lex_state = 39, .external_lex_state = 11}, + [3650] = {.lex_state = 39, .external_lex_state = 11}, [3651] = {.lex_state = 39, .external_lex_state = 12}, [3652] = {.lex_state = 39, .external_lex_state = 12}, - [3653] = {.lex_state = 39, .external_lex_state = 12}, - [3654] = {.lex_state = 39, .external_lex_state = 13}, + [3653] = {.lex_state = 39, .external_lex_state = 11}, + [3654] = {.lex_state = 39, .external_lex_state = 12}, [3655] = {.lex_state = 39, .external_lex_state = 12}, [3656] = {.lex_state = 39, .external_lex_state = 12}, - [3657] = {.lex_state = 39, .external_lex_state = 11}, - [3658] = {.lex_state = 39, .external_lex_state = 13}, - [3659] = {.lex_state = 39, .external_lex_state = 13}, - [3660] = {.lex_state = 39, .external_lex_state = 12}, - [3661] = {.lex_state = 39, .external_lex_state = 13}, + [3657] = {.lex_state = 39, .external_lex_state = 12}, + [3658] = {.lex_state = 39, .external_lex_state = 12}, + [3659] = {.lex_state = 39, .external_lex_state = 12}, + [3660] = {.lex_state = 39, .external_lex_state = 11}, + [3661] = {.lex_state = 39, .external_lex_state = 11}, [3662] = {.lex_state = 39, .external_lex_state = 12}, - [3663] = {.lex_state = 39, .external_lex_state = 11}, - [3664] = {.lex_state = 39, .external_lex_state = 13}, + [3663] = {.lex_state = 39, .external_lex_state = 12}, + [3664] = {.lex_state = 39, .external_lex_state = 12}, [3665] = {.lex_state = 39, .external_lex_state = 12}, - [3666] = {.lex_state = 39, .external_lex_state = 13}, - [3667] = {.lex_state = 39, .external_lex_state = 13}, - [3668] = {.lex_state = 39, .external_lex_state = 13}, - [3669] = {.lex_state = 39, .external_lex_state = 13}, - [3670] = {.lex_state = 39, .external_lex_state = 13}, + [3666] = {.lex_state = 39, .external_lex_state = 11}, + [3667] = {.lex_state = 39, .external_lex_state = 12}, + [3668] = {.lex_state = 39, .external_lex_state = 12}, + [3669] = {.lex_state = 39, .external_lex_state = 11}, + [3670] = {.lex_state = 39, .external_lex_state = 12}, [3671] = {.lex_state = 39, .external_lex_state = 12}, - [3672] = {.lex_state = 39, .external_lex_state = 6}, - [3673] = {.lex_state = 39, .external_lex_state = 6}, - [3674] = {.lex_state = 39, .external_lex_state = 6}, - [3675] = {.lex_state = 39, .external_lex_state = 6}, - [3676] = {.lex_state = 39, .external_lex_state = 5}, - [3677] = {.lex_state = 39, .external_lex_state = 6}, - [3678] = {.lex_state = 39, .external_lex_state = 13}, + [3672] = {.lex_state = 39, .external_lex_state = 12}, + [3673] = {.lex_state = 39, .external_lex_state = 12}, + [3674] = {.lex_state = 39, .external_lex_state = 12}, + [3675] = {.lex_state = 39, .external_lex_state = 12}, + [3676] = {.lex_state = 39, .external_lex_state = 12}, + [3677] = {.lex_state = 39, .external_lex_state = 12}, + [3678] = {.lex_state = 39, .external_lex_state = 12}, [3679] = {.lex_state = 39, .external_lex_state = 12}, [3680] = {.lex_state = 39, .external_lex_state = 12}, [3681] = {.lex_state = 39, .external_lex_state = 12}, [3682] = {.lex_state = 39, .external_lex_state = 12}, [3683] = {.lex_state = 39, .external_lex_state = 12}, - [3684] = {.lex_state = 39, .external_lex_state = 13}, - [3685] = {.lex_state = 39, .external_lex_state = 5}, - [3686] = {.lex_state = 39, .external_lex_state = 13}, + [3684] = {.lex_state = 39, .external_lex_state = 12}, + [3685] = {.lex_state = 39, .external_lex_state = 12}, + [3686] = {.lex_state = 39, .external_lex_state = 12}, [3687] = {.lex_state = 39, .external_lex_state = 12}, - [3688] = {.lex_state = 39, .external_lex_state = 11}, - [3689] = {.lex_state = 39, .external_lex_state = 12}, - [3690] = {.lex_state = 39, .external_lex_state = 6}, + [3688] = {.lex_state = 39, .external_lex_state = 12}, + [3689] = {.lex_state = 39, .external_lex_state = 13}, + [3690] = {.lex_state = 39, .external_lex_state = 12}, [3691] = {.lex_state = 39, .external_lex_state = 12}, - [3692] = {.lex_state = 39, .external_lex_state = 12}, - [3693] = {.lex_state = 39, .external_lex_state = 2}, - [3694] = {.lex_state = 39, .external_lex_state = 6}, - [3695] = {.lex_state = 39, .external_lex_state = 13}, - [3696] = {.lex_state = 39, .external_lex_state = 11}, + [3692] = {.lex_state = 39, .external_lex_state = 11}, + [3693] = {.lex_state = 39, .external_lex_state = 13}, + [3694] = {.lex_state = 39, .external_lex_state = 12}, + [3695] = {.lex_state = 39, .external_lex_state = 12}, + [3696] = {.lex_state = 39, .external_lex_state = 12}, [3697] = {.lex_state = 39, .external_lex_state = 12}, [3698] = {.lex_state = 39, .external_lex_state = 13}, - [3699] = {.lex_state = 39, .external_lex_state = 12}, - [3700] = {.lex_state = 39, .external_lex_state = 11}, + [3699] = {.lex_state = 39, .external_lex_state = 2}, + [3700] = {.lex_state = 39, .external_lex_state = 12}, [3701] = {.lex_state = 39, .external_lex_state = 12}, [3702] = {.lex_state = 39, .external_lex_state = 12}, [3703] = {.lex_state = 39, .external_lex_state = 12}, - [3704] = {.lex_state = 39, .external_lex_state = 13}, + [3704] = {.lex_state = 39, .external_lex_state = 12}, [3705] = {.lex_state = 39, .external_lex_state = 11}, - [3706] = {.lex_state = 39, .external_lex_state = 11}, - [3707] = {.lex_state = 39, .external_lex_state = 12}, - [3708] = {.lex_state = 39, .external_lex_state = 12}, + [3706] = {.lex_state = 39, .external_lex_state = 12}, + [3707] = {.lex_state = 39, .external_lex_state = 13}, + [3708] = {.lex_state = 39, .external_lex_state = 11}, [3709] = {.lex_state = 39, .external_lex_state = 11}, [3710] = {.lex_state = 39, .external_lex_state = 11}, - [3711] = {.lex_state = 39, .external_lex_state = 2}, + [3711] = {.lex_state = 39, .external_lex_state = 11}, [3712] = {.lex_state = 39, .external_lex_state = 11}, - [3713] = {.lex_state = 39, .external_lex_state = 11}, - [3714] = {.lex_state = 39, .external_lex_state = 2}, - [3715] = {.lex_state = 39, .external_lex_state = 12}, - [3716] = {.lex_state = 39, .external_lex_state = 13}, + [3713] = {.lex_state = 39, .external_lex_state = 13}, + [3714] = {.lex_state = 39, .external_lex_state = 11}, + [3715] = {.lex_state = 39, .external_lex_state = 13}, + [3716] = {.lex_state = 39, .external_lex_state = 12}, [3717] = {.lex_state = 39, .external_lex_state = 13}, - [3718] = {.lex_state = 39, .external_lex_state = 6}, + [3718] = {.lex_state = 39, .external_lex_state = 13}, [3719] = {.lex_state = 39, .external_lex_state = 13}, - [3720] = {.lex_state = 39, .external_lex_state = 11}, - [3721] = {.lex_state = 39, .external_lex_state = 11}, - [3722] = {.lex_state = 39, .external_lex_state = 11}, - [3723] = {.lex_state = 3, .external_lex_state = 12}, - [3724] = {.lex_state = 39, .external_lex_state = 11}, - [3725] = {.lex_state = 39, .external_lex_state = 6}, + [3720] = {.lex_state = 39, .external_lex_state = 13}, + [3721] = {.lex_state = 39, .external_lex_state = 13}, + [3722] = {.lex_state = 39, .external_lex_state = 2}, + [3723] = {.lex_state = 39, .external_lex_state = 13}, + [3724] = {.lex_state = 39, .external_lex_state = 13}, + [3725] = {.lex_state = 39, .external_lex_state = 2}, [3726] = {.lex_state = 39, .external_lex_state = 13}, [3727] = {.lex_state = 39, .external_lex_state = 13}, [3728] = {.lex_state = 39, .external_lex_state = 13}, [3729] = {.lex_state = 39, .external_lex_state = 11}, - [3730] = {.lex_state = 39, .external_lex_state = 11}, - [3731] = {.lex_state = 39, .external_lex_state = 11}, - [3732] = {.lex_state = 39, .external_lex_state = 11}, - [3733] = {.lex_state = 39, .external_lex_state = 11}, - [3734] = {.lex_state = 39, .external_lex_state = 11}, - [3735] = {.lex_state = 39, .external_lex_state = 11}, - [3736] = {.lex_state = 39, .external_lex_state = 11}, - [3737] = {.lex_state = 39, .external_lex_state = 11}, - [3738] = {.lex_state = 39, .external_lex_state = 11}, + [3730] = {.lex_state = 39, .external_lex_state = 13}, + [3731] = {.lex_state = 39, .external_lex_state = 13}, + [3732] = {.lex_state = 39, .external_lex_state = 13}, + [3733] = {.lex_state = 39, .external_lex_state = 13}, + [3734] = {.lex_state = 39, .external_lex_state = 13}, + [3735] = {.lex_state = 39, .external_lex_state = 13}, + [3736] = {.lex_state = 39, .external_lex_state = 2}, + [3737] = {.lex_state = 39, .external_lex_state = 13}, + [3738] = {.lex_state = 39, .external_lex_state = 13}, [3739] = {.lex_state = 39, .external_lex_state = 11}, - [3740] = {.lex_state = 3, .external_lex_state = 12}, - [3741] = {.lex_state = 39, .external_lex_state = 11}, - [3742] = {.lex_state = 39, .external_lex_state = 11}, + [3740] = {.lex_state = 39, .external_lex_state = 13}, + [3741] = {.lex_state = 39, .external_lex_state = 13}, + [3742] = {.lex_state = 39, .external_lex_state = 13}, [3743] = {.lex_state = 39, .external_lex_state = 13}, - [3744] = {.lex_state = 39, .external_lex_state = 11}, - [3745] = {.lex_state = 39, .external_lex_state = 13}, + [3744] = {.lex_state = 39, .external_lex_state = 13}, + [3745] = {.lex_state = 39, .external_lex_state = 12}, [3746] = {.lex_state = 39, .external_lex_state = 13}, - [3747] = {.lex_state = 39, .external_lex_state = 11}, - [3748] = {.lex_state = 3, .external_lex_state = 12}, - [3749] = {.lex_state = 3, .external_lex_state = 12}, - [3750] = {.lex_state = 3, .external_lex_state = 12}, - [3751] = {.lex_state = 3, .external_lex_state = 12}, - [3752] = {.lex_state = 39, .external_lex_state = 11}, - [3753] = {.lex_state = 39, .external_lex_state = 6}, - [3754] = {.lex_state = 39, .external_lex_state = 6}, - [3755] = {.lex_state = 3, .external_lex_state = 12}, - [3756] = {.lex_state = 39, .external_lex_state = 13}, + [3747] = {.lex_state = 39, .external_lex_state = 13}, + [3748] = {.lex_state = 39, .external_lex_state = 12}, + [3749] = {.lex_state = 39, .external_lex_state = 13}, + [3750] = {.lex_state = 39, .external_lex_state = 13}, + [3751] = {.lex_state = 39, .external_lex_state = 12}, + [3752] = {.lex_state = 39, .external_lex_state = 2}, + [3753] = {.lex_state = 39, .external_lex_state = 2}, + [3754] = {.lex_state = 39, .external_lex_state = 13}, + [3755] = {.lex_state = 39, .external_lex_state = 2}, + [3756] = {.lex_state = 39, .external_lex_state = 11}, [3757] = {.lex_state = 39, .external_lex_state = 13}, - [3758] = {.lex_state = 3, .external_lex_state = 12}, - [3759] = {.lex_state = 39, .external_lex_state = 6}, - [3760] = {.lex_state = 3, .external_lex_state = 12}, - [3761] = {.lex_state = 39, .external_lex_state = 11}, - [3762] = {.lex_state = 3, .external_lex_state = 12}, - [3763] = {.lex_state = 39, .external_lex_state = 11}, - [3764] = {.lex_state = 39, .external_lex_state = 13}, - [3765] = {.lex_state = 39, .external_lex_state = 11}, - [3766] = {.lex_state = 39, .external_lex_state = 11}, + [3758] = {.lex_state = 39, .external_lex_state = 13}, + [3759] = {.lex_state = 39, .external_lex_state = 7}, + [3760] = {.lex_state = 39, .external_lex_state = 12}, + [3761] = {.lex_state = 39, .external_lex_state = 5}, + [3762] = {.lex_state = 39, .external_lex_state = 12}, + [3763] = {.lex_state = 39, .external_lex_state = 6}, + [3764] = {.lex_state = 39, .external_lex_state = 6}, + [3765] = {.lex_state = 39, .external_lex_state = 13}, + [3766] = {.lex_state = 39, .external_lex_state = 5}, [3767] = {.lex_state = 39, .external_lex_state = 13}, - [3768] = {.lex_state = 39, .external_lex_state = 11}, + [3768] = {.lex_state = 39, .external_lex_state = 13}, [3769] = {.lex_state = 39, .external_lex_state = 13}, [3770] = {.lex_state = 39, .external_lex_state = 11}, - [3771] = {.lex_state = 3, .external_lex_state = 12}, - [3772] = {.lex_state = 39, .external_lex_state = 13}, - [3773] = {.lex_state = 3, .external_lex_state = 12}, - [3774] = {.lex_state = 3, .external_lex_state = 12}, - [3775] = {.lex_state = 3, .external_lex_state = 12}, + [3771] = {.lex_state = 39, .external_lex_state = 12}, + [3772] = {.lex_state = 39, .external_lex_state = 6}, + [3773] = {.lex_state = 39, .external_lex_state = 6}, + [3774] = {.lex_state = 39, .external_lex_state = 12}, + [3775] = {.lex_state = 39, .external_lex_state = 12}, [3776] = {.lex_state = 39, .external_lex_state = 11}, - [3777] = {.lex_state = 3, .external_lex_state = 12}, + [3777] = {.lex_state = 39, .external_lex_state = 12}, [3778] = {.lex_state = 39, .external_lex_state = 13}, - [3779] = {.lex_state = 3, .external_lex_state = 12}, - [3780] = {.lex_state = 39, .external_lex_state = 13}, - [3781] = {.lex_state = 39, .external_lex_state = 11}, - [3782] = {.lex_state = 3, .external_lex_state = 12}, - [3783] = {.lex_state = 3, .external_lex_state = 12}, + [3779] = {.lex_state = 39, .external_lex_state = 13}, + [3780] = {.lex_state = 39, .external_lex_state = 12}, + [3781] = {.lex_state = 39, .external_lex_state = 12}, + [3782] = {.lex_state = 39, .external_lex_state = 12}, + [3783] = {.lex_state = 39, .external_lex_state = 6}, [3784] = {.lex_state = 39, .external_lex_state = 11}, - [3785] = {.lex_state = 39, .external_lex_state = 11}, - [3786] = {.lex_state = 39, .external_lex_state = 11}, - [3787] = {.lex_state = 3, .external_lex_state = 12}, - [3788] = {.lex_state = 3, .external_lex_state = 12}, - [3789] = {.lex_state = 39, .external_lex_state = 13}, - [3790] = {.lex_state = 39, .external_lex_state = 11}, - [3791] = {.lex_state = 39, .external_lex_state = 13}, - [3792] = {.lex_state = 3, .external_lex_state = 12}, - [3793] = {.lex_state = 39, .external_lex_state = 13}, - [3794] = {.lex_state = 3, .external_lex_state = 12}, - [3795] = {.lex_state = 39, .external_lex_state = 11}, - [3796] = {.lex_state = 3, .external_lex_state = 12}, - [3797] = {.lex_state = 3, .external_lex_state = 12}, - [3798] = {.lex_state = 39, .external_lex_state = 13}, - [3799] = {.lex_state = 3, .external_lex_state = 12}, - [3800] = {.lex_state = 39, .external_lex_state = 11}, - [3801] = {.lex_state = 3, .external_lex_state = 12}, - [3802] = {.lex_state = 3, .external_lex_state = 12}, - [3803] = {.lex_state = 39, .external_lex_state = 11}, + [3785] = {.lex_state = 39, .external_lex_state = 6}, + [3786] = {.lex_state = 39, .external_lex_state = 5}, + [3787] = {.lex_state = 39, .external_lex_state = 6}, + [3788] = {.lex_state = 39, .external_lex_state = 6}, + [3789] = {.lex_state = 39, .external_lex_state = 12}, + [3790] = {.lex_state = 39, .external_lex_state = 5}, + [3791] = {.lex_state = 39, .external_lex_state = 12}, + [3792] = {.lex_state = 39, .external_lex_state = 11}, + [3793] = {.lex_state = 39, .external_lex_state = 12}, + [3794] = {.lex_state = 39, .external_lex_state = 6}, + [3795] = {.lex_state = 39, .external_lex_state = 5}, + [3796] = {.lex_state = 39, .external_lex_state = 11}, + [3797] = {.lex_state = 39, .external_lex_state = 5}, + [3798] = {.lex_state = 39, .external_lex_state = 5}, + [3799] = {.lex_state = 39, .external_lex_state = 13}, + [3800] = {.lex_state = 39, .external_lex_state = 13}, + [3801] = {.lex_state = 39, .external_lex_state = 2}, + [3802] = {.lex_state = 39, .external_lex_state = 11}, + [3803] = {.lex_state = 39, .external_lex_state = 13}, [3804] = {.lex_state = 3, .external_lex_state = 12}, - [3805] = {.lex_state = 39, .external_lex_state = 11}, - [3806] = {.lex_state = 39, .external_lex_state = 11}, - [3807] = {.lex_state = 3, .external_lex_state = 12}, - [3808] = {.lex_state = 3, .external_lex_state = 12}, + [3805] = {.lex_state = 39, .external_lex_state = 13}, + [3806] = {.lex_state = 3, .external_lex_state = 12}, + [3807] = {.lex_state = 39, .external_lex_state = 13}, + [3808] = {.lex_state = 39, .external_lex_state = 13}, [3809] = {.lex_state = 39, .external_lex_state = 13}, - [3810] = {.lex_state = 39, .external_lex_state = 13}, - [3811] = {.lex_state = 3, .external_lex_state = 12}, + [3810] = {.lex_state = 39, .external_lex_state = 11}, + [3811] = {.lex_state = 39, .external_lex_state = 11}, [3812] = {.lex_state = 39, .external_lex_state = 13}, [3813] = {.lex_state = 39, .external_lex_state = 13}, - [3814] = {.lex_state = 39, .external_lex_state = 11}, + [3814] = {.lex_state = 39, .external_lex_state = 10}, [3815] = {.lex_state = 3, .external_lex_state = 12}, - [3816] = {.lex_state = 39, .external_lex_state = 6}, - [3817] = {.lex_state = 39, .external_lex_state = 6}, - [3818] = {.lex_state = 39, .external_lex_state = 13}, - [3819] = {.lex_state = 3, .external_lex_state = 12}, + [3816] = {.lex_state = 39, .external_lex_state = 11}, + [3817] = {.lex_state = 39, .external_lex_state = 4}, + [3818] = {.lex_state = 39, .external_lex_state = 11}, + [3819] = {.lex_state = 39, .external_lex_state = 13}, [3820] = {.lex_state = 39, .external_lex_state = 11}, - [3821] = {.lex_state = 3, .external_lex_state = 12}, - [3822] = {.lex_state = 3, .external_lex_state = 12}, + [3821] = {.lex_state = 39, .external_lex_state = 11}, + [3822] = {.lex_state = 39, .external_lex_state = 10}, [3823] = {.lex_state = 39, .external_lex_state = 11}, - [3824] = {.lex_state = 3, .external_lex_state = 12}, - [3825] = {.lex_state = 3, .external_lex_state = 12}, - [3826] = {.lex_state = 3, .external_lex_state = 12}, - [3827] = {.lex_state = 3, .external_lex_state = 12}, + [3824] = {.lex_state = 39, .external_lex_state = 11}, + [3825] = {.lex_state = 39, .external_lex_state = 11}, + [3826] = {.lex_state = 39, .external_lex_state = 10}, + [3827] = {.lex_state = 39, .external_lex_state = 2}, [3828] = {.lex_state = 39, .external_lex_state = 11}, - [3829] = {.lex_state = 39, .external_lex_state = 6}, - [3830] = {.lex_state = 3, .external_lex_state = 12}, - [3831] = {.lex_state = 39, .external_lex_state = 6}, - [3832] = {.lex_state = 39, .external_lex_state = 11}, + [3829] = {.lex_state = 3, .external_lex_state = 12}, + [3830] = {.lex_state = 39, .external_lex_state = 11}, + [3831] = {.lex_state = 39, .external_lex_state = 11}, + [3832] = {.lex_state = 39, .external_lex_state = 3}, [3833] = {.lex_state = 39, .external_lex_state = 13}, [3834] = {.lex_state = 39, .external_lex_state = 13}, - [3835] = {.lex_state = 39, .external_lex_state = 13}, - [3836] = {.lex_state = 39, .external_lex_state = 11}, - [3837] = {.lex_state = 39, .external_lex_state = 11}, - [3838] = {.lex_state = 39, .external_lex_state = 11}, - [3839] = {.lex_state = 39, .external_lex_state = 11}, + [3835] = {.lex_state = 39, .external_lex_state = 10}, + [3836] = {.lex_state = 39, .external_lex_state = 10}, + [3837] = {.lex_state = 3, .external_lex_state = 12}, + [3838] = {.lex_state = 39, .external_lex_state = 10}, + [3839] = {.lex_state = 39, .external_lex_state = 10}, [3840] = {.lex_state = 39, .external_lex_state = 11}, - [3841] = {.lex_state = 3, .external_lex_state = 12}, - [3842] = {.lex_state = 39, .external_lex_state = 11}, - [3843] = {.lex_state = 3, .external_lex_state = 12}, - [3844] = {.lex_state = 39, .external_lex_state = 11}, + [3841] = {.lex_state = 39, .external_lex_state = 10}, + [3842] = {.lex_state = 39, .external_lex_state = 10}, + [3843] = {.lex_state = 39, .external_lex_state = 4}, + [3844] = {.lex_state = 39, .external_lex_state = 4}, [3845] = {.lex_state = 39, .external_lex_state = 11}, - [3846] = {.lex_state = 39, .external_lex_state = 11}, - [3847] = {.lex_state = 39, .external_lex_state = 11}, - [3848] = {.lex_state = 39, .external_lex_state = 6}, + [3846] = {.lex_state = 39, .external_lex_state = 3}, + [3847] = {.lex_state = 3, .external_lex_state = 12}, + [3848] = {.lex_state = 39, .external_lex_state = 13}, [3849] = {.lex_state = 3, .external_lex_state = 12}, - [3850] = {.lex_state = 39, .external_lex_state = 11}, - [3851] = {.lex_state = 39, .external_lex_state = 13}, - [3852] = {.lex_state = 39, .external_lex_state = 6}, - [3853] = {.lex_state = 39, .external_lex_state = 11}, - [3854] = {.lex_state = 39, .external_lex_state = 11}, - [3855] = {.lex_state = 39, .external_lex_state = 8}, - [3856] = {.lex_state = 39, .external_lex_state = 5}, - [3857] = {.lex_state = 39, .external_lex_state = 14}, - [3858] = {.lex_state = 39, .external_lex_state = 13}, - [3859] = {.lex_state = 39, .external_lex_state = 14}, - [3860] = {.lex_state = 39, .external_lex_state = 5}, + [3850] = {.lex_state = 3, .external_lex_state = 12}, + [3851] = {.lex_state = 39, .external_lex_state = 11}, + [3852] = {.lex_state = 39, .external_lex_state = 2}, + [3853] = {.lex_state = 3, .external_lex_state = 12}, + [3854] = {.lex_state = 39, .external_lex_state = 2}, + [3855] = {.lex_state = 39, .external_lex_state = 13}, + [3856] = {.lex_state = 39, .external_lex_state = 13}, + [3857] = {.lex_state = 39, .external_lex_state = 13}, + [3858] = {.lex_state = 39, .external_lex_state = 3}, + [3859] = {.lex_state = 39, .external_lex_state = 3}, + [3860] = {.lex_state = 39, .external_lex_state = 2}, [3861] = {.lex_state = 3, .external_lex_state = 12}, - [3862] = {.lex_state = 39, .external_lex_state = 10}, - [3863] = {.lex_state = 39, .external_lex_state = 13}, - [3864] = {.lex_state = 39, .external_lex_state = 8}, - [3865] = {.lex_state = 39, .external_lex_state = 13}, - [3866] = {.lex_state = 3, .external_lex_state = 12}, - [3867] = {.lex_state = 39, .external_lex_state = 10}, - [3868] = {.lex_state = 39, .external_lex_state = 5}, - [3869] = {.lex_state = 39, .external_lex_state = 14}, - [3870] = {.lex_state = 39, .external_lex_state = 5}, - [3871] = {.lex_state = 39, .external_lex_state = 2}, - [3872] = {.lex_state = 39, .external_lex_state = 14}, - [3873] = {.lex_state = 39, .external_lex_state = 2}, + [3862] = {.lex_state = 39, .external_lex_state = 4}, + [3863] = {.lex_state = 39, .external_lex_state = 2}, + [3864] = {.lex_state = 39, .external_lex_state = 11}, + [3865] = {.lex_state = 3, .external_lex_state = 12}, + [3866] = {.lex_state = 39, .external_lex_state = 11}, + [3867] = {.lex_state = 39, .external_lex_state = 2}, + [3868] = {.lex_state = 39, .external_lex_state = 2}, + [3869] = {.lex_state = 39, .external_lex_state = 10}, + [3870] = {.lex_state = 39, .external_lex_state = 13}, + [3871] = {.lex_state = 39, .external_lex_state = 13}, + [3872] = {.lex_state = 39, .external_lex_state = 10}, + [3873] = {.lex_state = 39, .external_lex_state = 11}, [3874] = {.lex_state = 39, .external_lex_state = 10}, - [3875] = {.lex_state = 39, .external_lex_state = 14}, - [3876] = {.lex_state = 39, .external_lex_state = 2}, - [3877] = {.lex_state = 39, .external_lex_state = 13}, + [3875] = {.lex_state = 3, .external_lex_state = 12}, + [3876] = {.lex_state = 39, .external_lex_state = 11}, + [3877] = {.lex_state = 3, .external_lex_state = 12}, [3878] = {.lex_state = 39, .external_lex_state = 11}, - [3879] = {.lex_state = 39, .external_lex_state = 2}, + [3879] = {.lex_state = 39, .external_lex_state = 3}, [3880] = {.lex_state = 39, .external_lex_state = 2}, - [3881] = {.lex_state = 39, .external_lex_state = 2}, - [3882] = {.lex_state = 39, .external_lex_state = 2}, - [3883] = {.lex_state = 39, .external_lex_state = 8}, - [3884] = {.lex_state = 39, .external_lex_state = 2}, - [3885] = {.lex_state = 39, .external_lex_state = 2}, - [3886] = {.lex_state = 39, .external_lex_state = 2}, - [3887] = {.lex_state = 39, .external_lex_state = 8}, + [3881] = {.lex_state = 39, .external_lex_state = 10}, + [3882] = {.lex_state = 39, .external_lex_state = 10}, + [3883] = {.lex_state = 39, .external_lex_state = 10}, + [3884] = {.lex_state = 39, .external_lex_state = 11}, + [3885] = {.lex_state = 39, .external_lex_state = 10}, + [3886] = {.lex_state = 39, .external_lex_state = 10}, + [3887] = {.lex_state = 39, .external_lex_state = 13}, [3888] = {.lex_state = 39, .external_lex_state = 13}, [3889] = {.lex_state = 39, .external_lex_state = 10}, - [3890] = {.lex_state = 39, .external_lex_state = 2}, - [3891] = {.lex_state = 39, .external_lex_state = 2}, - [3892] = {.lex_state = 39, .external_lex_state = 11}, - [3893] = {.lex_state = 3, .external_lex_state = 12}, - [3894] = {.lex_state = 3, .external_lex_state = 12}, - [3895] = {.lex_state = 39, .external_lex_state = 10}, - [3896] = {.lex_state = 39, .external_lex_state = 2}, + [3890] = {.lex_state = 39, .external_lex_state = 13}, + [3891] = {.lex_state = 3, .external_lex_state = 12}, + [3892] = {.lex_state = 3, .external_lex_state = 12}, + [3893] = {.lex_state = 39, .external_lex_state = 11}, + [3894] = {.lex_state = 39, .external_lex_state = 3}, + [3895] = {.lex_state = 3, .external_lex_state = 12}, + [3896] = {.lex_state = 39, .external_lex_state = 11}, [3897] = {.lex_state = 39, .external_lex_state = 10}, - [3898] = {.lex_state = 3, .external_lex_state = 12}, - [3899] = {.lex_state = 39, .external_lex_state = 5}, - [3900] = {.lex_state = 39, .external_lex_state = 2}, - [3901] = {.lex_state = 39, .external_lex_state = 2}, + [3898] = {.lex_state = 39, .external_lex_state = 10}, + [3899] = {.lex_state = 39, .external_lex_state = 10}, + [3900] = {.lex_state = 39, .external_lex_state = 13}, + [3901] = {.lex_state = 39, .external_lex_state = 11}, [3902] = {.lex_state = 39, .external_lex_state = 10}, - [3903] = {.lex_state = 39, .external_lex_state = 13}, - [3904] = {.lex_state = 39, .external_lex_state = 13}, + [3903] = {.lex_state = 39, .external_lex_state = 10}, + [3904] = {.lex_state = 39, .external_lex_state = 10}, [3905] = {.lex_state = 39, .external_lex_state = 10}, - [3906] = {.lex_state = 39, .external_lex_state = 2}, - [3907] = {.lex_state = 39, .external_lex_state = 2}, - [3908] = {.lex_state = 39, .external_lex_state = 2}, - [3909] = {.lex_state = 39, .external_lex_state = 14}, - [3910] = {.lex_state = 39, .external_lex_state = 8}, - [3911] = {.lex_state = 39, .external_lex_state = 14}, - [3912] = {.lex_state = 39, .external_lex_state = 10}, + [3906] = {.lex_state = 39, .external_lex_state = 10}, + [3907] = {.lex_state = 39, .external_lex_state = 11}, + [3908] = {.lex_state = 39, .external_lex_state = 10}, + [3909] = {.lex_state = 39, .external_lex_state = 10}, + [3910] = {.lex_state = 39, .external_lex_state = 13}, + [3911] = {.lex_state = 39, .external_lex_state = 10}, + [3912] = {.lex_state = 39, .external_lex_state = 11}, [3913] = {.lex_state = 39, .external_lex_state = 11}, - [3914] = {.lex_state = 39, .external_lex_state = 14}, - [3915] = {.lex_state = 39, .external_lex_state = 13}, - [3916] = {.lex_state = 3, .external_lex_state = 12}, - [3917] = {.lex_state = 39, .external_lex_state = 5}, + [3914] = {.lex_state = 39, .external_lex_state = 10}, + [3915] = {.lex_state = 39, .external_lex_state = 4}, + [3916] = {.lex_state = 39, .external_lex_state = 11}, + [3917] = {.lex_state = 39, .external_lex_state = 13}, [3918] = {.lex_state = 39, .external_lex_state = 13}, - [3919] = {.lex_state = 39, .external_lex_state = 5}, + [3919] = {.lex_state = 3, .external_lex_state = 12}, [3920] = {.lex_state = 39, .external_lex_state = 13}, [3921] = {.lex_state = 39, .external_lex_state = 13}, [3922] = {.lex_state = 3, .external_lex_state = 12}, - [3923] = {.lex_state = 39, .external_lex_state = 5}, - [3924] = {.lex_state = 39, .external_lex_state = 5}, + [3923] = {.lex_state = 39, .external_lex_state = 10}, + [3924] = {.lex_state = 39, .external_lex_state = 10}, [3925] = {.lex_state = 39, .external_lex_state = 11}, - [3926] = {.lex_state = 39, .external_lex_state = 5}, - [3927] = {.lex_state = 3, .external_lex_state = 12}, - [3928] = {.lex_state = 39, .external_lex_state = 2}, - [3929] = {.lex_state = 39, .external_lex_state = 13}, - [3930] = {.lex_state = 3, .external_lex_state = 12}, - [3931] = {.lex_state = 3, .external_lex_state = 12}, - [3932] = {.lex_state = 3, .external_lex_state = 12}, - [3933] = {.lex_state = 39, .external_lex_state = 13}, + [3926] = {.lex_state = 39, .external_lex_state = 13}, + [3927] = {.lex_state = 39, .external_lex_state = 11}, + [3928] = {.lex_state = 39, .external_lex_state = 10}, + [3929] = {.lex_state = 39, .external_lex_state = 10}, + [3930] = {.lex_state = 39, .external_lex_state = 4}, + [3931] = {.lex_state = 39, .external_lex_state = 10}, + [3932] = {.lex_state = 39, .external_lex_state = 4}, + [3933] = {.lex_state = 3, .external_lex_state = 12}, [3934] = {.lex_state = 3, .external_lex_state = 12}, - [3935] = {.lex_state = 39, .external_lex_state = 2}, - [3936] = {.lex_state = 39, .external_lex_state = 14}, - [3937] = {.lex_state = 39, .external_lex_state = 11}, - [3938] = {.lex_state = 39, .external_lex_state = 13}, - [3939] = {.lex_state = 39, .external_lex_state = 11}, - [3940] = {.lex_state = 39, .external_lex_state = 14}, - [3941] = {.lex_state = 39, .external_lex_state = 2}, - [3942] = {.lex_state = 39, .external_lex_state = 2}, + [3935] = {.lex_state = 3, .external_lex_state = 12}, + [3936] = {.lex_state = 39, .external_lex_state = 10}, + [3937] = {.lex_state = 3, .external_lex_state = 12}, + [3938] = {.lex_state = 3, .external_lex_state = 12}, + [3939] = {.lex_state = 3, .external_lex_state = 12}, + [3940] = {.lex_state = 3, .external_lex_state = 12}, + [3941] = {.lex_state = 3, .external_lex_state = 12}, + [3942] = {.lex_state = 39, .external_lex_state = 11}, [3943] = {.lex_state = 3, .external_lex_state = 12}, - [3944] = {.lex_state = 39, .external_lex_state = 14}, - [3945] = {.lex_state = 39, .external_lex_state = 13}, - [3946] = {.lex_state = 39, .external_lex_state = 5}, - [3947] = {.lex_state = 39, .external_lex_state = 13}, - [3948] = {.lex_state = 39, .external_lex_state = 2}, - [3949] = {.lex_state = 3, .external_lex_state = 12}, - [3950] = {.lex_state = 39, .external_lex_state = 2}, - [3951] = {.lex_state = 39, .external_lex_state = 14}, - [3952] = {.lex_state = 39, .external_lex_state = 2}, - [3953] = {.lex_state = 39, .external_lex_state = 2}, - [3954] = {.lex_state = 39, .external_lex_state = 14}, - [3955] = {.lex_state = 39, .external_lex_state = 14}, - [3956] = {.lex_state = 39, .external_lex_state = 2}, + [3944] = {.lex_state = 39, .external_lex_state = 10}, + [3945] = {.lex_state = 3, .external_lex_state = 12}, + [3946] = {.lex_state = 39, .external_lex_state = 11}, + [3947] = {.lex_state = 39, .external_lex_state = 11}, + [3948] = {.lex_state = 3, .external_lex_state = 12}, + [3949] = {.lex_state = 39, .external_lex_state = 11}, + [3950] = {.lex_state = 39, .external_lex_state = 10}, + [3951] = {.lex_state = 3, .external_lex_state = 12}, + [3952] = {.lex_state = 39, .external_lex_state = 11}, + [3953] = {.lex_state = 39, .external_lex_state = 10}, + [3954] = {.lex_state = 39, .external_lex_state = 10}, + [3955] = {.lex_state = 3, .external_lex_state = 12}, + [3956] = {.lex_state = 3, .external_lex_state = 12}, [3957] = {.lex_state = 3, .external_lex_state = 12}, - [3958] = {.lex_state = 39, .external_lex_state = 10}, - [3959] = {.lex_state = 39, .external_lex_state = 11}, - [3960] = {.lex_state = 39, .external_lex_state = 13}, - [3961] = {.lex_state = 39, .external_lex_state = 13}, - [3962] = {.lex_state = 39, .external_lex_state = 14}, - [3963] = {.lex_state = 39, .external_lex_state = 10}, - [3964] = {.lex_state = 39, .external_lex_state = 14}, - [3965] = {.lex_state = 39, .external_lex_state = 2}, - [3966] = {.lex_state = 39, .external_lex_state = 13}, - [3967] = {.lex_state = 39, .external_lex_state = 11}, - [3968] = {.lex_state = 39, .external_lex_state = 11}, - [3969] = {.lex_state = 39, .external_lex_state = 11}, - [3970] = {.lex_state = 39, .external_lex_state = 5}, - [3971] = {.lex_state = 39, .external_lex_state = 14}, - [3972] = {.lex_state = 39, .external_lex_state = 14}, - [3973] = {.lex_state = 39, .external_lex_state = 10}, + [3958] = {.lex_state = 3, .external_lex_state = 12}, + [3959] = {.lex_state = 3, .external_lex_state = 12}, + [3960] = {.lex_state = 39, .external_lex_state = 11}, + [3961] = {.lex_state = 3, .external_lex_state = 12}, + [3962] = {.lex_state = 39, .external_lex_state = 13}, + [3963] = {.lex_state = 3, .external_lex_state = 12}, + [3964] = {.lex_state = 3, .external_lex_state = 12}, + [3965] = {.lex_state = 3, .external_lex_state = 12}, + [3966] = {.lex_state = 39, .external_lex_state = 11}, + [3967] = {.lex_state = 3, .external_lex_state = 12}, + [3968] = {.lex_state = 39, .external_lex_state = 10}, + [3969] = {.lex_state = 3, .external_lex_state = 12}, + [3970] = {.lex_state = 3, .external_lex_state = 12}, + [3971] = {.lex_state = 39, .external_lex_state = 3}, + [3972] = {.lex_state = 3, .external_lex_state = 12}, + [3973] = {.lex_state = 3, .external_lex_state = 12}, [3974] = {.lex_state = 39, .external_lex_state = 14}, - [3975] = {.lex_state = 39, .external_lex_state = 14}, - [3976] = {.lex_state = 39, .external_lex_state = 5}, - [3977] = {.lex_state = 39, .external_lex_state = 2}, - [3978] = {.lex_state = 39, .external_lex_state = 10}, - [3979] = {.lex_state = 39, .external_lex_state = 13}, - [3980] = {.lex_state = 39, .external_lex_state = 14}, - [3981] = {.lex_state = 39, .external_lex_state = 11}, + [3975] = {.lex_state = 39, .external_lex_state = 11}, + [3976] = {.lex_state = 39, .external_lex_state = 10}, + [3977] = {.lex_state = 39, .external_lex_state = 10}, + [3978] = {.lex_state = 39, .external_lex_state = 12}, + [3979] = {.lex_state = 39, .external_lex_state = 10}, + [3980] = {.lex_state = 39, .external_lex_state = 10}, + [3981] = {.lex_state = 39, .external_lex_state = 2}, [3982] = {.lex_state = 39, .external_lex_state = 10}, - [3983] = {.lex_state = 39, .external_lex_state = 2}, - [3984] = {.lex_state = 39, .external_lex_state = 2}, + [3983] = {.lex_state = 39, .external_lex_state = 10}, + [3984] = {.lex_state = 39, .external_lex_state = 10}, [3985] = {.lex_state = 39, .external_lex_state = 10}, - [3986] = {.lex_state = 39, .external_lex_state = 14}, - [3987] = {.lex_state = 39, .external_lex_state = 2}, - [3988] = {.lex_state = 39, .external_lex_state = 14}, - [3989] = {.lex_state = 3, .external_lex_state = 12}, - [3990] = {.lex_state = 39, .external_lex_state = 10}, - [3991] = {.lex_state = 39, .external_lex_state = 10}, + [3986] = {.lex_state = 39, .external_lex_state = 2}, + [3987] = {.lex_state = 39, .external_lex_state = 10}, + [3988] = {.lex_state = 39, .external_lex_state = 10}, + [3989] = {.lex_state = 39, .external_lex_state = 2}, + [3990] = {.lex_state = 39, .external_lex_state = 2}, + [3991] = {.lex_state = 39, .external_lex_state = 2}, [3992] = {.lex_state = 39, .external_lex_state = 10}, - [3993] = {.lex_state = 39, .external_lex_state = 10}, + [3993] = {.lex_state = 39, .external_lex_state = 2}, [3994] = {.lex_state = 39, .external_lex_state = 2}, - [3995] = {.lex_state = 39, .external_lex_state = 14}, + [3995] = {.lex_state = 39, .external_lex_state = 2}, [3996] = {.lex_state = 39, .external_lex_state = 2}, - [3997] = {.lex_state = 39, .external_lex_state = 14}, - [3998] = {.lex_state = 39, .external_lex_state = 13}, - [3999] = {.lex_state = 39, .external_lex_state = 14}, - [4000] = {.lex_state = 3, .external_lex_state = 12}, - [4001] = {.lex_state = 39, .external_lex_state = 14}, - [4002] = {.lex_state = 39, .external_lex_state = 5}, + [3997] = {.lex_state = 39, .external_lex_state = 2}, + [3998] = {.lex_state = 39, .external_lex_state = 2}, + [3999] = {.lex_state = 39, .external_lex_state = 2}, + [4000] = {.lex_state = 39, .external_lex_state = 2}, + [4001] = {.lex_state = 39, .external_lex_state = 2}, + [4002] = {.lex_state = 39, .external_lex_state = 2}, [4003] = {.lex_state = 39, .external_lex_state = 2}, - [4004] = {.lex_state = 3, .external_lex_state = 12}, - [4005] = {.lex_state = 39, .external_lex_state = 13}, - [4006] = {.lex_state = 39, .external_lex_state = 5}, - [4007] = {.lex_state = 39, .external_lex_state = 5}, - [4008] = {.lex_state = 3, .external_lex_state = 12}, - [4009] = {.lex_state = 39, .external_lex_state = 11}, - [4010] = {.lex_state = 39, .external_lex_state = 13}, - [4011] = {.lex_state = 39, .external_lex_state = 10}, - [4012] = {.lex_state = 39, .external_lex_state = 5}, + [4004] = {.lex_state = 39, .external_lex_state = 13}, + [4005] = {.lex_state = 39, .external_lex_state = 10}, + [4006] = {.lex_state = 39, .external_lex_state = 2}, + [4007] = {.lex_state = 39, .external_lex_state = 2}, + [4008] = {.lex_state = 39, .external_lex_state = 2}, + [4009] = {.lex_state = 39, .external_lex_state = 2}, + [4010] = {.lex_state = 39, .external_lex_state = 2}, + [4011] = {.lex_state = 39, .external_lex_state = 2}, + [4012] = {.lex_state = 39, .external_lex_state = 2}, [4013] = {.lex_state = 39, .external_lex_state = 2}, - [4014] = {.lex_state = 39, .external_lex_state = 10}, + [4014] = {.lex_state = 39, .external_lex_state = 2}, [4015] = {.lex_state = 39, .external_lex_state = 10}, - [4016] = {.lex_state = 39, .external_lex_state = 10}, - [4017] = {.lex_state = 39, .external_lex_state = 13}, - [4018] = {.lex_state = 39, .external_lex_state = 13}, - [4019] = {.lex_state = 39, .external_lex_state = 13}, - [4020] = {.lex_state = 39, .external_lex_state = 8}, - [4021] = {.lex_state = 39, .external_lex_state = 10}, - [4022] = {.lex_state = 39, .external_lex_state = 13}, - [4023] = {.lex_state = 39, .external_lex_state = 14}, - [4024] = {.lex_state = 39, .external_lex_state = 14}, - [4025] = {.lex_state = 39, .external_lex_state = 10}, - [4026] = {.lex_state = 39, .external_lex_state = 10}, - [4027] = {.lex_state = 39, .external_lex_state = 11}, - [4028] = {.lex_state = 39, .external_lex_state = 13}, - [4029] = {.lex_state = 39, .external_lex_state = 10}, - [4030] = {.lex_state = 39, .external_lex_state = 14}, - [4031] = {.lex_state = 39, .external_lex_state = 13}, - [4032] = {.lex_state = 39, .external_lex_state = 10}, - [4033] = {.lex_state = 39, .external_lex_state = 10}, - [4034] = {.lex_state = 39, .external_lex_state = 5}, - [4035] = {.lex_state = 39, .external_lex_state = 13}, - [4036] = {.lex_state = 3, .external_lex_state = 12}, - [4037] = {.lex_state = 39, .external_lex_state = 13}, - [4038] = {.lex_state = 39, .external_lex_state = 10}, - [4039] = {.lex_state = 39, .external_lex_state = 13}, - [4040] = {.lex_state = 3, .external_lex_state = 12}, - [4041] = {.lex_state = 39, .external_lex_state = 10}, - [4042] = {.lex_state = 3, .external_lex_state = 12}, - [4043] = {.lex_state = 39, .external_lex_state = 10}, + [4016] = {.lex_state = 39, .external_lex_state = 2}, + [4017] = {.lex_state = 39, .external_lex_state = 2}, + [4018] = {.lex_state = 39, .external_lex_state = 2}, + [4019] = {.lex_state = 39, .external_lex_state = 2}, + [4020] = {.lex_state = 39, .external_lex_state = 2}, + [4021] = {.lex_state = 39, .external_lex_state = 2}, + [4022] = {.lex_state = 39, .external_lex_state = 2}, + [4023] = {.lex_state = 39, .external_lex_state = 2}, + [4024] = {.lex_state = 39, .external_lex_state = 2}, + [4025] = {.lex_state = 39, .external_lex_state = 2}, + [4026] = {.lex_state = 39, .external_lex_state = 2}, + [4027] = {.lex_state = 39, .external_lex_state = 2}, + [4028] = {.lex_state = 39, .external_lex_state = 2}, + [4029] = {.lex_state = 39, .external_lex_state = 2}, + [4030] = {.lex_state = 39, .external_lex_state = 2}, + [4031] = {.lex_state = 39, .external_lex_state = 2}, + [4032] = {.lex_state = 39, .external_lex_state = 2}, + [4033] = {.lex_state = 39, .external_lex_state = 2}, + [4034] = {.lex_state = 39, .external_lex_state = 2}, + [4035] = {.lex_state = 39, .external_lex_state = 2}, + [4036] = {.lex_state = 39, .external_lex_state = 2}, + [4037] = {.lex_state = 39, .external_lex_state = 2}, + [4038] = {.lex_state = 39, .external_lex_state = 2}, + [4039] = {.lex_state = 39, .external_lex_state = 2}, + [4040] = {.lex_state = 39, .external_lex_state = 2}, + [4041] = {.lex_state = 39, .external_lex_state = 5}, + [4042] = {.lex_state = 39, .external_lex_state = 10}, + [4043] = {.lex_state = 39, .external_lex_state = 5}, [4044] = {.lex_state = 39, .external_lex_state = 5}, - [4045] = {.lex_state = 39, .external_lex_state = 14}, - [4046] = {.lex_state = 39, .external_lex_state = 5}, - [4047] = {.lex_state = 39, .external_lex_state = 10}, - [4048] = {.lex_state = 39, .external_lex_state = 10}, - [4049] = {.lex_state = 39, .external_lex_state = 14}, - [4050] = {.lex_state = 39, .external_lex_state = 2}, - [4051] = {.lex_state = 39, .external_lex_state = 13}, - [4052] = {.lex_state = 39, .external_lex_state = 14}, - [4053] = {.lex_state = 39, .external_lex_state = 14}, - [4054] = {.lex_state = 39, .external_lex_state = 2}, - [4055] = {.lex_state = 39, .external_lex_state = 8}, - [4056] = {.lex_state = 39, .external_lex_state = 14}, - [4057] = {.lex_state = 39, .external_lex_state = 12}, - [4058] = {.lex_state = 39, .external_lex_state = 2}, - [4059] = {.lex_state = 39, .external_lex_state = 13}, - [4060] = {.lex_state = 39, .external_lex_state = 10}, - [4061] = {.lex_state = 3, .external_lex_state = 12}, - [4062] = {.lex_state = 39, .external_lex_state = 10}, - [4063] = {.lex_state = 39, .external_lex_state = 13}, - [4064] = {.lex_state = 39, .external_lex_state = 10}, - [4065] = {.lex_state = 39, .external_lex_state = 10}, + [4045] = {.lex_state = 39, .external_lex_state = 5}, + [4046] = {.lex_state = 39, .external_lex_state = 11}, + [4047] = {.lex_state = 39, .external_lex_state = 5}, + [4048] = {.lex_state = 39, .external_lex_state = 5}, + [4049] = {.lex_state = 39, .external_lex_state = 5}, + [4050] = {.lex_state = 39, .external_lex_state = 5}, + [4051] = {.lex_state = 39, .external_lex_state = 5}, + [4052] = {.lex_state = 39, .external_lex_state = 5}, + [4053] = {.lex_state = 39, .external_lex_state = 5}, + [4054] = {.lex_state = 39, .external_lex_state = 5}, + [4055] = {.lex_state = 39, .external_lex_state = 5}, + [4056] = {.lex_state = 39, .external_lex_state = 5}, + [4057] = {.lex_state = 39, .external_lex_state = 5}, + [4058] = {.lex_state = 39, .external_lex_state = 5}, + [4059] = {.lex_state = 39, .external_lex_state = 5}, + [4060] = {.lex_state = 39, .external_lex_state = 5}, + [4061] = {.lex_state = 39, .external_lex_state = 5}, + [4062] = {.lex_state = 39, .external_lex_state = 5}, + [4063] = {.lex_state = 39, .external_lex_state = 5}, + [4064] = {.lex_state = 39, .external_lex_state = 5}, + [4065] = {.lex_state = 39, .external_lex_state = 5}, [4066] = {.lex_state = 39, .external_lex_state = 5}, - [4067] = {.lex_state = 39, .external_lex_state = 5}, - [4068] = {.lex_state = 39, .external_lex_state = 14}, - [4069] = {.lex_state = 39, .external_lex_state = 13}, - [4070] = {.lex_state = 39, .external_lex_state = 13}, - [4071] = {.lex_state = 39, .external_lex_state = 14}, + [4067] = {.lex_state = 39, .external_lex_state = 2}, + [4068] = {.lex_state = 39, .external_lex_state = 5}, + [4069] = {.lex_state = 39, .external_lex_state = 5}, + [4070] = {.lex_state = 39, .external_lex_state = 5}, + [4071] = {.lex_state = 39, .external_lex_state = 5}, [4072] = {.lex_state = 39, .external_lex_state = 5}, - [4073] = {.lex_state = 39, .external_lex_state = 13}, + [4073] = {.lex_state = 39, .external_lex_state = 5}, [4074] = {.lex_state = 39, .external_lex_state = 5}, - [4075] = {.lex_state = 39, .external_lex_state = 2}, - [4076] = {.lex_state = 39, .external_lex_state = 14}, - [4077] = {.lex_state = 3, .external_lex_state = 12}, - [4078] = {.lex_state = 39, .external_lex_state = 13}, - [4079] = {.lex_state = 39, .external_lex_state = 11}, - [4080] = {.lex_state = 39, .external_lex_state = 5}, - [4081] = {.lex_state = 39, .external_lex_state = 13}, - [4082] = {.lex_state = 39, .external_lex_state = 14}, - [4083] = {.lex_state = 39, .external_lex_state = 2}, - [4084] = {.lex_state = 39, .external_lex_state = 8}, - [4085] = {.lex_state = 39, .external_lex_state = 14}, + [4075] = {.lex_state = 39, .external_lex_state = 5}, + [4076] = {.lex_state = 39, .external_lex_state = 5}, + [4077] = {.lex_state = 39, .external_lex_state = 5}, + [4078] = {.lex_state = 39, .external_lex_state = 5}, + [4079] = {.lex_state = 39, .external_lex_state = 5}, + [4080] = {.lex_state = 39, .external_lex_state = 2}, + [4081] = {.lex_state = 39, .external_lex_state = 2}, + [4082] = {.lex_state = 39, .external_lex_state = 5}, + [4083] = {.lex_state = 39, .external_lex_state = 5}, + [4084] = {.lex_state = 39, .external_lex_state = 5}, + [4085] = {.lex_state = 39, .external_lex_state = 5}, [4086] = {.lex_state = 39, .external_lex_state = 5}, - [4087] = {.lex_state = 39, .external_lex_state = 13}, - [4088] = {.lex_state = 39, .external_lex_state = 14}, + [4087] = {.lex_state = 39, .external_lex_state = 5}, + [4088] = {.lex_state = 39, .external_lex_state = 5}, [4089] = {.lex_state = 39, .external_lex_state = 5}, - [4090] = {.lex_state = 39, .external_lex_state = 2}, - [4091] = {.lex_state = 3, .external_lex_state = 12}, - [4092] = {.lex_state = 39, .external_lex_state = 8}, - [4093] = {.lex_state = 3, .external_lex_state = 12}, - [4094] = {.lex_state = 39, .external_lex_state = 13}, - [4095] = {.lex_state = 39, .external_lex_state = 13}, - [4096] = {.lex_state = 39, .external_lex_state = 5}, - [4097] = {.lex_state = 39, .external_lex_state = 2}, - [4098] = {.lex_state = 39, .external_lex_state = 8}, - [4099] = {.lex_state = 39, .external_lex_state = 5}, - [4100] = {.lex_state = 39, .external_lex_state = 2}, - [4101] = {.lex_state = 39, .external_lex_state = 5}, - [4102] = {.lex_state = 39, .external_lex_state = 5}, - [4103] = {.lex_state = 39, .external_lex_state = 5}, - [4104] = {.lex_state = 39, .external_lex_state = 5}, - [4105] = {.lex_state = 39, .external_lex_state = 13}, - [4106] = {.lex_state = 39, .external_lex_state = 13}, - [4107] = {.lex_state = 39, .external_lex_state = 13}, - [4108] = {.lex_state = 39, .external_lex_state = 2}, + [4090] = {.lex_state = 39, .external_lex_state = 5}, + [4091] = {.lex_state = 39, .external_lex_state = 5}, + [4092] = {.lex_state = 39, .external_lex_state = 5}, + [4093] = {.lex_state = 39, .external_lex_state = 5}, + [4094] = {.lex_state = 39, .external_lex_state = 5}, + [4095] = {.lex_state = 39, .external_lex_state = 14}, + [4096] = {.lex_state = 39, .external_lex_state = 14}, + [4097] = {.lex_state = 39, .external_lex_state = 5}, + [4098] = {.lex_state = 39, .external_lex_state = 14}, + [4099] = {.lex_state = 39, .external_lex_state = 14}, + [4100] = {.lex_state = 39, .external_lex_state = 14}, + [4101] = {.lex_state = 39, .external_lex_state = 10}, + [4102] = {.lex_state = 39, .external_lex_state = 14}, + [4103] = {.lex_state = 39, .external_lex_state = 14}, + [4104] = {.lex_state = 39, .external_lex_state = 14}, + [4105] = {.lex_state = 39, .external_lex_state = 14}, + [4106] = {.lex_state = 39, .external_lex_state = 14}, + [4107] = {.lex_state = 39, .external_lex_state = 14}, + [4108] = {.lex_state = 39, .external_lex_state = 14}, [4109] = {.lex_state = 39, .external_lex_state = 14}, - [4110] = {.lex_state = 39, .external_lex_state = 10}, - [4111] = {.lex_state = 39, .external_lex_state = 11}, - [4112] = {.lex_state = 39, .external_lex_state = 11}, - [4113] = {.lex_state = 39, .external_lex_state = 10}, - [4114] = {.lex_state = 3, .external_lex_state = 12}, - [4115] = {.lex_state = 39, .external_lex_state = 5}, - [4116] = {.lex_state = 39, .external_lex_state = 5}, - [4117] = {.lex_state = 39, .external_lex_state = 5}, - [4118] = {.lex_state = 39, .external_lex_state = 2}, - [4119] = {.lex_state = 39, .external_lex_state = 5}, - [4120] = {.lex_state = 39, .external_lex_state = 2}, - [4121] = {.lex_state = 39, .external_lex_state = 14}, + [4110] = {.lex_state = 39, .external_lex_state = 14}, + [4111] = {.lex_state = 39, .external_lex_state = 14}, + [4112] = {.lex_state = 39, .external_lex_state = 14}, + [4113] = {.lex_state = 39, .external_lex_state = 14}, + [4114] = {.lex_state = 39, .external_lex_state = 14}, + [4115] = {.lex_state = 39, .external_lex_state = 14}, + [4116] = {.lex_state = 39, .external_lex_state = 14}, + [4117] = {.lex_state = 39, .external_lex_state = 13}, + [4118] = {.lex_state = 39, .external_lex_state = 13}, + [4119] = {.lex_state = 39, .external_lex_state = 13}, + [4120] = {.lex_state = 39, .external_lex_state = 13}, + [4121] = {.lex_state = 39, .external_lex_state = 13}, [4122] = {.lex_state = 39, .external_lex_state = 13}, - [4123] = {.lex_state = 39, .external_lex_state = 10}, - [4124] = {.lex_state = 39, .external_lex_state = 13}, - [4125] = {.lex_state = 39, .external_lex_state = 10}, + [4123] = {.lex_state = 39, .external_lex_state = 13}, + [4124] = {.lex_state = 39, .external_lex_state = 10}, + [4125] = {.lex_state = 39, .external_lex_state = 13}, [4126] = {.lex_state = 39, .external_lex_state = 10}, - [4127] = {.lex_state = 3, .external_lex_state = 12}, - [4128] = {.lex_state = 39, .external_lex_state = 10}, - [4129] = {.lex_state = 3, .external_lex_state = 12}, - [4130] = {.lex_state = 3, .external_lex_state = 12}, - [4131] = {.lex_state = 39, .external_lex_state = 14}, - [4132] = {.lex_state = 3, .external_lex_state = 12}, - [4133] = {.lex_state = 39, .external_lex_state = 14}, - [4134] = {.lex_state = 39, .external_lex_state = 14}, - [4135] = {.lex_state = 39, .external_lex_state = 14}, - [4136] = {.lex_state = 39, .external_lex_state = 11}, - [4137] = {.lex_state = 3, .external_lex_state = 12}, - [4138] = {.lex_state = 39, .external_lex_state = 14}, - [4139] = {.lex_state = 39, .external_lex_state = 10}, - [4140] = {.lex_state = 39, .external_lex_state = 14}, - [4141] = {.lex_state = 3, .external_lex_state = 12}, - [4142] = {.lex_state = 39, .external_lex_state = 11}, - [4143] = {.lex_state = 3, .external_lex_state = 12}, - [4144] = {.lex_state = 39, .external_lex_state = 10}, - [4145] = {.lex_state = 3, .external_lex_state = 12}, + [4127] = {.lex_state = 39, .external_lex_state = 10}, + [4128] = {.lex_state = 39, .external_lex_state = 13}, + [4129] = {.lex_state = 39, .external_lex_state = 13}, + [4130] = {.lex_state = 39, .external_lex_state = 13}, + [4131] = {.lex_state = 39, .external_lex_state = 13}, + [4132] = {.lex_state = 39, .external_lex_state = 13}, + [4133] = {.lex_state = 39, .external_lex_state = 13}, + [4134] = {.lex_state = 39, .external_lex_state = 13}, + [4135] = {.lex_state = 39, .external_lex_state = 10}, + [4136] = {.lex_state = 39, .external_lex_state = 13}, + [4137] = {.lex_state = 39, .external_lex_state = 13}, + [4138] = {.lex_state = 39, .external_lex_state = 13}, + [4139] = {.lex_state = 39, .external_lex_state = 13}, + [4140] = {.lex_state = 39, .external_lex_state = 13}, + [4141] = {.lex_state = 39, .external_lex_state = 13}, + [4142] = {.lex_state = 39, .external_lex_state = 13}, + [4143] = {.lex_state = 39, .external_lex_state = 13}, + [4144] = {.lex_state = 39, .external_lex_state = 13}, + [4145] = {.lex_state = 39, .external_lex_state = 10}, [4146] = {.lex_state = 39, .external_lex_state = 10}, - [4147] = {.lex_state = 39, .external_lex_state = 10}, - [4148] = {.lex_state = 39, .external_lex_state = 14}, - [4149] = {.lex_state = 39, .external_lex_state = 10}, - [4150] = {.lex_state = 39, .external_lex_state = 14}, - [4151] = {.lex_state = 3, .external_lex_state = 12}, - [4152] = {.lex_state = 3, .external_lex_state = 12}, + [4147] = {.lex_state = 39, .external_lex_state = 13}, + [4148] = {.lex_state = 39, .external_lex_state = 13}, + [4149] = {.lex_state = 39, .external_lex_state = 13}, + [4150] = {.lex_state = 39, .external_lex_state = 13}, + [4151] = {.lex_state = 39, .external_lex_state = 13}, + [4152] = {.lex_state = 39, .external_lex_state = 13}, [4153] = {.lex_state = 39, .external_lex_state = 10}, [4154] = {.lex_state = 39, .external_lex_state = 10}, - [4155] = {.lex_state = 3, .external_lex_state = 12}, - [4156] = {.lex_state = 3, .external_lex_state = 12}, - [4157] = {.lex_state = 3, .external_lex_state = 12}, - [4158] = {.lex_state = 3, .external_lex_state = 12}, - [4159] = {.lex_state = 3, .external_lex_state = 12}, - [4160] = {.lex_state = 3, .external_lex_state = 12}, - [4161] = {.lex_state = 3, .external_lex_state = 12}, - [4162] = {.lex_state = 3, .external_lex_state = 12}, - [4163] = {.lex_state = 3, .external_lex_state = 12}, - [4164] = {.lex_state = 3, .external_lex_state = 12}, - [4165] = {.lex_state = 39, .external_lex_state = 10}, - [4166] = {.lex_state = 3, .external_lex_state = 12}, - [4167] = {.lex_state = 3, .external_lex_state = 12}, - [4168] = {.lex_state = 39, .external_lex_state = 14}, - [4169] = {.lex_state = 39, .external_lex_state = 10}, - [4170] = {.lex_state = 3, .external_lex_state = 12}, - [4171] = {.lex_state = 3, .external_lex_state = 12}, - [4172] = {.lex_state = 39, .external_lex_state = 10}, - [4173] = {.lex_state = 39, .external_lex_state = 14}, - [4174] = {.lex_state = 39, .external_lex_state = 14}, - [4175] = {.lex_state = 3, .external_lex_state = 12}, - [4176] = {.lex_state = 39, .external_lex_state = 14}, - [4177] = {.lex_state = 39, .external_lex_state = 14}, - [4178] = {.lex_state = 39, .external_lex_state = 10}, - [4179] = {.lex_state = 3, .external_lex_state = 7}, - [4180] = {.lex_state = 39, .external_lex_state = 14}, - [4181] = {.lex_state = 39, .external_lex_state = 14}, - [4182] = {.lex_state = 39, .external_lex_state = 10}, + [4155] = {.lex_state = 39, .external_lex_state = 13}, + [4156] = {.lex_state = 39, .external_lex_state = 13}, + [4157] = {.lex_state = 39, .external_lex_state = 13}, + [4158] = {.lex_state = 39, .external_lex_state = 13}, + [4159] = {.lex_state = 39, .external_lex_state = 10}, + [4160] = {.lex_state = 39, .external_lex_state = 13}, + [4161] = {.lex_state = 39, .external_lex_state = 13}, + [4162] = {.lex_state = 39, .external_lex_state = 13}, + [4163] = {.lex_state = 39, .external_lex_state = 13}, + [4164] = {.lex_state = 39, .external_lex_state = 13}, + [4165] = {.lex_state = 39, .external_lex_state = 13}, + [4166] = {.lex_state = 39, .external_lex_state = 13}, + [4167] = {.lex_state = 39, .external_lex_state = 13}, + [4168] = {.lex_state = 39, .external_lex_state = 13}, + [4169] = {.lex_state = 39, .external_lex_state = 13}, + [4170] = {.lex_state = 39, .external_lex_state = 13}, + [4171] = {.lex_state = 39, .external_lex_state = 5}, + [4172] = {.lex_state = 39, .external_lex_state = 5}, + [4173] = {.lex_state = 39, .external_lex_state = 5}, + [4174] = {.lex_state = 39, .external_lex_state = 11}, + [4175] = {.lex_state = 39, .external_lex_state = 11}, + [4176] = {.lex_state = 39, .external_lex_state = 11}, + [4177] = {.lex_state = 39, .external_lex_state = 13}, + [4178] = {.lex_state = 39, .external_lex_state = 14}, + [4179] = {.lex_state = 39, .external_lex_state = 14}, + [4180] = {.lex_state = 3, .external_lex_state = 12}, + [4181] = {.lex_state = 3, .external_lex_state = 12}, + [4182] = {.lex_state = 3, .external_lex_state = 12}, [4183] = {.lex_state = 3, .external_lex_state = 12}, [4184] = {.lex_state = 3, .external_lex_state = 12}, - [4185] = {.lex_state = 39, .external_lex_state = 14}, + [4185] = {.lex_state = 3, .external_lex_state = 12}, [4186] = {.lex_state = 3, .external_lex_state = 12}, - [4187] = {.lex_state = 39, .external_lex_state = 11}, - [4188] = {.lex_state = 39, .external_lex_state = 14}, + [4187] = {.lex_state = 3, .external_lex_state = 12}, + [4188] = {.lex_state = 3, .external_lex_state = 12}, [4189] = {.lex_state = 3, .external_lex_state = 12}, - [4190] = {.lex_state = 39, .external_lex_state = 14}, - [4191] = {.lex_state = 39, .external_lex_state = 10}, + [4190] = {.lex_state = 3, .external_lex_state = 12}, + [4191] = {.lex_state = 3, .external_lex_state = 12}, [4192] = {.lex_state = 3, .external_lex_state = 12}, - [4193] = {.lex_state = 39, .external_lex_state = 10}, + [4193] = {.lex_state = 3, .external_lex_state = 12}, [4194] = {.lex_state = 3, .external_lex_state = 12}, [4195] = {.lex_state = 3, .external_lex_state = 12}, - [4196] = {.lex_state = 39, .external_lex_state = 14}, - [4197] = {.lex_state = 39, .external_lex_state = 7}, - [4198] = {.lex_state = 39, .external_lex_state = 10}, - [4199] = {.lex_state = 39, .external_lex_state = 14}, - [4200] = {.lex_state = 39, .external_lex_state = 14}, + [4196] = {.lex_state = 3, .external_lex_state = 12}, + [4197] = {.lex_state = 3, .external_lex_state = 12}, + [4198] = {.lex_state = 3, .external_lex_state = 12}, + [4199] = {.lex_state = 3, .external_lex_state = 12}, + [4200] = {.lex_state = 3, .external_lex_state = 12}, [4201] = {.lex_state = 39, .external_lex_state = 14}, - [4202] = {.lex_state = 39, .external_lex_state = 11}, - [4203] = {.lex_state = 3, .external_lex_state = 12}, - [4204] = {.lex_state = 3, .external_lex_state = 7}, - [4205] = {.lex_state = 3, .external_lex_state = 7}, - [4206] = {.lex_state = 3, .external_lex_state = 12}, - [4207] = {.lex_state = 3, .external_lex_state = 12}, - [4208] = {.lex_state = 3, .external_lex_state = 12}, - [4209] = {.lex_state = 3, .external_lex_state = 7}, - [4210] = {.lex_state = 39, .external_lex_state = 14}, - [4211] = {.lex_state = 39, .external_lex_state = 10}, - [4212] = {.lex_state = 3, .external_lex_state = 12}, - [4213] = {.lex_state = 3, .external_lex_state = 7}, - [4214] = {.lex_state = 39, .external_lex_state = 14}, - [4215] = {.lex_state = 3, .external_lex_state = 12}, - [4216] = {.lex_state = 3, .external_lex_state = 12}, - [4217] = {.lex_state = 39, .external_lex_state = 10}, + [4202] = {.lex_state = 39, .external_lex_state = 10}, + [4203] = {.lex_state = 39, .external_lex_state = 10}, + [4204] = {.lex_state = 39, .external_lex_state = 10}, + [4205] = {.lex_state = 39, .external_lex_state = 10}, + [4206] = {.lex_state = 39, .external_lex_state = 8}, + [4207] = {.lex_state = 39, .external_lex_state = 8}, + [4208] = {.lex_state = 39, .external_lex_state = 8}, + [4209] = {.lex_state = 39, .external_lex_state = 8}, + [4210] = {.lex_state = 39, .external_lex_state = 8}, + [4211] = {.lex_state = 39, .external_lex_state = 8}, + [4212] = {.lex_state = 39, .external_lex_state = 8}, + [4213] = {.lex_state = 39, .external_lex_state = 11}, + [4214] = {.lex_state = 39, .external_lex_state = 8}, + [4215] = {.lex_state = 39, .external_lex_state = 8}, + [4216] = {.lex_state = 39, .external_lex_state = 11}, + [4217] = {.lex_state = 39, .external_lex_state = 14}, [4218] = {.lex_state = 39, .external_lex_state = 14}, - [4219] = {.lex_state = 3, .external_lex_state = 7}, + [4219] = {.lex_state = 3, .external_lex_state = 12}, [4220] = {.lex_state = 3, .external_lex_state = 12}, [4221] = {.lex_state = 3, .external_lex_state = 12}, - [4222] = {.lex_state = 3, .external_lex_state = 7}, - [4223] = {.lex_state = 39, .external_lex_state = 14}, + [4222] = {.lex_state = 39, .external_lex_state = 11}, + [4223] = {.lex_state = 3, .external_lex_state = 12}, [4224] = {.lex_state = 39, .external_lex_state = 10}, - [4225] = {.lex_state = 3, .external_lex_state = 12}, - [4226] = {.lex_state = 39, .external_lex_state = 10}, - [4227] = {.lex_state = 3, .external_lex_state = 7}, - [4228] = {.lex_state = 3, .external_lex_state = 7}, - [4229] = {.lex_state = 3, .external_lex_state = 12}, - [4230] = {.lex_state = 39, .external_lex_state = 10}, - [4231] = {.lex_state = 3, .external_lex_state = 12}, - [4232] = {.lex_state = 39, .external_lex_state = 10}, - [4233] = {.lex_state = 3, .external_lex_state = 12}, - [4234] = {.lex_state = 3, .external_lex_state = 12}, - [4235] = {.lex_state = 39, .external_lex_state = 10}, - [4236] = {.lex_state = 39, .external_lex_state = 10}, - [4237] = {.lex_state = 39, .external_lex_state = 10}, - [4238] = {.lex_state = 3, .external_lex_state = 7}, - [4239] = {.lex_state = 3, .external_lex_state = 12}, - [4240] = {.lex_state = 39, .external_lex_state = 10}, - [4241] = {.lex_state = 39, .external_lex_state = 10}, + [4225] = {.lex_state = 39, .external_lex_state = 14}, + [4226] = {.lex_state = 39, .external_lex_state = 14}, + [4227] = {.lex_state = 39, .external_lex_state = 13}, + [4228] = {.lex_state = 39, .external_lex_state = 14}, + [4229] = {.lex_state = 39, .external_lex_state = 14}, + [4230] = {.lex_state = 39, .external_lex_state = 14}, + [4231] = {.lex_state = 39, .external_lex_state = 14}, + [4232] = {.lex_state = 39, .external_lex_state = 14}, + [4233] = {.lex_state = 39, .external_lex_state = 14}, + [4234] = {.lex_state = 39, .external_lex_state = 14}, + [4235] = {.lex_state = 39, .external_lex_state = 14}, + [4236] = {.lex_state = 39, .external_lex_state = 14}, + [4237] = {.lex_state = 39, .external_lex_state = 14}, + [4238] = {.lex_state = 39, .external_lex_state = 14}, + [4239] = {.lex_state = 39, .external_lex_state = 14}, + [4240] = {.lex_state = 39, .external_lex_state = 14}, + [4241] = {.lex_state = 39, .external_lex_state = 14}, [4242] = {.lex_state = 39, .external_lex_state = 14}, - [4243] = {.lex_state = 39, .external_lex_state = 10}, + [4243] = {.lex_state = 39, .external_lex_state = 14}, [4244] = {.lex_state = 39, .external_lex_state = 11}, - [4245] = {.lex_state = 39, .external_lex_state = 2}, - [4246] = {.lex_state = 39, .external_lex_state = 4}, - [4247] = {.lex_state = 39, .external_lex_state = 4}, - [4248] = {.lex_state = 39, .external_lex_state = 14}, - [4249] = {.lex_state = 39, .external_lex_state = 14}, + [4245] = {.lex_state = 3, .external_lex_state = 12}, + [4246] = {.lex_state = 39, .external_lex_state = 11}, + [4247] = {.lex_state = 39, .external_lex_state = 11}, + [4248] = {.lex_state = 39, .external_lex_state = 11}, + [4249] = {.lex_state = 39, .external_lex_state = 11}, [4250] = {.lex_state = 39, .external_lex_state = 10}, - [4251] = {.lex_state = 39, .external_lex_state = 10}, - [4252] = {.lex_state = 39, .external_lex_state = 14}, - [4253] = {.lex_state = 39, .external_lex_state = 10}, + [4251] = {.lex_state = 39, .external_lex_state = 11}, + [4252] = {.lex_state = 3, .external_lex_state = 12}, + [4253] = {.lex_state = 3, .external_lex_state = 12}, [4254] = {.lex_state = 39, .external_lex_state = 10}, - [4255] = {.lex_state = 39, .external_lex_state = 9}, - [4256] = {.lex_state = 39, .external_lex_state = 14}, - [4257] = {.lex_state = 39, .external_lex_state = 11}, - [4258] = {.lex_state = 39, .external_lex_state = 7}, - [4259] = {.lex_state = 39, .external_lex_state = 9}, - [4260] = {.lex_state = 39, .external_lex_state = 14}, - [4261] = {.lex_state = 39, .external_lex_state = 14}, - [4262] = {.lex_state = 39, .external_lex_state = 7}, - [4263] = {.lex_state = 39, .external_lex_state = 10}, - [4264] = {.lex_state = 39, .external_lex_state = 2}, - [4265] = {.lex_state = 39, .external_lex_state = 9}, - [4266] = {.lex_state = 39, .external_lex_state = 14}, - [4267] = {.lex_state = 39, .external_lex_state = 9}, - [4268] = {.lex_state = 39, .external_lex_state = 14}, - [4269] = {.lex_state = 39, .external_lex_state = 7}, - [4270] = {.lex_state = 39, .external_lex_state = 10}, - [4271] = {.lex_state = 39, .external_lex_state = 7}, - [4272] = {.lex_state = 39, .external_lex_state = 10}, - [4273] = {.lex_state = 39, .external_lex_state = 14}, - [4274] = {.lex_state = 39, .external_lex_state = 11}, - [4275] = {.lex_state = 39, .external_lex_state = 14}, - [4276] = {.lex_state = 39, .external_lex_state = 10}, - [4277] = {.lex_state = 39, .external_lex_state = 7}, - [4278] = {.lex_state = 39, .external_lex_state = 14}, - [4279] = {.lex_state = 39, .external_lex_state = 10}, - [4280] = {.lex_state = 39, .external_lex_state = 7}, - [4281] = {.lex_state = 39, .external_lex_state = 11}, - [4282] = {.lex_state = 39, .external_lex_state = 14}, - [4283] = {.lex_state = 39, .external_lex_state = 11}, - [4284] = {.lex_state = 39, .external_lex_state = 10}, - [4285] = {.lex_state = 39, .external_lex_state = 10}, - [4286] = {.lex_state = 39, .external_lex_state = 10}, - [4287] = {.lex_state = 39, .external_lex_state = 7}, - [4288] = {.lex_state = 39, .external_lex_state = 4}, - [4289] = {.lex_state = 39, .external_lex_state = 9}, - [4290] = {.lex_state = 39, .external_lex_state = 10}, - [4291] = {.lex_state = 39, .external_lex_state = 7}, - [4292] = {.lex_state = 39, .external_lex_state = 4}, - [4293] = {.lex_state = 39, .external_lex_state = 11}, - [4294] = {.lex_state = 39, .external_lex_state = 10}, + [4255] = {.lex_state = 39, .external_lex_state = 14}, + [4256] = {.lex_state = 39, .external_lex_state = 11}, + [4257] = {.lex_state = 39, .external_lex_state = 10}, + [4258] = {.lex_state = 39, .external_lex_state = 14}, + [4259] = {.lex_state = 39, .external_lex_state = 10}, + [4260] = {.lex_state = 39, .external_lex_state = 10}, + [4261] = {.lex_state = 39, .external_lex_state = 10}, + [4262] = {.lex_state = 39, .external_lex_state = 10}, + [4263] = {.lex_state = 39, .external_lex_state = 14}, + [4264] = {.lex_state = 39, .external_lex_state = 14}, + [4265] = {.lex_state = 39, .external_lex_state = 10}, + [4266] = {.lex_state = 39, .external_lex_state = 10}, + [4267] = {.lex_state = 39, .external_lex_state = 14}, + [4268] = {.lex_state = 39, .external_lex_state = 10}, + [4269] = {.lex_state = 39, .external_lex_state = 14}, + [4270] = {.lex_state = 39, .external_lex_state = 14}, + [4271] = {.lex_state = 39, .external_lex_state = 14}, + [4272] = {.lex_state = 3, .external_lex_state = 12}, + [4273] = {.lex_state = 3, .external_lex_state = 7}, + [4274] = {.lex_state = 39, .external_lex_state = 10}, + [4275] = {.lex_state = 3, .external_lex_state = 7}, + [4276] = {.lex_state = 39, .external_lex_state = 14}, + [4277] = {.lex_state = 3, .external_lex_state = 7}, + [4278] = {.lex_state = 3, .external_lex_state = 7}, + [4279] = {.lex_state = 3, .external_lex_state = 7}, + [4280] = {.lex_state = 3, .external_lex_state = 7}, + [4281] = {.lex_state = 3, .external_lex_state = 7}, + [4282] = {.lex_state = 3, .external_lex_state = 7}, + [4283] = {.lex_state = 3, .external_lex_state = 7}, + [4284] = {.lex_state = 39, .external_lex_state = 14}, + [4285] = {.lex_state = 39, .external_lex_state = 14}, + [4286] = {.lex_state = 39, .external_lex_state = 14}, + [4287] = {.lex_state = 39, .external_lex_state = 14}, + [4288] = {.lex_state = 39, .external_lex_state = 14}, + [4289] = {.lex_state = 39, .external_lex_state = 14}, + [4290] = {.lex_state = 39, .external_lex_state = 14}, + [4291] = {.lex_state = 39, .external_lex_state = 14}, + [4292] = {.lex_state = 39, .external_lex_state = 14}, + [4293] = {.lex_state = 39, .external_lex_state = 14}, + [4294] = {.lex_state = 39, .external_lex_state = 14}, [4295] = {.lex_state = 39, .external_lex_state = 10}, [4296] = {.lex_state = 39, .external_lex_state = 14}, [4297] = {.lex_state = 39, .external_lex_state = 14}, - [4298] = {.lex_state = 39, .external_lex_state = 14}, - [4299] = {.lex_state = 39, .external_lex_state = 14}, + [4298] = {.lex_state = 39, .external_lex_state = 11}, + [4299] = {.lex_state = 39, .external_lex_state = 10}, [4300] = {.lex_state = 39, .external_lex_state = 10}, - [4301] = {.lex_state = 39, .external_lex_state = 14}, + [4301] = {.lex_state = 39, .external_lex_state = 10}, [4302] = {.lex_state = 39, .external_lex_state = 14}, - [4303] = {.lex_state = 39, .external_lex_state = 14}, - [4304] = {.lex_state = 39, .external_lex_state = 14}, + [4303] = {.lex_state = 39, .external_lex_state = 10}, + [4304] = {.lex_state = 39, .external_lex_state = 10}, [4305] = {.lex_state = 39, .external_lex_state = 10}, [4306] = {.lex_state = 39, .external_lex_state = 10}, - [4307] = {.lex_state = 39, .external_lex_state = 10}, + [4307] = {.lex_state = 39, .external_lex_state = 11}, [4308] = {.lex_state = 39, .external_lex_state = 10}, - [4309] = {.lex_state = 39, .external_lex_state = 10}, - [4310] = {.lex_state = 39, .external_lex_state = 10}, - [4311] = {.lex_state = 39, .external_lex_state = 11}, + [4309] = {.lex_state = 39, .external_lex_state = 14}, + [4310] = {.lex_state = 39, .external_lex_state = 14}, + [4311] = {.lex_state = 39, .external_lex_state = 14}, [4312] = {.lex_state = 39, .external_lex_state = 10}, - [4313] = {.lex_state = 39, .external_lex_state = 11}, - [4314] = {.lex_state = 39, .external_lex_state = 11}, - [4315] = {.lex_state = 39, .external_lex_state = 11}, - [4316] = {.lex_state = 39, .external_lex_state = 11}, - [4317] = {.lex_state = 39, .external_lex_state = 14}, - [4318] = {.lex_state = 39, .external_lex_state = 4}, + [4313] = {.lex_state = 39, .external_lex_state = 10}, + [4314] = {.lex_state = 39, .external_lex_state = 10}, + [4315] = {.lex_state = 39, .external_lex_state = 10}, + [4316] = {.lex_state = 39, .external_lex_state = 10}, + [4317] = {.lex_state = 39, .external_lex_state = 10}, + [4318] = {.lex_state = 39, .external_lex_state = 10}, [4319] = {.lex_state = 39, .external_lex_state = 10}, - [4320] = {.lex_state = 39, .external_lex_state = 7}, - [4321] = {.lex_state = 39, .external_lex_state = 11}, - [4322] = {.lex_state = 39, .external_lex_state = 14}, - [4323] = {.lex_state = 39, .external_lex_state = 14}, - [4324] = {.lex_state = 39, .external_lex_state = 7}, - [4325] = {.lex_state = 39, .external_lex_state = 2}, - [4326] = {.lex_state = 39, .external_lex_state = 14}, - [4327] = {.lex_state = 39, .external_lex_state = 2}, - [4328] = {.lex_state = 39, .external_lex_state = 14}, - [4329] = {.lex_state = 39, .external_lex_state = 11}, - [4330] = {.lex_state = 39, .external_lex_state = 2}, - [4331] = {.lex_state = 39, .external_lex_state = 10}, - [4332] = {.lex_state = 39, .external_lex_state = 14}, - [4333] = {.lex_state = 39, .external_lex_state = 4}, - [4334] = {.lex_state = 39, .external_lex_state = 14}, + [4320] = {.lex_state = 39, .external_lex_state = 10}, + [4321] = {.lex_state = 39, .external_lex_state = 14}, + [4322] = {.lex_state = 39, .external_lex_state = 10}, + [4323] = {.lex_state = 39, .external_lex_state = 10}, + [4324] = {.lex_state = 39, .external_lex_state = 10}, + [4325] = {.lex_state = 39, .external_lex_state = 10}, + [4326] = {.lex_state = 3, .external_lex_state = 12}, + [4327] = {.lex_state = 3, .external_lex_state = 12}, + [4328] = {.lex_state = 3, .external_lex_state = 12}, + [4329] = {.lex_state = 39, .external_lex_state = 10}, + [4330] = {.lex_state = 3, .external_lex_state = 12}, + [4331] = {.lex_state = 3, .external_lex_state = 12}, + [4332] = {.lex_state = 39, .external_lex_state = 10}, + [4333] = {.lex_state = 3, .external_lex_state = 12}, + [4334] = {.lex_state = 39, .external_lex_state = 10}, [4335] = {.lex_state = 39, .external_lex_state = 10}, - [4336] = {.lex_state = 39, .external_lex_state = 10}, + [4336] = {.lex_state = 3, .external_lex_state = 12}, [4337] = {.lex_state = 39, .external_lex_state = 10}, - [4338] = {.lex_state = 39, .external_lex_state = 9}, - [4339] = {.lex_state = 39, .external_lex_state = 10}, - [4340] = {.lex_state = 39, .external_lex_state = 9}, - [4341] = {.lex_state = 39, .external_lex_state = 11}, - [4342] = {.lex_state = 39, .external_lex_state = 11}, - [4343] = {.lex_state = 39, .external_lex_state = 14}, - [4344] = {.lex_state = 39, .external_lex_state = 11}, - [4345] = {.lex_state = 39, .external_lex_state = 11}, - [4346] = {.lex_state = 39, .external_lex_state = 10}, - [4347] = {.lex_state = 39, .external_lex_state = 14}, - [4348] = {.lex_state = 39, .external_lex_state = 11}, - [4349] = {.lex_state = 39, .external_lex_state = 7}, - [4350] = {.lex_state = 39, .external_lex_state = 14}, - [4351] = {.lex_state = 39, .external_lex_state = 2}, - [4352] = {.lex_state = 39, .external_lex_state = 14}, - [4353] = {.lex_state = 39, .external_lex_state = 11}, - [4354] = {.lex_state = 39, .external_lex_state = 11}, - [4355] = {.lex_state = 39, .external_lex_state = 11}, - [4356] = {.lex_state = 39, .external_lex_state = 11}, - [4357] = {.lex_state = 39, .external_lex_state = 14}, - [4358] = {.lex_state = 39, .external_lex_state = 2}, - [4359] = {.lex_state = 39, .external_lex_state = 11}, - [4360] = {.lex_state = 39, .external_lex_state = 11}, - [4361] = {.lex_state = 39, .external_lex_state = 10}, - [4362] = {.lex_state = 39, .external_lex_state = 10}, - [4363] = {.lex_state = 39, .external_lex_state = 2}, - [4364] = {.lex_state = 39, .external_lex_state = 4}, - [4365] = {.lex_state = 39, .external_lex_state = 14}, - [4366] = {.lex_state = 39, .external_lex_state = 2}, - [4367] = {.lex_state = 39, .external_lex_state = 10}, - [4368] = {.lex_state = 39, .external_lex_state = 10}, - [4369] = {.lex_state = 39, .external_lex_state = 2}, - [4370] = {.lex_state = 39, .external_lex_state = 11}, - [4371] = {.lex_state = 39, .external_lex_state = 14}, - [4372] = {.lex_state = 39, .external_lex_state = 11}, - [4373] = {.lex_state = 39, .external_lex_state = 14}, - [4374] = {.lex_state = 39, .external_lex_state = 14}, - [4375] = {.lex_state = 39, .external_lex_state = 14}, - [4376] = {.lex_state = 39, .external_lex_state = 10}, - [4377] = {.lex_state = 39, .external_lex_state = 14}, - [4378] = {.lex_state = 39, .external_lex_state = 10}, - [4379] = {.lex_state = 39, .external_lex_state = 10}, - [4380] = {.lex_state = 39, .external_lex_state = 14}, - [4381] = {.lex_state = 39, .external_lex_state = 10}, + [4338] = {.lex_state = 3, .external_lex_state = 12}, + [4339] = {.lex_state = 3, .external_lex_state = 12}, + [4340] = {.lex_state = 3, .external_lex_state = 12}, + [4341] = {.lex_state = 3, .external_lex_state = 12}, + [4342] = {.lex_state = 3, .external_lex_state = 12}, + [4343] = {.lex_state = 3, .external_lex_state = 12}, + [4344] = {.lex_state = 39, .external_lex_state = 10}, + [4345] = {.lex_state = 3, .external_lex_state = 12}, + [4346] = {.lex_state = 3, .external_lex_state = 12}, + [4347] = {.lex_state = 39, .external_lex_state = 10}, + [4348] = {.lex_state = 3, .external_lex_state = 12}, + [4349] = {.lex_state = 3, .external_lex_state = 12}, + [4350] = {.lex_state = 3, .external_lex_state = 12}, + [4351] = {.lex_state = 3, .external_lex_state = 12}, + [4352] = {.lex_state = 3, .external_lex_state = 12}, + [4353] = {.lex_state = 3, .external_lex_state = 12}, + [4354] = {.lex_state = 39, .external_lex_state = 10}, + [4355] = {.lex_state = 39, .external_lex_state = 10}, + [4356] = {.lex_state = 39, .external_lex_state = 10}, + [4357] = {.lex_state = 39, .external_lex_state = 10}, + [4358] = {.lex_state = 3, .external_lex_state = 12}, + [4359] = {.lex_state = 3, .external_lex_state = 12}, + [4360] = {.lex_state = 3, .external_lex_state = 12}, + [4361] = {.lex_state = 3, .external_lex_state = 12}, + [4362] = {.lex_state = 3, .external_lex_state = 12}, + [4363] = {.lex_state = 3, .external_lex_state = 12}, + [4364] = {.lex_state = 3, .external_lex_state = 12}, + [4365] = {.lex_state = 39, .external_lex_state = 7}, + [4366] = {.lex_state = 3, .external_lex_state = 12}, + [4367] = {.lex_state = 3, .external_lex_state = 12}, + [4368] = {.lex_state = 3, .external_lex_state = 12}, + [4369] = {.lex_state = 39, .external_lex_state = 10}, + [4370] = {.lex_state = 3, .external_lex_state = 12}, + [4371] = {.lex_state = 3, .external_lex_state = 12}, + [4372] = {.lex_state = 3, .external_lex_state = 12}, + [4373] = {.lex_state = 39, .external_lex_state = 10}, + [4374] = {.lex_state = 39, .external_lex_state = 10}, + [4375] = {.lex_state = 3, .external_lex_state = 12}, + [4376] = {.lex_state = 3, .external_lex_state = 12}, + [4377] = {.lex_state = 3, .external_lex_state = 12}, + [4378] = {.lex_state = 3, .external_lex_state = 12}, + [4379] = {.lex_state = 3, .external_lex_state = 12}, + [4380] = {.lex_state = 3, .external_lex_state = 12}, + [4381] = {.lex_state = 3, .external_lex_state = 12}, [4382] = {.lex_state = 39, .external_lex_state = 10}, - [4383] = {.lex_state = 39, .external_lex_state = 14}, - [4384] = {.lex_state = 39, .external_lex_state = 10}, - [4385] = {.lex_state = 39, .external_lex_state = 10}, - [4386] = {.lex_state = 39, .external_lex_state = 4}, - [4387] = {.lex_state = 39, .external_lex_state = 10}, - [4388] = {.lex_state = 39, .external_lex_state = 9}, - [4389] = {.lex_state = 39, .external_lex_state = 14}, - [4390] = {.lex_state = 39, .external_lex_state = 10}, - [4391] = {.lex_state = 39, .external_lex_state = 4}, - [4392] = {.lex_state = 39, .external_lex_state = 14}, - [4393] = {.lex_state = 39, .external_lex_state = 14}, - [4394] = {.lex_state = 39, .external_lex_state = 14}, - [4395] = {.lex_state = 39, .external_lex_state = 14}, + [4383] = {.lex_state = 3, .external_lex_state = 12}, + [4384] = {.lex_state = 3, .external_lex_state = 12}, + [4385] = {.lex_state = 3, .external_lex_state = 12}, + [4386] = {.lex_state = 3, .external_lex_state = 12}, + [4387] = {.lex_state = 39, .external_lex_state = 14}, + [4388] = {.lex_state = 39, .external_lex_state = 14}, + [4389] = {.lex_state = 39, .external_lex_state = 11}, + [4390] = {.lex_state = 39, .external_lex_state = 11}, + [4391] = {.lex_state = 39, .external_lex_state = 9}, + [4392] = {.lex_state = 39, .external_lex_state = 11}, + [4393] = {.lex_state = 39, .external_lex_state = 11}, + [4394] = {.lex_state = 39, .external_lex_state = 11}, + [4395] = {.lex_state = 39, .external_lex_state = 11}, [4396] = {.lex_state = 39, .external_lex_state = 10}, - [4397] = {.lex_state = 39, .external_lex_state = 9}, - [4398] = {.lex_state = 39, .external_lex_state = 4}, - [4399] = {.lex_state = 39, .external_lex_state = 11}, - [4400] = {.lex_state = 39, .external_lex_state = 9}, - [4401] = {.lex_state = 39, .external_lex_state = 10}, - [4402] = {.lex_state = 39, .external_lex_state = 10}, - [4403] = {.lex_state = 39, .external_lex_state = 10}, - [4404] = {.lex_state = 39, .external_lex_state = 7}, - [4405] = {.lex_state = 39, .external_lex_state = 14}, + [4397] = {.lex_state = 39, .external_lex_state = 14}, + [4398] = {.lex_state = 39, .external_lex_state = 14}, + [4399] = {.lex_state = 39, .external_lex_state = 2}, + [4400] = {.lex_state = 39, .external_lex_state = 2}, + [4401] = {.lex_state = 39, .external_lex_state = 2}, + [4402] = {.lex_state = 39, .external_lex_state = 2}, + [4403] = {.lex_state = 39, .external_lex_state = 2}, + [4404] = {.lex_state = 39, .external_lex_state = 2}, + [4405] = {.lex_state = 39, .external_lex_state = 2}, [4406] = {.lex_state = 39, .external_lex_state = 14}, - [4407] = {.lex_state = 39, .external_lex_state = 11}, - [4408] = {.lex_state = 39, .external_lex_state = 11}, - [4409] = {.lex_state = 39, .external_lex_state = 11}, - [4410] = {.lex_state = 39, .external_lex_state = 11}, + [4407] = {.lex_state = 39, .external_lex_state = 14}, + [4408] = {.lex_state = 39, .external_lex_state = 2}, + [4409] = {.lex_state = 39, .external_lex_state = 14}, + [4410] = {.lex_state = 39, .external_lex_state = 14}, [4411] = {.lex_state = 39, .external_lex_state = 11}, [4412] = {.lex_state = 39, .external_lex_state = 11}, - [4413] = {.lex_state = 39, .external_lex_state = 11}, - [4414] = {.lex_state = 39, .external_lex_state = 11}, - [4415] = {.lex_state = 39, .external_lex_state = 10}, + [4413] = {.lex_state = 39, .external_lex_state = 2}, + [4414] = {.lex_state = 39, .external_lex_state = 14}, + [4415] = {.lex_state = 39, .external_lex_state = 11}, [4416] = {.lex_state = 39, .external_lex_state = 11}, - [4417] = {.lex_state = 39, .external_lex_state = 7}, - [4418] = {.lex_state = 39, .external_lex_state = 9}, - [4419] = {.lex_state = 39, .external_lex_state = 7}, - [4420] = {.lex_state = 39, .external_lex_state = 2}, - [4421] = {.lex_state = 39, .external_lex_state = 7}, - [4422] = {.lex_state = 39, .external_lex_state = 2}, - [4423] = {.lex_state = 39, .external_lex_state = 7}, - [4424] = {.lex_state = 39, .external_lex_state = 7}, - [4425] = {.lex_state = 39, .external_lex_state = 7}, - [4426] = {.lex_state = 39, .external_lex_state = 7}, - [4427] = {.lex_state = 39, .external_lex_state = 2}, - [4428] = {.lex_state = 39, .external_lex_state = 7}, - [4429] = {.lex_state = 39, .external_lex_state = 7}, - [4430] = {.lex_state = 39, .external_lex_state = 7}, - [4431] = {.lex_state = 39, .external_lex_state = 9}, - [4432] = {.lex_state = 39, .external_lex_state = 7}, - [4433] = {.lex_state = 39, .external_lex_state = 8}, - [4434] = {.lex_state = 39, .external_lex_state = 7}, - [4435] = {.lex_state = 39, .external_lex_state = 7}, - [4436] = {.lex_state = 39, .external_lex_state = 7}, - [4437] = {.lex_state = 39, .external_lex_state = 7}, - [4438] = {.lex_state = 39, .external_lex_state = 7}, - [4439] = {.lex_state = 39, .external_lex_state = 7}, - [4440] = {.lex_state = 39, .external_lex_state = 7}, - [4441] = {.lex_state = 39, .external_lex_state = 8}, - [4442] = {.lex_state = 39, .external_lex_state = 7}, - [4443] = {.lex_state = 39, .external_lex_state = 2}, - [4444] = {.lex_state = 39, .external_lex_state = 7}, - [4445] = {.lex_state = 39, .external_lex_state = 8}, - [4446] = {.lex_state = 39, .external_lex_state = 9}, - [4447] = {.lex_state = 39, .external_lex_state = 9}, + [4417] = {.lex_state = 39, .external_lex_state = 14}, + [4418] = {.lex_state = 39, .external_lex_state = 11}, + [4419] = {.lex_state = 39, .external_lex_state = 14}, + [4420] = {.lex_state = 39, .external_lex_state = 3}, + [4421] = {.lex_state = 39, .external_lex_state = 11}, + [4422] = {.lex_state = 39, .external_lex_state = 3}, + [4423] = {.lex_state = 39, .external_lex_state = 3}, + [4424] = {.lex_state = 39, .external_lex_state = 11}, + [4425] = {.lex_state = 39, .external_lex_state = 14}, + [4426] = {.lex_state = 39, .external_lex_state = 14}, + [4427] = {.lex_state = 39, .external_lex_state = 14}, + [4428] = {.lex_state = 39, .external_lex_state = 3}, + [4429] = {.lex_state = 39, .external_lex_state = 14}, + [4430] = {.lex_state = 39, .external_lex_state = 14}, + [4431] = {.lex_state = 39, .external_lex_state = 14}, + [4432] = {.lex_state = 39, .external_lex_state = 14}, + [4433] = {.lex_state = 39, .external_lex_state = 14}, + [4434] = {.lex_state = 39, .external_lex_state = 14}, + [4435] = {.lex_state = 39, .external_lex_state = 3}, + [4436] = {.lex_state = 39, .external_lex_state = 3}, + [4437] = {.lex_state = 39, .external_lex_state = 14}, + [4438] = {.lex_state = 39, .external_lex_state = 11}, + [4439] = {.lex_state = 39, .external_lex_state = 14}, + [4440] = {.lex_state = 39, .external_lex_state = 3}, + [4441] = {.lex_state = 39, .external_lex_state = 14}, + [4442] = {.lex_state = 39, .external_lex_state = 14}, + [4443] = {.lex_state = 39, .external_lex_state = 14}, + [4444] = {.lex_state = 39, .external_lex_state = 14}, + [4445] = {.lex_state = 39, .external_lex_state = 3}, + [4446] = {.lex_state = 39, .external_lex_state = 3}, + [4447] = {.lex_state = 39, .external_lex_state = 11}, [4448] = {.lex_state = 39, .external_lex_state = 9}, - [4449] = {.lex_state = 39, .external_lex_state = 9}, - [4450] = {.lex_state = 39, .external_lex_state = 9}, - [4451] = {.lex_state = 39, .external_lex_state = 9}, - [4452] = {.lex_state = 39, .external_lex_state = 8}, - [4453] = {.lex_state = 39, .external_lex_state = 8}, - [4454] = {.lex_state = 39, .external_lex_state = 2}, - [4455] = {.lex_state = 39, .external_lex_state = 9}, - [4456] = {.lex_state = 39, .external_lex_state = 9}, - [4457] = {.lex_state = 39, .external_lex_state = 7}, + [4449] = {.lex_state = 39, .external_lex_state = 11}, + [4450] = {.lex_state = 39, .external_lex_state = 11}, + [4451] = {.lex_state = 39, .external_lex_state = 11}, + [4452] = {.lex_state = 39, .external_lex_state = 14}, + [4453] = {.lex_state = 39, .external_lex_state = 9}, + [4454] = {.lex_state = 39, .external_lex_state = 14}, + [4455] = {.lex_state = 39, .external_lex_state = 14}, + [4456] = {.lex_state = 39, .external_lex_state = 11}, + [4457] = {.lex_state = 39, .external_lex_state = 9}, [4458] = {.lex_state = 39, .external_lex_state = 9}, - [4459] = {.lex_state = 39, .external_lex_state = 7}, - [4460] = {.lex_state = 39, .external_lex_state = 7}, - [4461] = {.lex_state = 39, .external_lex_state = 8}, - [4462] = {.lex_state = 39, .external_lex_state = 9}, + [4459] = {.lex_state = 39, .external_lex_state = 9}, + [4460] = {.lex_state = 39, .external_lex_state = 14}, + [4461] = {.lex_state = 39, .external_lex_state = 9}, + [4462] = {.lex_state = 39, .external_lex_state = 7}, [4463] = {.lex_state = 39, .external_lex_state = 7}, [4464] = {.lex_state = 39, .external_lex_state = 9}, - [4465] = {.lex_state = 39, .external_lex_state = 8}, - [4466] = {.lex_state = 39, .external_lex_state = 7}, - [4467] = {.lex_state = 39, .external_lex_state = 9}, - [4468] = {.lex_state = 39, .external_lex_state = 2}, - [4469] = {.lex_state = 39, .external_lex_state = 7}, - [4470] = {.lex_state = 39, .external_lex_state = 2}, - [4471] = {.lex_state = 39, .external_lex_state = 9}, - [4472] = {.lex_state = 39, .external_lex_state = 2}, - [4473] = {.lex_state = 39, .external_lex_state = 7}, - [4474] = {.lex_state = 39, .external_lex_state = 8}, - [4475] = {.lex_state = 39, .external_lex_state = 8}, - [4476] = {.lex_state = 39, .external_lex_state = 2}, - [4477] = {.lex_state = 39, .external_lex_state = 9}, - [4478] = {.lex_state = 39, .external_lex_state = 8}, - [4479] = {.lex_state = 39, .external_lex_state = 9}, - [4480] = {.lex_state = 39, .external_lex_state = 2}, - [4481] = {.lex_state = 39, .external_lex_state = 8}, - [4482] = {.lex_state = 39, .external_lex_state = 9}, + [4465] = {.lex_state = 39, .external_lex_state = 7}, + [4466] = {.lex_state = 39, .external_lex_state = 14}, + [4467] = {.lex_state = 39, .external_lex_state = 14}, + [4468] = {.lex_state = 39, .external_lex_state = 14}, + [4469] = {.lex_state = 39, .external_lex_state = 14}, + [4470] = {.lex_state = 39, .external_lex_state = 7}, + [4471] = {.lex_state = 39, .external_lex_state = 7}, + [4472] = {.lex_state = 39, .external_lex_state = 14}, + [4473] = {.lex_state = 39, .external_lex_state = 14}, + [4474] = {.lex_state = 39, .external_lex_state = 7}, + [4475] = {.lex_state = 39, .external_lex_state = 14}, + [4476] = {.lex_state = 39, .external_lex_state = 11}, + [4477] = {.lex_state = 39, .external_lex_state = 14}, + [4478] = {.lex_state = 39, .external_lex_state = 11}, + [4479] = {.lex_state = 39, .external_lex_state = 11}, + [4480] = {.lex_state = 39, .external_lex_state = 7}, + [4481] = {.lex_state = 39, .external_lex_state = 7}, + [4482] = {.lex_state = 39, .external_lex_state = 14}, [4483] = {.lex_state = 39, .external_lex_state = 7}, - [4484] = {.lex_state = 39, .external_lex_state = 8}, + [4484] = {.lex_state = 39, .external_lex_state = 7}, [4485] = {.lex_state = 39, .external_lex_state = 9}, - [4486] = {.lex_state = 39, .external_lex_state = 7}, - [4487] = {.lex_state = 39, .external_lex_state = 2}, - [4488] = {.lex_state = 39, .external_lex_state = 2}, - [4489] = {.lex_state = 39, .external_lex_state = 7}, - [4490] = {.lex_state = 39, .external_lex_state = 9}, - [4491] = {.lex_state = 39, .external_lex_state = 8}, - [4492] = {.lex_state = 39, .external_lex_state = 2}, - [4493] = {.lex_state = 39, .external_lex_state = 7}, - [4494] = {.lex_state = 39, .external_lex_state = 7}, - [4495] = {.lex_state = 39, .external_lex_state = 8}, - [4496] = {.lex_state = 39, .external_lex_state = 7}, - [4497] = {.lex_state = 39, .external_lex_state = 2}, - [4498] = {.lex_state = 39, .external_lex_state = 8}, - [4499] = {.lex_state = 39, .external_lex_state = 7}, - [4500] = {.lex_state = 39, .external_lex_state = 9}, - [4501] = {.lex_state = 39, .external_lex_state = 9}, - [4502] = {.lex_state = 39, .external_lex_state = 7}, - [4503] = {.lex_state = 39, .external_lex_state = 8}, - [4504] = {.lex_state = 39, .external_lex_state = 2}, - [4505] = {.lex_state = 39, .external_lex_state = 2}, - [4506] = {.lex_state = 39, .external_lex_state = 8}, - [4507] = {.lex_state = 39, .external_lex_state = 9}, - [4508] = {.lex_state = 39, .external_lex_state = 7}, - [4509] = {.lex_state = 39, .external_lex_state = 2}, - [4510] = {.lex_state = 39, .external_lex_state = 2}, - [4511] = {.lex_state = 39, .external_lex_state = 9}, - [4512] = {.lex_state = 39, .external_lex_state = 2}, + [4486] = {.lex_state = 39, .external_lex_state = 11}, + [4487] = {.lex_state = 39, .external_lex_state = 7}, + [4488] = {.lex_state = 39, .external_lex_state = 11}, + [4489] = {.lex_state = 39, .external_lex_state = 11}, + [4490] = {.lex_state = 39, .external_lex_state = 14}, + [4491] = {.lex_state = 39, .external_lex_state = 11}, + [4492] = {.lex_state = 39, .external_lex_state = 11}, + [4493] = {.lex_state = 39, .external_lex_state = 14}, + [4494] = {.lex_state = 39, .external_lex_state = 14}, + [4495] = {.lex_state = 39, .external_lex_state = 14}, + [4496] = {.lex_state = 39, .external_lex_state = 14}, + [4497] = {.lex_state = 39, .external_lex_state = 14}, + [4498] = {.lex_state = 39, .external_lex_state = 11}, + [4499] = {.lex_state = 39, .external_lex_state = 11}, + [4500] = {.lex_state = 39, .external_lex_state = 14}, + [4501] = {.lex_state = 39, .external_lex_state = 10}, + [4502] = {.lex_state = 39, .external_lex_state = 14}, + [4503] = {.lex_state = 39, .external_lex_state = 11}, + [4504] = {.lex_state = 39, .external_lex_state = 11}, + [4505] = {.lex_state = 39, .external_lex_state = 11}, + [4506] = {.lex_state = 39, .external_lex_state = 11}, + [4507] = {.lex_state = 39, .external_lex_state = 11}, + [4508] = {.lex_state = 39, .external_lex_state = 11}, + [4509] = {.lex_state = 39, .external_lex_state = 11}, + [4510] = {.lex_state = 39, .external_lex_state = 10}, + [4511] = {.lex_state = 39, .external_lex_state = 11}, + [4512] = {.lex_state = 39, .external_lex_state = 7}, [4513] = {.lex_state = 39, .external_lex_state = 2}, - [4514] = {.lex_state = 39, .external_lex_state = 2}, - [4515] = {.lex_state = 39, .external_lex_state = 2}, - [4516] = {.lex_state = 39, .external_lex_state = 2}, - [4517] = {.lex_state = 39, .external_lex_state = 2}, - [4518] = {.lex_state = 39, .external_lex_state = 2}, - [4519] = {.lex_state = 39, .external_lex_state = 2}, - [4520] = {.lex_state = 39, .external_lex_state = 2}, + [4514] = {.lex_state = 39, .external_lex_state = 7}, + [4515] = {.lex_state = 39, .external_lex_state = 9}, + [4516] = {.lex_state = 39, .external_lex_state = 7}, + [4517] = {.lex_state = 39, .external_lex_state = 9}, + [4518] = {.lex_state = 39, .external_lex_state = 7}, + [4519] = {.lex_state = 39, .external_lex_state = 7}, + [4520] = {.lex_state = 39, .external_lex_state = 8}, [4521] = {.lex_state = 39, .external_lex_state = 2}, [4522] = {.lex_state = 39, .external_lex_state = 2}, - [4523] = {.lex_state = 39, .external_lex_state = 2}, - [4524] = {.lex_state = 39, .external_lex_state = 2}, - [4525] = {.lex_state = 39, .external_lex_state = 2}, - [4526] = {.lex_state = 39, .external_lex_state = 2}, + [4523] = {.lex_state = 39, .external_lex_state = 8}, + [4524] = {.lex_state = 39, .external_lex_state = 9}, + [4525] = {.lex_state = 39, .external_lex_state = 9}, + [4526] = {.lex_state = 39, .external_lex_state = 8}, [4527] = {.lex_state = 39, .external_lex_state = 2}, - [4528] = {.lex_state = 39, .external_lex_state = 2}, - [4529] = {.lex_state = 39, .external_lex_state = 2}, - [4530] = {.lex_state = 39, .external_lex_state = 2}, - [4531] = {.lex_state = 39, .external_lex_state = 2}, - [4532] = {.lex_state = 39, .external_lex_state = 2}, - [4533] = {.lex_state = 39, .external_lex_state = 2}, + [4528] = {.lex_state = 39, .external_lex_state = 7}, + [4529] = {.lex_state = 39, .external_lex_state = 7}, + [4530] = {.lex_state = 39, .external_lex_state = 7}, + [4531] = {.lex_state = 39, .external_lex_state = 9}, + [4532] = {.lex_state = 39, .external_lex_state = 8}, + [4533] = {.lex_state = 39, .external_lex_state = 7}, [4534] = {.lex_state = 39, .external_lex_state = 2}, [4535] = {.lex_state = 39, .external_lex_state = 2}, [4536] = {.lex_state = 39, .external_lex_state = 2}, - [4537] = {.lex_state = 39, .external_lex_state = 2}, + [4537] = {.lex_state = 39, .external_lex_state = 7}, [4538] = {.lex_state = 39, .external_lex_state = 2}, - [4539] = {.lex_state = 39, .external_lex_state = 2}, - [4540] = {.lex_state = 39, .external_lex_state = 2}, - [4541] = {.lex_state = 39, .external_lex_state = 2}, - [4542] = {.lex_state = 39, .external_lex_state = 2}, - [4543] = {.lex_state = 39, .external_lex_state = 2}, - [4544] = {.lex_state = 39, .external_lex_state = 2}, - [4545] = {.lex_state = 39, .external_lex_state = 2}, - [4546] = {.lex_state = 39, .external_lex_state = 2}, - [4547] = {.lex_state = 39, .external_lex_state = 2}, - [4548] = {.lex_state = 39, .external_lex_state = 11}, - [4549] = {.lex_state = 39, .external_lex_state = 2}, - [4550] = {.lex_state = 39, .external_lex_state = 2}, - [4551] = {.lex_state = 39, .external_lex_state = 2}, - [4552] = {.lex_state = 39, .external_lex_state = 2}, - [4553] = {.lex_state = 39, .external_lex_state = 2}, - [4554] = {.lex_state = 39, .external_lex_state = 2}, - [4555] = {.lex_state = 39, .external_lex_state = 2}, - [4556] = {.lex_state = 39, .external_lex_state = 2}, - [4557] = {.lex_state = 39, .external_lex_state = 2}, + [4539] = {.lex_state = 39, .external_lex_state = 7}, + [4540] = {.lex_state = 39, .external_lex_state = 9}, + [4541] = {.lex_state = 39, .external_lex_state = 7}, + [4542] = {.lex_state = 39, .external_lex_state = 7}, + [4543] = {.lex_state = 39, .external_lex_state = 9}, + [4544] = {.lex_state = 39, .external_lex_state = 9}, + [4545] = {.lex_state = 39, .external_lex_state = 8}, + [4546] = {.lex_state = 39, .external_lex_state = 7}, + [4547] = {.lex_state = 39, .external_lex_state = 9}, + [4548] = {.lex_state = 39, .external_lex_state = 2}, + [4549] = {.lex_state = 39, .external_lex_state = 8}, + [4550] = {.lex_state = 39, .external_lex_state = 9}, + [4551] = {.lex_state = 39, .external_lex_state = 7}, + [4552] = {.lex_state = 39, .external_lex_state = 9}, + [4553] = {.lex_state = 39, .external_lex_state = 9}, + [4554] = {.lex_state = 39, .external_lex_state = 7}, + [4555] = {.lex_state = 39, .external_lex_state = 7}, + [4556] = {.lex_state = 39, .external_lex_state = 8}, + [4557] = {.lex_state = 39, .external_lex_state = 9}, [4558] = {.lex_state = 39, .external_lex_state = 2}, - [4559] = {.lex_state = 39, .external_lex_state = 2}, - [4560] = {.lex_state = 39, .external_lex_state = 2}, - [4561] = {.lex_state = 39, .external_lex_state = 2}, + [4559] = {.lex_state = 39, .external_lex_state = 9}, + [4560] = {.lex_state = 39, .external_lex_state = 7}, + [4561] = {.lex_state = 39, .external_lex_state = 7}, [4562] = {.lex_state = 39, .external_lex_state = 2}, - [4563] = {.lex_state = 39, .external_lex_state = 2}, - [4564] = {.lex_state = 39, .external_lex_state = 2}, - [4565] = {.lex_state = 39, .external_lex_state = 2}, + [4563] = {.lex_state = 39, .external_lex_state = 7}, + [4564] = {.lex_state = 39, .external_lex_state = 7}, + [4565] = {.lex_state = 39, .external_lex_state = 7}, [4566] = {.lex_state = 39, .external_lex_state = 2}, - [4567] = {.lex_state = 39, .external_lex_state = 2}, - [4568] = {.lex_state = 39, .external_lex_state = 2}, - [4569] = {.lex_state = 39, .external_lex_state = 2}, - [4570] = {.lex_state = 39, .external_lex_state = 2}, - [4571] = {.lex_state = 39, .external_lex_state = 2}, - [4572] = {.lex_state = 39, .external_lex_state = 2}, - [4573] = {.lex_state = 39, .external_lex_state = 2}, - [4574] = {.lex_state = 39, .external_lex_state = 2}, + [4567] = {.lex_state = 39, .external_lex_state = 8}, + [4568] = {.lex_state = 39, .external_lex_state = 9}, + [4569] = {.lex_state = 39, .external_lex_state = 7}, + [4570] = {.lex_state = 39, .external_lex_state = 7}, + [4571] = {.lex_state = 39, .external_lex_state = 8}, + [4572] = {.lex_state = 39, .external_lex_state = 9}, + [4573] = {.lex_state = 39, .external_lex_state = 9}, + [4574] = {.lex_state = 39, .external_lex_state = 9}, [4575] = {.lex_state = 39, .external_lex_state = 2}, - [4576] = {.lex_state = 39, .external_lex_state = 2}, - [4577] = {.lex_state = 39, .external_lex_state = 2}, - [4578] = {.lex_state = 39, .external_lex_state = 2}, - [4579] = {.lex_state = 39, .external_lex_state = 2}, - [4580] = {.lex_state = 39, .external_lex_state = 2}, - [4581] = {.lex_state = 39, .external_lex_state = 2}, + [4576] = {.lex_state = 39, .external_lex_state = 7}, + [4577] = {.lex_state = 39, .external_lex_state = 8}, + [4578] = {.lex_state = 39, .external_lex_state = 7}, + [4579] = {.lex_state = 39, .external_lex_state = 7}, + [4580] = {.lex_state = 39, .external_lex_state = 7}, + [4581] = {.lex_state = 39, .external_lex_state = 7}, [4582] = {.lex_state = 39, .external_lex_state = 2}, - [4583] = {.lex_state = 39, .external_lex_state = 2}, - [4584] = {.lex_state = 39, .external_lex_state = 2}, - [4585] = {.lex_state = 39, .external_lex_state = 2}, - [4586] = {.lex_state = 39, .external_lex_state = 2}, - [4587] = {.lex_state = 39, .external_lex_state = 2}, + [4583] = {.lex_state = 39, .external_lex_state = 7}, + [4584] = {.lex_state = 39, .external_lex_state = 9}, + [4585] = {.lex_state = 39, .external_lex_state = 7}, + [4586] = {.lex_state = 39, .external_lex_state = 8}, + [4587] = {.lex_state = 39, .external_lex_state = 8}, [4588] = {.lex_state = 39, .external_lex_state = 2}, - [4589] = {.lex_state = 39, .external_lex_state = 2}, - [4590] = {.lex_state = 39, .external_lex_state = 2}, - [4591] = {.lex_state = 39, .external_lex_state = 2}, - [4592] = {.lex_state = 39, .external_lex_state = 2}, - [4593] = {.lex_state = 39, .external_lex_state = 2}, - [4594] = {.lex_state = 39, .external_lex_state = 2}, + [4589] = {.lex_state = 39, .external_lex_state = 9}, + [4590] = {.lex_state = 39, .external_lex_state = 9}, + [4591] = {.lex_state = 39, .external_lex_state = 8}, + [4592] = {.lex_state = 39, .external_lex_state = 7}, + [4593] = {.lex_state = 39, .external_lex_state = 9}, + [4594] = {.lex_state = 39, .external_lex_state = 8}, [4595] = {.lex_state = 39, .external_lex_state = 2}, - [4596] = {.lex_state = 39, .external_lex_state = 2}, - [4597] = {.lex_state = 39, .external_lex_state = 2}, - [4598] = {.lex_state = 39, .external_lex_state = 2}, - [4599] = {.lex_state = 39, .external_lex_state = 2}, + [4596] = {.lex_state = 39, .external_lex_state = 7}, + [4597] = {.lex_state = 39, .external_lex_state = 7}, + [4598] = {.lex_state = 39, .external_lex_state = 8}, + [4599] = {.lex_state = 39, .external_lex_state = 7}, [4600] = {.lex_state = 39, .external_lex_state = 2}, - [4601] = {.lex_state = 39, .external_lex_state = 2}, - [4602] = {.lex_state = 39, .external_lex_state = 2}, - [4603] = {.lex_state = 39, .external_lex_state = 2}, - [4604] = {.lex_state = 39, .external_lex_state = 2}, + [4601] = {.lex_state = 39, .external_lex_state = 9}, + [4602] = {.lex_state = 39, .external_lex_state = 7}, + [4603] = {.lex_state = 39, .external_lex_state = 8}, + [4604] = {.lex_state = 39, .external_lex_state = 8}, [4605] = {.lex_state = 39, .external_lex_state = 2}, - [4606] = {.lex_state = 39, .external_lex_state = 2}, + [4606] = {.lex_state = 39, .external_lex_state = 9}, [4607] = {.lex_state = 39, .external_lex_state = 2}, [4608] = {.lex_state = 39, .external_lex_state = 2}, [4609] = {.lex_state = 39, .external_lex_state = 2}, @@ -15784,7 +15941,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4636] = {.lex_state = 39, .external_lex_state = 2}, [4637] = {.lex_state = 39, .external_lex_state = 2}, [4638] = {.lex_state = 39, .external_lex_state = 2}, - [4639] = {.lex_state = 39, .external_lex_state = 2}, + [4639] = {.lex_state = 39, .external_lex_state = 11}, [4640] = {.lex_state = 39, .external_lex_state = 2}, [4641] = {.lex_state = 39, .external_lex_state = 2}, [4642] = {.lex_state = 39, .external_lex_state = 2}, @@ -15824,1734 +15981,1875 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4676] = {.lex_state = 39, .external_lex_state = 2}, [4677] = {.lex_state = 39, .external_lex_state = 2}, [4678] = {.lex_state = 39, .external_lex_state = 2}, - [4679] = {.lex_state = 39, .external_lex_state = 12}, - [4680] = {.lex_state = 39, .external_lex_state = 12}, - [4681] = {.lex_state = 39, .external_lex_state = 12}, - [4682] = {.lex_state = 39, .external_lex_state = 12}, - [4683] = {.lex_state = 39, .external_lex_state = 11}, - [4684] = {.lex_state = 39, .external_lex_state = 11}, - [4685] = {.lex_state = 39, .external_lex_state = 11}, - [4686] = {.lex_state = 39, .external_lex_state = 11}, - [4687] = {.lex_state = 39, .external_lex_state = 13}, - [4688] = {.lex_state = 39, .external_lex_state = 13}, - [4689] = {.lex_state = 39, .external_lex_state = 13}, - [4690] = {.lex_state = 39, .external_lex_state = 13}, - [4691] = {.lex_state = 39, .external_lex_state = 11}, - [4692] = {.lex_state = 39, .external_lex_state = 11}, - [4693] = {.lex_state = 3, .external_lex_state = 12}, - [4694] = {.lex_state = 3, .external_lex_state = 12}, - [4695] = {.lex_state = 39, .external_lex_state = 11}, - [4696] = {.lex_state = 3, .external_lex_state = 12}, - [4697] = {.lex_state = 39, .external_lex_state = 11}, - [4698] = {.lex_state = 3, .external_lex_state = 12}, - [4699] = {.lex_state = 39, .external_lex_state = 10}, - [4700] = {.lex_state = 3, .external_lex_state = 7}, - [4701] = {.lex_state = 39, .external_lex_state = 14}, - [4702] = {.lex_state = 39, .external_lex_state = 14}, - [4703] = {.lex_state = 39, .external_lex_state = 14}, - [4704] = {.lex_state = 39, .external_lex_state = 10}, - [4705] = {.lex_state = 39, .external_lex_state = 14}, - [4706] = {.lex_state = 39, .external_lex_state = 10}, - [4707] = {.lex_state = 3, .external_lex_state = 7}, - [4708] = {.lex_state = 39, .external_lex_state = 10}, - [4709] = {.lex_state = 3, .external_lex_state = 7}, - [4710] = {.lex_state = 3, .external_lex_state = 7}, - [4711] = {.lex_state = 39, .external_lex_state = 7}, - [4712] = {.lex_state = 39, .external_lex_state = 7}, - [4713] = {.lex_state = 39, .external_lex_state = 7}, - [4714] = {.lex_state = 39, .external_lex_state = 7}, - [4715] = {.lex_state = 39, .external_lex_state = 7}, - [4716] = {.lex_state = 39, .external_lex_state = 7}, - [4717] = {.lex_state = 39, .external_lex_state = 7}, - [4718] = {.lex_state = 39, .external_lex_state = 7}, - [4719] = {.lex_state = 39, .external_lex_state = 7}, - [4720] = {.lex_state = 39, .external_lex_state = 7}, - [4721] = {.lex_state = 39, .external_lex_state = 7}, - [4722] = {.lex_state = 39, .external_lex_state = 7}, - [4723] = {.lex_state = 39, .external_lex_state = 7}, - [4724] = {.lex_state = 39, .external_lex_state = 7}, - [4725] = {.lex_state = 3, .external_lex_state = 7}, - [4726] = {.lex_state = 39, .external_lex_state = 7}, - [4727] = {.lex_state = 39, .external_lex_state = 7}, - [4728] = {.lex_state = 39, .external_lex_state = 7}, - [4729] = {.lex_state = 39, .external_lex_state = 7}, - [4730] = {.lex_state = 39, .external_lex_state = 11}, - [4731] = {.lex_state = 39, .external_lex_state = 11}, - [4732] = {.lex_state = 39, .external_lex_state = 11}, - [4733] = {.lex_state = 39, .external_lex_state = 11}, - [4734] = {.lex_state = 3, .external_lex_state = 2}, - [4735] = {.lex_state = 39, .external_lex_state = 7}, - [4736] = {.lex_state = 39, .external_lex_state = 7}, - [4737] = {.lex_state = 39, .external_lex_state = 7}, + [4679] = {.lex_state = 39, .external_lex_state = 2}, + [4680] = {.lex_state = 39, .external_lex_state = 2}, + [4681] = {.lex_state = 39, .external_lex_state = 2}, + [4682] = {.lex_state = 39, .external_lex_state = 2}, + [4683] = {.lex_state = 39, .external_lex_state = 2}, + [4684] = {.lex_state = 39, .external_lex_state = 2}, + [4685] = {.lex_state = 39, .external_lex_state = 2}, + [4686] = {.lex_state = 39, .external_lex_state = 2}, + [4687] = {.lex_state = 39, .external_lex_state = 2}, + [4688] = {.lex_state = 39, .external_lex_state = 2}, + [4689] = {.lex_state = 39, .external_lex_state = 2}, + [4690] = {.lex_state = 39, .external_lex_state = 2}, + [4691] = {.lex_state = 39, .external_lex_state = 2}, + [4692] = {.lex_state = 39, .external_lex_state = 2}, + [4693] = {.lex_state = 39, .external_lex_state = 2}, + [4694] = {.lex_state = 39, .external_lex_state = 2}, + [4695] = {.lex_state = 39, .external_lex_state = 2}, + [4696] = {.lex_state = 39, .external_lex_state = 2}, + [4697] = {.lex_state = 39, .external_lex_state = 2}, + [4698] = {.lex_state = 39, .external_lex_state = 2}, + [4699] = {.lex_state = 39, .external_lex_state = 2}, + [4700] = {.lex_state = 39, .external_lex_state = 2}, + [4701] = {.lex_state = 39, .external_lex_state = 2}, + [4702] = {.lex_state = 39, .external_lex_state = 2}, + [4703] = {.lex_state = 39, .external_lex_state = 2}, + [4704] = {.lex_state = 39, .external_lex_state = 2}, + [4705] = {.lex_state = 39, .external_lex_state = 2}, + [4706] = {.lex_state = 39, .external_lex_state = 2}, + [4707] = {.lex_state = 39, .external_lex_state = 2}, + [4708] = {.lex_state = 39, .external_lex_state = 2}, + [4709] = {.lex_state = 39, .external_lex_state = 2}, + [4710] = {.lex_state = 39, .external_lex_state = 2}, + [4711] = {.lex_state = 39, .external_lex_state = 2}, + [4712] = {.lex_state = 39, .external_lex_state = 2}, + [4713] = {.lex_state = 39, .external_lex_state = 2}, + [4714] = {.lex_state = 39, .external_lex_state = 2}, + [4715] = {.lex_state = 39, .external_lex_state = 2}, + [4716] = {.lex_state = 39, .external_lex_state = 2}, + [4717] = {.lex_state = 39, .external_lex_state = 2}, + [4718] = {.lex_state = 39, .external_lex_state = 2}, + [4719] = {.lex_state = 39, .external_lex_state = 2}, + [4720] = {.lex_state = 39, .external_lex_state = 2}, + [4721] = {.lex_state = 39, .external_lex_state = 2}, + [4722] = {.lex_state = 39, .external_lex_state = 2}, + [4723] = {.lex_state = 39, .external_lex_state = 2}, + [4724] = {.lex_state = 39, .external_lex_state = 2}, + [4725] = {.lex_state = 39, .external_lex_state = 2}, + [4726] = {.lex_state = 39, .external_lex_state = 2}, + [4727] = {.lex_state = 39, .external_lex_state = 2}, + [4728] = {.lex_state = 39, .external_lex_state = 2}, + [4729] = {.lex_state = 39, .external_lex_state = 2}, + [4730] = {.lex_state = 39, .external_lex_state = 2}, + [4731] = {.lex_state = 39, .external_lex_state = 2}, + [4732] = {.lex_state = 39, .external_lex_state = 2}, + [4733] = {.lex_state = 39, .external_lex_state = 2}, + [4734] = {.lex_state = 39, .external_lex_state = 2}, + [4735] = {.lex_state = 39, .external_lex_state = 2}, + [4736] = {.lex_state = 39, .external_lex_state = 2}, + [4737] = {.lex_state = 39, .external_lex_state = 2}, [4738] = {.lex_state = 39, .external_lex_state = 2}, [4739] = {.lex_state = 39, .external_lex_state = 2}, - [4740] = {.lex_state = 39, .external_lex_state = 10}, - [4741] = {.lex_state = 39, .external_lex_state = 13}, - [4742] = {.lex_state = 39, .external_lex_state = 12}, - [4743] = {.lex_state = 39, .external_lex_state = 12}, - [4744] = {.lex_state = 39, .external_lex_state = 13}, - [4745] = {.lex_state = 39, .external_lex_state = 13}, - [4746] = {.lex_state = 39, .external_lex_state = 12}, - [4747] = {.lex_state = 39, .external_lex_state = 13}, - [4748] = {.lex_state = 39, .external_lex_state = 12}, - [4749] = {.lex_state = 39, .external_lex_state = 13}, - [4750] = {.lex_state = 39, .external_lex_state = 13}, - [4751] = {.lex_state = 39, .external_lex_state = 11}, - [4752] = {.lex_state = 39, .external_lex_state = 13}, - [4753] = {.lex_state = 39, .external_lex_state = 12}, - [4754] = {.lex_state = 39, .external_lex_state = 12}, - [4755] = {.lex_state = 39, .external_lex_state = 13}, - [4756] = {.lex_state = 39, .external_lex_state = 13}, - [4757] = {.lex_state = 39, .external_lex_state = 12}, - [4758] = {.lex_state = 39, .external_lex_state = 13}, - [4759] = {.lex_state = 39, .external_lex_state = 11}, - [4760] = {.lex_state = 39, .external_lex_state = 13}, - [4761] = {.lex_state = 39, .external_lex_state = 12}, - [4762] = {.lex_state = 39, .external_lex_state = 13}, - [4763] = {.lex_state = 39, .external_lex_state = 12}, - [4764] = {.lex_state = 39, .external_lex_state = 13}, - [4765] = {.lex_state = 39, .external_lex_state = 13}, - [4766] = {.lex_state = 39, .external_lex_state = 13}, - [4767] = {.lex_state = 39, .external_lex_state = 13}, - [4768] = {.lex_state = 39, .external_lex_state = 13}, - [4769] = {.lex_state = 39, .external_lex_state = 12}, - [4770] = {.lex_state = 39, .external_lex_state = 11}, - [4771] = {.lex_state = 39, .external_lex_state = 11}, - [4772] = {.lex_state = 39, .external_lex_state = 11}, - [4773] = {.lex_state = 39, .external_lex_state = 11}, + [4740] = {.lex_state = 39, .external_lex_state = 2}, + [4741] = {.lex_state = 39, .external_lex_state = 2}, + [4742] = {.lex_state = 39, .external_lex_state = 2}, + [4743] = {.lex_state = 39, .external_lex_state = 2}, + [4744] = {.lex_state = 39, .external_lex_state = 2}, + [4745] = {.lex_state = 39, .external_lex_state = 2}, + [4746] = {.lex_state = 39, .external_lex_state = 2}, + [4747] = {.lex_state = 39, .external_lex_state = 2}, + [4748] = {.lex_state = 39, .external_lex_state = 2}, + [4749] = {.lex_state = 39, .external_lex_state = 2}, + [4750] = {.lex_state = 39, .external_lex_state = 2}, + [4751] = {.lex_state = 39, .external_lex_state = 2}, + [4752] = {.lex_state = 39, .external_lex_state = 2}, + [4753] = {.lex_state = 39, .external_lex_state = 2}, + [4754] = {.lex_state = 39, .external_lex_state = 2}, + [4755] = {.lex_state = 39, .external_lex_state = 2}, + [4756] = {.lex_state = 39, .external_lex_state = 2}, + [4757] = {.lex_state = 39, .external_lex_state = 2}, + [4758] = {.lex_state = 39, .external_lex_state = 2}, + [4759] = {.lex_state = 39, .external_lex_state = 2}, + [4760] = {.lex_state = 39, .external_lex_state = 2}, + [4761] = {.lex_state = 39, .external_lex_state = 2}, + [4762] = {.lex_state = 39, .external_lex_state = 2}, + [4763] = {.lex_state = 39, .external_lex_state = 2}, + [4764] = {.lex_state = 39, .external_lex_state = 2}, + [4765] = {.lex_state = 39, .external_lex_state = 2}, + [4766] = {.lex_state = 39, .external_lex_state = 2}, + [4767] = {.lex_state = 39, .external_lex_state = 2}, + [4768] = {.lex_state = 39, .external_lex_state = 2}, + [4769] = {.lex_state = 39, .external_lex_state = 2}, + [4770] = {.lex_state = 39, .external_lex_state = 2}, + [4771] = {.lex_state = 39, .external_lex_state = 2}, + [4772] = {.lex_state = 39, .external_lex_state = 2}, + [4773] = {.lex_state = 39, .external_lex_state = 2}, [4774] = {.lex_state = 39, .external_lex_state = 11}, - [4775] = {.lex_state = 39, .external_lex_state = 11}, + [4775] = {.lex_state = 39, .external_lex_state = 12}, [4776] = {.lex_state = 39, .external_lex_state = 11}, [4777] = {.lex_state = 39, .external_lex_state = 11}, [4778] = {.lex_state = 39, .external_lex_state = 11}, - [4779] = {.lex_state = 39, .external_lex_state = 11}, + [4779] = {.lex_state = 39, .external_lex_state = 12}, [4780] = {.lex_state = 39, .external_lex_state = 12}, - [4781] = {.lex_state = 39, .external_lex_state = 13}, + [4781] = {.lex_state = 39, .external_lex_state = 12}, [4782] = {.lex_state = 39, .external_lex_state = 13}, [4783] = {.lex_state = 39, .external_lex_state = 13}, [4784] = {.lex_state = 39, .external_lex_state = 13}, [4785] = {.lex_state = 39, .external_lex_state = 13}, - [4786] = {.lex_state = 39, .external_lex_state = 13}, - [4787] = {.lex_state = 39, .external_lex_state = 13}, - [4788] = {.lex_state = 39, .external_lex_state = 13}, - [4789] = {.lex_state = 39, .external_lex_state = 13}, - [4790] = {.lex_state = 39, .external_lex_state = 13}, - [4791] = {.lex_state = 39, .external_lex_state = 13}, - [4792] = {.lex_state = 39, .external_lex_state = 12}, - [4793] = {.lex_state = 39, .external_lex_state = 12}, - [4794] = {.lex_state = 39, .external_lex_state = 13}, - [4795] = {.lex_state = 39, .external_lex_state = 12}, - [4796] = {.lex_state = 39, .external_lex_state = 13}, - [4797] = {.lex_state = 39, .external_lex_state = 12}, - [4798] = {.lex_state = 39, .external_lex_state = 13}, - [4799] = {.lex_state = 39, .external_lex_state = 11}, - [4800] = {.lex_state = 39, .external_lex_state = 12}, - [4801] = {.lex_state = 39, .external_lex_state = 12}, - [4802] = {.lex_state = 39, .external_lex_state = 12}, - [4803] = {.lex_state = 39, .external_lex_state = 12}, - [4804] = {.lex_state = 39, .external_lex_state = 13}, - [4805] = {.lex_state = 39, .external_lex_state = 12}, - [4806] = {.lex_state = 39, .external_lex_state = 12}, - [4807] = {.lex_state = 39, .external_lex_state = 2}, - [4808] = {.lex_state = 39, .external_lex_state = 12}, - [4809] = {.lex_state = 39, .external_lex_state = 13}, - [4810] = {.lex_state = 39, .external_lex_state = 13}, - [4811] = {.lex_state = 39, .external_lex_state = 12}, - [4812] = {.lex_state = 39, .external_lex_state = 13}, - [4813] = {.lex_state = 39, .external_lex_state = 13}, - [4814] = {.lex_state = 39, .external_lex_state = 12}, - [4815] = {.lex_state = 39, .external_lex_state = 12}, - [4816] = {.lex_state = 39, .external_lex_state = 13}, - [4817] = {.lex_state = 39, .external_lex_state = 11}, - [4818] = {.lex_state = 39, .external_lex_state = 13}, - [4819] = {.lex_state = 39, .external_lex_state = 13}, - [4820] = {.lex_state = 39, .external_lex_state = 12}, - [4821] = {.lex_state = 39, .external_lex_state = 13}, - [4822] = {.lex_state = 39, .external_lex_state = 12}, - [4823] = {.lex_state = 39, .external_lex_state = 13}, - [4824] = {.lex_state = 39, .external_lex_state = 13}, - [4825] = {.lex_state = 39, .external_lex_state = 13}, - [4826] = {.lex_state = 39, .external_lex_state = 13}, - [4827] = {.lex_state = 39, .external_lex_state = 2}, + [4786] = {.lex_state = 3, .external_lex_state = 12}, + [4787] = {.lex_state = 3, .external_lex_state = 12}, + [4788] = {.lex_state = 3, .external_lex_state = 12}, + [4789] = {.lex_state = 3, .external_lex_state = 12}, + [4790] = {.lex_state = 39, .external_lex_state = 11}, + [4791] = {.lex_state = 39, .external_lex_state = 11}, + [4792] = {.lex_state = 39, .external_lex_state = 11}, + [4793] = {.lex_state = 39, .external_lex_state = 11}, + [4794] = {.lex_state = 39, .external_lex_state = 10}, + [4795] = {.lex_state = 3, .external_lex_state = 7}, + [4796] = {.lex_state = 39, .external_lex_state = 14}, + [4797] = {.lex_state = 39, .external_lex_state = 10}, + [4798] = {.lex_state = 39, .external_lex_state = 14}, + [4799] = {.lex_state = 3, .external_lex_state = 7}, + [4800] = {.lex_state = 3, .external_lex_state = 7}, + [4801] = {.lex_state = 39, .external_lex_state = 14}, + [4802] = {.lex_state = 39, .external_lex_state = 14}, + [4803] = {.lex_state = 39, .external_lex_state = 10}, + [4804] = {.lex_state = 39, .external_lex_state = 10}, + [4805] = {.lex_state = 39, .external_lex_state = 7}, + [4806] = {.lex_state = 3, .external_lex_state = 7}, + [4807] = {.lex_state = 39, .external_lex_state = 7}, + [4808] = {.lex_state = 39, .external_lex_state = 7}, + [4809] = {.lex_state = 39, .external_lex_state = 7}, + [4810] = {.lex_state = 39, .external_lex_state = 7}, + [4811] = {.lex_state = 3, .external_lex_state = 7}, + [4812] = {.lex_state = 39, .external_lex_state = 7}, + [4813] = {.lex_state = 39, .external_lex_state = 7}, + [4814] = {.lex_state = 39, .external_lex_state = 7}, + [4815] = {.lex_state = 39, .external_lex_state = 7}, + [4816] = {.lex_state = 39, .external_lex_state = 7}, + [4817] = {.lex_state = 39, .external_lex_state = 7}, + [4818] = {.lex_state = 39, .external_lex_state = 7}, + [4819] = {.lex_state = 39, .external_lex_state = 7}, + [4820] = {.lex_state = 39, .external_lex_state = 7}, + [4821] = {.lex_state = 39, .external_lex_state = 7}, + [4822] = {.lex_state = 39, .external_lex_state = 7}, + [4823] = {.lex_state = 39, .external_lex_state = 7}, + [4824] = {.lex_state = 39, .external_lex_state = 11}, + [4825] = {.lex_state = 39, .external_lex_state = 7}, + [4826] = {.lex_state = 39, .external_lex_state = 7}, + [4827] = {.lex_state = 39, .external_lex_state = 7}, [4828] = {.lex_state = 39, .external_lex_state = 11}, - [4829] = {.lex_state = 3, .external_lex_state = 12}, - [4830] = {.lex_state = 39, .external_lex_state = 14}, - [4831] = {.lex_state = 39, .external_lex_state = 2}, - [4832] = {.lex_state = 39, .external_lex_state = 14}, + [4829] = {.lex_state = 39, .external_lex_state = 11}, + [4830] = {.lex_state = 3, .external_lex_state = 2}, + [4831] = {.lex_state = 39, .external_lex_state = 11}, + [4832] = {.lex_state = 39, .external_lex_state = 7}, [4833] = {.lex_state = 39, .external_lex_state = 2}, - [4834] = {.lex_state = 39, .external_lex_state = 14}, - [4835] = {.lex_state = 39, .external_lex_state = 2}, - [4836] = {.lex_state = 3, .external_lex_state = 12}, - [4837] = {.lex_state = 39, .external_lex_state = 2}, - [4838] = {.lex_state = 39, .external_lex_state = 2}, - [4839] = {.lex_state = 39, .external_lex_state = 2}, - [4840] = {.lex_state = 3, .external_lex_state = 12}, - [4841] = {.lex_state = 39, .external_lex_state = 14}, + [4834] = {.lex_state = 39, .external_lex_state = 2}, + [4835] = {.lex_state = 39, .external_lex_state = 10}, + [4836] = {.lex_state = 39, .external_lex_state = 12}, + [4837] = {.lex_state = 39, .external_lex_state = 13}, + [4838] = {.lex_state = 39, .external_lex_state = 13}, + [4839] = {.lex_state = 39, .external_lex_state = 11}, + [4840] = {.lex_state = 39, .external_lex_state = 13}, + [4841] = {.lex_state = 39, .external_lex_state = 13}, [4842] = {.lex_state = 39, .external_lex_state = 11}, - [4843] = {.lex_state = 39, .external_lex_state = 14}, - [4844] = {.lex_state = 39, .external_lex_state = 12}, - [4845] = {.lex_state = 39, .external_lex_state = 2}, - [4846] = {.lex_state = 39, .external_lex_state = 2}, - [4847] = {.lex_state = 3, .external_lex_state = 12}, - [4848] = {.lex_state = 39, .external_lex_state = 12}, - [4849] = {.lex_state = 39, .external_lex_state = 2}, - [4850] = {.lex_state = 39, .external_lex_state = 2}, - [4851] = {.lex_state = 3, .external_lex_state = 12}, - [4852] = {.lex_state = 39, .external_lex_state = 14}, - [4853] = {.lex_state = 39, .external_lex_state = 14}, - [4854] = {.lex_state = 39, .external_lex_state = 2}, - [4855] = {.lex_state = 39, .external_lex_state = 11}, - [4856] = {.lex_state = 39, .external_lex_state = 14}, - [4857] = {.lex_state = 39, .external_lex_state = 13}, - [4858] = {.lex_state = 39, .external_lex_state = 2}, - [4859] = {.lex_state = 39, .external_lex_state = 11}, - [4860] = {.lex_state = 39, .external_lex_state = 14}, - [4861] = {.lex_state = 39, .external_lex_state = 14}, - [4862] = {.lex_state = 39, .external_lex_state = 2}, - [4863] = {.lex_state = 39, .external_lex_state = 11}, - [4864] = {.lex_state = 39, .external_lex_state = 11}, - [4865] = {.lex_state = 39, .external_lex_state = 2}, - [4866] = {.lex_state = 39, .external_lex_state = 11}, - [4867] = {.lex_state = 3, .external_lex_state = 12}, - [4868] = {.lex_state = 39, .external_lex_state = 2}, - [4869] = {.lex_state = 39, .external_lex_state = 2}, - [4870] = {.lex_state = 39, .external_lex_state = 2}, - [4871] = {.lex_state = 3, .external_lex_state = 12}, - [4872] = {.lex_state = 39, .external_lex_state = 11}, - [4873] = {.lex_state = 39, .external_lex_state = 11}, - [4874] = {.lex_state = 39, .external_lex_state = 11}, - [4875] = {.lex_state = 39, .external_lex_state = 11}, - [4876] = {.lex_state = 39, .external_lex_state = 2}, - [4877] = {.lex_state = 39, .external_lex_state = 2}, - [4878] = {.lex_state = 39, .external_lex_state = 14}, - [4879] = {.lex_state = 39, .external_lex_state = 14}, - [4880] = {.lex_state = 39, .external_lex_state = 2}, - [4881] = {.lex_state = 39, .external_lex_state = 2}, - [4882] = {.lex_state = 3, .external_lex_state = 12}, - [4883] = {.lex_state = 39, .external_lex_state = 2}, - [4884] = {.lex_state = 39, .external_lex_state = 2}, - [4885] = {.lex_state = 3, .external_lex_state = 12}, - [4886] = {.lex_state = 39, .external_lex_state = 14}, - [4887] = {.lex_state = 39, .external_lex_state = 14}, - [4888] = {.lex_state = 39, .external_lex_state = 14}, - [4889] = {.lex_state = 39, .external_lex_state = 11}, - [4890] = {.lex_state = 39, .external_lex_state = 2}, - [4891] = {.lex_state = 39, .external_lex_state = 11}, - [4892] = {.lex_state = 3, .external_lex_state = 12}, - [4893] = {.lex_state = 39, .external_lex_state = 2}, - [4894] = {.lex_state = 39, .external_lex_state = 2}, - [4895] = {.lex_state = 39, .external_lex_state = 2}, - [4896] = {.lex_state = 39, .external_lex_state = 2}, - [4897] = {.lex_state = 39, .external_lex_state = 13}, - [4898] = {.lex_state = 39, .external_lex_state = 14}, - [4899] = {.lex_state = 39, .external_lex_state = 2}, - [4900] = {.lex_state = 3, .external_lex_state = 12}, - [4901] = {.lex_state = 39, .external_lex_state = 2}, - [4902] = {.lex_state = 3, .external_lex_state = 12}, - [4903] = {.lex_state = 39, .external_lex_state = 2}, - [4904] = {.lex_state = 39, .external_lex_state = 13}, - [4905] = {.lex_state = 39, .external_lex_state = 14}, - [4906] = {.lex_state = 39, .external_lex_state = 11}, + [4843] = {.lex_state = 39, .external_lex_state = 11}, + [4844] = {.lex_state = 39, .external_lex_state = 11}, + [4845] = {.lex_state = 39, .external_lex_state = 11}, + [4846] = {.lex_state = 39, .external_lex_state = 11}, + [4847] = {.lex_state = 39, .external_lex_state = 13}, + [4848] = {.lex_state = 39, .external_lex_state = 11}, + [4849] = {.lex_state = 39, .external_lex_state = 11}, + [4850] = {.lex_state = 39, .external_lex_state = 11}, + [4851] = {.lex_state = 39, .external_lex_state = 11}, + [4852] = {.lex_state = 39, .external_lex_state = 13}, + [4853] = {.lex_state = 39, .external_lex_state = 13}, + [4854] = {.lex_state = 39, .external_lex_state = 13}, + [4855] = {.lex_state = 39, .external_lex_state = 13}, + [4856] = {.lex_state = 39, .external_lex_state = 12}, + [4857] = {.lex_state = 39, .external_lex_state = 12}, + [4858] = {.lex_state = 39, .external_lex_state = 12}, + [4859] = {.lex_state = 39, .external_lex_state = 12}, + [4860] = {.lex_state = 39, .external_lex_state = 12}, + [4861] = {.lex_state = 39, .external_lex_state = 13}, + [4862] = {.lex_state = 39, .external_lex_state = 12}, + [4863] = {.lex_state = 39, .external_lex_state = 13}, + [4864] = {.lex_state = 39, .external_lex_state = 13}, + [4865] = {.lex_state = 39, .external_lex_state = 12}, + [4866] = {.lex_state = 39, .external_lex_state = 13}, + [4867] = {.lex_state = 39, .external_lex_state = 13}, + [4868] = {.lex_state = 39, .external_lex_state = 13}, + [4869] = {.lex_state = 39, .external_lex_state = 12}, + [4870] = {.lex_state = 39, .external_lex_state = 13}, + [4871] = {.lex_state = 39, .external_lex_state = 13}, + [4872] = {.lex_state = 39, .external_lex_state = 13}, + [4873] = {.lex_state = 39, .external_lex_state = 12}, + [4874] = {.lex_state = 39, .external_lex_state = 13}, + [4875] = {.lex_state = 39, .external_lex_state = 13}, + [4876] = {.lex_state = 39, .external_lex_state = 12}, + [4877] = {.lex_state = 39, .external_lex_state = 13}, + [4878] = {.lex_state = 39, .external_lex_state = 13}, + [4879] = {.lex_state = 39, .external_lex_state = 13}, + [4880] = {.lex_state = 39, .external_lex_state = 12}, + [4881] = {.lex_state = 39, .external_lex_state = 12}, + [4882] = {.lex_state = 39, .external_lex_state = 12}, + [4883] = {.lex_state = 39, .external_lex_state = 12}, + [4884] = {.lex_state = 39, .external_lex_state = 11}, + [4885] = {.lex_state = 39, .external_lex_state = 11}, + [4886] = {.lex_state = 39, .external_lex_state = 13}, + [4887] = {.lex_state = 39, .external_lex_state = 12}, + [4888] = {.lex_state = 39, .external_lex_state = 13}, + [4889] = {.lex_state = 39, .external_lex_state = 12}, + [4890] = {.lex_state = 39, .external_lex_state = 13}, + [4891] = {.lex_state = 39, .external_lex_state = 13}, + [4892] = {.lex_state = 39, .external_lex_state = 13}, + [4893] = {.lex_state = 39, .external_lex_state = 12}, + [4894] = {.lex_state = 39, .external_lex_state = 12}, + [4895] = {.lex_state = 39, .external_lex_state = 13}, + [4896] = {.lex_state = 39, .external_lex_state = 13}, + [4897] = {.lex_state = 39, .external_lex_state = 2}, + [4898] = {.lex_state = 39, .external_lex_state = 12}, + [4899] = {.lex_state = 39, .external_lex_state = 12}, + [4900] = {.lex_state = 39, .external_lex_state = 13}, + [4901] = {.lex_state = 39, .external_lex_state = 13}, + [4902] = {.lex_state = 39, .external_lex_state = 13}, + [4903] = {.lex_state = 39, .external_lex_state = 11}, + [4904] = {.lex_state = 39, .external_lex_state = 12}, + [4905] = {.lex_state = 39, .external_lex_state = 12}, + [4906] = {.lex_state = 39, .external_lex_state = 13}, [4907] = {.lex_state = 39, .external_lex_state = 13}, - [4908] = {.lex_state = 39, .external_lex_state = 2}, - [4909] = {.lex_state = 39, .external_lex_state = 2}, - [4910] = {.lex_state = 39, .external_lex_state = 14}, - [4911] = {.lex_state = 39, .external_lex_state = 2}, - [4912] = {.lex_state = 39, .external_lex_state = 10}, - [4913] = {.lex_state = 39, .external_lex_state = 2}, - [4914] = {.lex_state = 39, .external_lex_state = 10}, - [4915] = {.lex_state = 39, .external_lex_state = 2}, - [4916] = {.lex_state = 39, .external_lex_state = 14}, - [4917] = {.lex_state = 39, .external_lex_state = 10}, - [4918] = {.lex_state = 39, .external_lex_state = 10}, - [4919] = {.lex_state = 39, .external_lex_state = 11}, - [4920] = {.lex_state = 39, .external_lex_state = 2}, - [4921] = {.lex_state = 39, .external_lex_state = 2}, - [4922] = {.lex_state = 39, .external_lex_state = 11}, - [4923] = {.lex_state = 39, .external_lex_state = 2}, + [4908] = {.lex_state = 39, .external_lex_state = 13}, + [4909] = {.lex_state = 39, .external_lex_state = 13}, + [4910] = {.lex_state = 39, .external_lex_state = 12}, + [4911] = {.lex_state = 39, .external_lex_state = 13}, + [4912] = {.lex_state = 39, .external_lex_state = 12}, + [4913] = {.lex_state = 39, .external_lex_state = 13}, + [4914] = {.lex_state = 39, .external_lex_state = 12}, + [4915] = {.lex_state = 39, .external_lex_state = 13}, + [4916] = {.lex_state = 39, .external_lex_state = 13}, + [4917] = {.lex_state = 39, .external_lex_state = 13}, + [4918] = {.lex_state = 39, .external_lex_state = 13}, + [4919] = {.lex_state = 3, .external_lex_state = 12}, + [4920] = {.lex_state = 39, .external_lex_state = 11}, + [4921] = {.lex_state = 39, .external_lex_state = 14}, + [4922] = {.lex_state = 3, .external_lex_state = 12}, + [4923] = {.lex_state = 3, .external_lex_state = 12}, [4924] = {.lex_state = 39, .external_lex_state = 2}, [4925] = {.lex_state = 39, .external_lex_state = 2}, - [4926] = {.lex_state = 39, .external_lex_state = 14}, - [4927] = {.lex_state = 39, .external_lex_state = 2}, - [4928] = {.lex_state = 39, .external_lex_state = 2}, + [4926] = {.lex_state = 3, .external_lex_state = 12}, + [4927] = {.lex_state = 39, .external_lex_state = 11}, + [4928] = {.lex_state = 39, .external_lex_state = 13}, [4929] = {.lex_state = 39, .external_lex_state = 2}, [4930] = {.lex_state = 39, .external_lex_state = 2}, - [4931] = {.lex_state = 39, .external_lex_state = 2}, - [4932] = {.lex_state = 39, .external_lex_state = 2}, - [4933] = {.lex_state = 39, .external_lex_state = 13}, + [4931] = {.lex_state = 39, .external_lex_state = 14}, + [4932] = {.lex_state = 39, .external_lex_state = 14}, + [4933] = {.lex_state = 39, .external_lex_state = 14}, [4934] = {.lex_state = 39, .external_lex_state = 2}, - [4935] = {.lex_state = 39, .external_lex_state = 14}, + [4935] = {.lex_state = 39, .external_lex_state = 11}, [4936] = {.lex_state = 39, .external_lex_state = 2}, - [4937] = {.lex_state = 39, .external_lex_state = 14}, - [4938] = {.lex_state = 39, .external_lex_state = 2}, - [4939] = {.lex_state = 39, .external_lex_state = 2}, - [4940] = {.lex_state = 39, .external_lex_state = 2}, - [4941] = {.lex_state = 39, .external_lex_state = 10}, - [4942] = {.lex_state = 39, .external_lex_state = 10}, + [4937] = {.lex_state = 39, .external_lex_state = 2}, + [4938] = {.lex_state = 3, .external_lex_state = 12}, + [4939] = {.lex_state = 39, .external_lex_state = 13}, + [4940] = {.lex_state = 3, .external_lex_state = 12}, + [4941] = {.lex_state = 39, .external_lex_state = 2}, + [4942] = {.lex_state = 3, .external_lex_state = 12}, [4943] = {.lex_state = 39, .external_lex_state = 2}, - [4944] = {.lex_state = 39, .external_lex_state = 2}, - [4945] = {.lex_state = 39, .external_lex_state = 2}, - [4946] = {.lex_state = 39, .external_lex_state = 2}, - [4947] = {.lex_state = 39, .external_lex_state = 2}, - [4948] = {.lex_state = 39, .external_lex_state = 2}, - [4949] = {.lex_state = 39, .external_lex_state = 13}, - [4950] = {.lex_state = 39, .external_lex_state = 2}, - [4951] = {.lex_state = 39, .external_lex_state = 13}, - [4952] = {.lex_state = 39, .external_lex_state = 14}, - [4953] = {.lex_state = 39, .external_lex_state = 2}, + [4944] = {.lex_state = 3, .external_lex_state = 12}, + [4945] = {.lex_state = 39, .external_lex_state = 13}, + [4946] = {.lex_state = 39, .external_lex_state = 11}, + [4947] = {.lex_state = 3, .external_lex_state = 12}, + [4948] = {.lex_state = 39, .external_lex_state = 11}, + [4949] = {.lex_state = 39, .external_lex_state = 2}, + [4950] = {.lex_state = 39, .external_lex_state = 14}, + [4951] = {.lex_state = 39, .external_lex_state = 11}, + [4952] = {.lex_state = 39, .external_lex_state = 13}, + [4953] = {.lex_state = 39, .external_lex_state = 14}, [4954] = {.lex_state = 39, .external_lex_state = 2}, - [4955] = {.lex_state = 39, .external_lex_state = 12}, + [4955] = {.lex_state = 39, .external_lex_state = 14}, [4956] = {.lex_state = 39, .external_lex_state = 2}, - [4957] = {.lex_state = 39, .external_lex_state = 14}, + [4957] = {.lex_state = 39, .external_lex_state = 11}, [4958] = {.lex_state = 39, .external_lex_state = 2}, - [4959] = {.lex_state = 39, .external_lex_state = 2}, - [4960] = {.lex_state = 39, .external_lex_state = 10}, + [4959] = {.lex_state = 39, .external_lex_state = 14}, + [4960] = {.lex_state = 39, .external_lex_state = 2}, [4961] = {.lex_state = 39, .external_lex_state = 2}, [4962] = {.lex_state = 39, .external_lex_state = 2}, [4963] = {.lex_state = 39, .external_lex_state = 2}, - [4964] = {.lex_state = 39, .external_lex_state = 2}, - [4965] = {.lex_state = 39, .external_lex_state = 12}, - [4966] = {.lex_state = 39, .external_lex_state = 10}, - [4967] = {.lex_state = 39, .external_lex_state = 14}, + [4964] = {.lex_state = 39, .external_lex_state = 14}, + [4965] = {.lex_state = 39, .external_lex_state = 14}, + [4966] = {.lex_state = 39, .external_lex_state = 2}, + [4967] = {.lex_state = 39, .external_lex_state = 12}, [4968] = {.lex_state = 39, .external_lex_state = 2}, - [4969] = {.lex_state = 39, .external_lex_state = 11}, - [4970] = {.lex_state = 39, .external_lex_state = 14}, - [4971] = {.lex_state = 39, .external_lex_state = 13}, - [4972] = {.lex_state = 39, .external_lex_state = 2}, - [4973] = {.lex_state = 39, .external_lex_state = 10}, - [4974] = {.lex_state = 39, .external_lex_state = 13}, - [4975] = {.lex_state = 39, .external_lex_state = 2}, - [4976] = {.lex_state = 39, .external_lex_state = 2}, - [4977] = {.lex_state = 39, .external_lex_state = 10}, + [4969] = {.lex_state = 39, .external_lex_state = 2}, + [4970] = {.lex_state = 39, .external_lex_state = 2}, + [4971] = {.lex_state = 39, .external_lex_state = 14}, + [4972] = {.lex_state = 39, .external_lex_state = 14}, + [4973] = {.lex_state = 39, .external_lex_state = 2}, + [4974] = {.lex_state = 39, .external_lex_state = 2}, + [4975] = {.lex_state = 39, .external_lex_state = 11}, + [4976] = {.lex_state = 39, .external_lex_state = 11}, + [4977] = {.lex_state = 39, .external_lex_state = 11}, [4978] = {.lex_state = 39, .external_lex_state = 2}, - [4979] = {.lex_state = 39, .external_lex_state = 13}, - [4980] = {.lex_state = 39, .external_lex_state = 10}, - [4981] = {.lex_state = 39, .external_lex_state = 10}, - [4982] = {.lex_state = 39, .external_lex_state = 14}, - [4983] = {.lex_state = 39, .external_lex_state = 14}, - [4984] = {.lex_state = 39, .external_lex_state = 2}, - [4985] = {.lex_state = 39, .external_lex_state = 2}, - [4986] = {.lex_state = 39, .external_lex_state = 10}, - [4987] = {.lex_state = 39, .external_lex_state = 14}, - [4988] = {.lex_state = 39, .external_lex_state = 10}, + [4979] = {.lex_state = 39, .external_lex_state = 2}, + [4980] = {.lex_state = 39, .external_lex_state = 11}, + [4981] = {.lex_state = 39, .external_lex_state = 2}, + [4982] = {.lex_state = 39, .external_lex_state = 11}, + [4983] = {.lex_state = 39, .external_lex_state = 11}, + [4984] = {.lex_state = 39, .external_lex_state = 11}, + [4985] = {.lex_state = 39, .external_lex_state = 11}, + [4986] = {.lex_state = 39, .external_lex_state = 2}, + [4987] = {.lex_state = 3, .external_lex_state = 12}, + [4988] = {.lex_state = 39, .external_lex_state = 2}, [4989] = {.lex_state = 39, .external_lex_state = 2}, - [4990] = {.lex_state = 39, .external_lex_state = 11}, - [4991] = {.lex_state = 39, .external_lex_state = 12}, - [4992] = {.lex_state = 39, .external_lex_state = 12}, - [4993] = {.lex_state = 39, .external_lex_state = 12}, - [4994] = {.lex_state = 39, .external_lex_state = 13}, - [4995] = {.lex_state = 39, .external_lex_state = 11}, - [4996] = {.lex_state = 39, .external_lex_state = 12}, + [4990] = {.lex_state = 39, .external_lex_state = 2}, + [4991] = {.lex_state = 39, .external_lex_state = 14}, + [4992] = {.lex_state = 3, .external_lex_state = 12}, + [4993] = {.lex_state = 39, .external_lex_state = 14}, + [4994] = {.lex_state = 39, .external_lex_state = 12}, + [4995] = {.lex_state = 39, .external_lex_state = 2}, + [4996] = {.lex_state = 39, .external_lex_state = 11}, [4997] = {.lex_state = 39, .external_lex_state = 14}, - [4998] = {.lex_state = 39, .external_lex_state = 12}, - [4999] = {.lex_state = 39, .external_lex_state = 11}, - [5000] = {.lex_state = 39, .external_lex_state = 11}, - [5001] = {.lex_state = 39, .external_lex_state = 12}, - [5002] = {.lex_state = 39, .external_lex_state = 14}, - [5003] = {.lex_state = 39, .external_lex_state = 11}, - [5004] = {.lex_state = 39, .external_lex_state = 14}, + [4998] = {.lex_state = 39, .external_lex_state = 14}, + [4999] = {.lex_state = 39, .external_lex_state = 14}, + [5000] = {.lex_state = 39, .external_lex_state = 2}, + [5001] = {.lex_state = 39, .external_lex_state = 2}, + [5002] = {.lex_state = 39, .external_lex_state = 2}, + [5003] = {.lex_state = 39, .external_lex_state = 2}, + [5004] = {.lex_state = 39, .external_lex_state = 2}, [5005] = {.lex_state = 39, .external_lex_state = 10}, - [5006] = {.lex_state = 39, .external_lex_state = 12}, - [5007] = {.lex_state = 39, .external_lex_state = 14}, - [5008] = {.lex_state = 39, .external_lex_state = 13}, - [5009] = {.lex_state = 39, .external_lex_state = 11}, - [5010] = {.lex_state = 39, .external_lex_state = 12}, - [5011] = {.lex_state = 39, .external_lex_state = 12}, - [5012] = {.lex_state = 39, .external_lex_state = 11}, - [5013] = {.lex_state = 39, .external_lex_state = 14}, - [5014] = {.lex_state = 39, .external_lex_state = 11}, - [5015] = {.lex_state = 39, .external_lex_state = 12}, - [5016] = {.lex_state = 39, .external_lex_state = 12}, - [5017] = {.lex_state = 39, .external_lex_state = 12}, - [5018] = {.lex_state = 39, .external_lex_state = 11}, - [5019] = {.lex_state = 39, .external_lex_state = 12}, - [5020] = {.lex_state = 39, .external_lex_state = 12}, - [5021] = {.lex_state = 39, .external_lex_state = 11}, - [5022] = {.lex_state = 39, .external_lex_state = 12}, - [5023] = {.lex_state = 39, .external_lex_state = 12}, - [5024] = {.lex_state = 39, .external_lex_state = 12}, - [5025] = {.lex_state = 39, .external_lex_state = 12}, - [5026] = {.lex_state = 39, .external_lex_state = 11}, - [5027] = {.lex_state = 39, .external_lex_state = 14}, - [5028] = {.lex_state = 39, .external_lex_state = 12}, - [5029] = {.lex_state = 39, .external_lex_state = 12}, - [5030] = {.lex_state = 39, .external_lex_state = 12}, - [5031] = {.lex_state = 39, .external_lex_state = 12}, - [5032] = {.lex_state = 39, .external_lex_state = 13}, - [5033] = {.lex_state = 39, .external_lex_state = 12}, - [5034] = {.lex_state = 39, .external_lex_state = 13}, - [5035] = {.lex_state = 39, .external_lex_state = 11}, - [5036] = {.lex_state = 39, .external_lex_state = 10}, - [5037] = {.lex_state = 39, .external_lex_state = 14}, - [5038] = {.lex_state = 39, .external_lex_state = 11}, - [5039] = {.lex_state = 39, .external_lex_state = 12}, - [5040] = {.lex_state = 39, .external_lex_state = 11}, - [5041] = {.lex_state = 39, .external_lex_state = 11}, - [5042] = {.lex_state = 39, .external_lex_state = 12}, - [5043] = {.lex_state = 39, .external_lex_state = 12}, - [5044] = {.lex_state = 39, .external_lex_state = 11}, - [5045] = {.lex_state = 39, .external_lex_state = 12}, - [5046] = {.lex_state = 39, .external_lex_state = 12}, - [5047] = {.lex_state = 39, .external_lex_state = 11}, - [5048] = {.lex_state = 39, .external_lex_state = 12}, - [5049] = {.lex_state = 39, .external_lex_state = 12}, - [5050] = {.lex_state = 39, .external_lex_state = 12}, - [5051] = {.lex_state = 39, .external_lex_state = 11}, - [5052] = {.lex_state = 39, .external_lex_state = 10}, - [5053] = {.lex_state = 39, .external_lex_state = 11}, - [5054] = {.lex_state = 39, .external_lex_state = 13}, - [5055] = {.lex_state = 39, .external_lex_state = 13}, - [5056] = {.lex_state = 39, .external_lex_state = 11}, - [5057] = {.lex_state = 39, .external_lex_state = 10}, - [5058] = {.lex_state = 39, .external_lex_state = 11}, - [5059] = {.lex_state = 39, .external_lex_state = 11}, - [5060] = {.lex_state = 39, .external_lex_state = 12}, - [5061] = {.lex_state = 39, .external_lex_state = 12}, - [5062] = {.lex_state = 39, .external_lex_state = 12}, - [5063] = {.lex_state = 39, .external_lex_state = 11}, - [5064] = {.lex_state = 39, .external_lex_state = 12}, - [5065] = {.lex_state = 39, .external_lex_state = 11}, + [5006] = {.lex_state = 39, .external_lex_state = 13}, + [5007] = {.lex_state = 39, .external_lex_state = 10}, + [5008] = {.lex_state = 39, .external_lex_state = 14}, + [5009] = {.lex_state = 39, .external_lex_state = 12}, + [5010] = {.lex_state = 39, .external_lex_state = 10}, + [5011] = {.lex_state = 39, .external_lex_state = 2}, + [5012] = {.lex_state = 39, .external_lex_state = 2}, + [5013] = {.lex_state = 39, .external_lex_state = 2}, + [5014] = {.lex_state = 39, .external_lex_state = 2}, + [5015] = {.lex_state = 39, .external_lex_state = 2}, + [5016] = {.lex_state = 39, .external_lex_state = 2}, + [5017] = {.lex_state = 39, .external_lex_state = 2}, + [5018] = {.lex_state = 39, .external_lex_state = 13}, + [5019] = {.lex_state = 39, .external_lex_state = 10}, + [5020] = {.lex_state = 39, .external_lex_state = 10}, + [5021] = {.lex_state = 39, .external_lex_state = 10}, + [5022] = {.lex_state = 39, .external_lex_state = 2}, + [5023] = {.lex_state = 39, .external_lex_state = 2}, + [5024] = {.lex_state = 39, .external_lex_state = 2}, + [5025] = {.lex_state = 39, .external_lex_state = 2}, + [5026] = {.lex_state = 39, .external_lex_state = 14}, + [5027] = {.lex_state = 39, .external_lex_state = 2}, + [5028] = {.lex_state = 39, .external_lex_state = 2}, + [5029] = {.lex_state = 39, .external_lex_state = 10}, + [5030] = {.lex_state = 39, .external_lex_state = 2}, + [5031] = {.lex_state = 39, .external_lex_state = 13}, + [5032] = {.lex_state = 39, .external_lex_state = 2}, + [5033] = {.lex_state = 39, .external_lex_state = 2}, + [5034] = {.lex_state = 39, .external_lex_state = 2}, + [5035] = {.lex_state = 39, .external_lex_state = 14}, + [5036] = {.lex_state = 39, .external_lex_state = 2}, + [5037] = {.lex_state = 39, .external_lex_state = 2}, + [5038] = {.lex_state = 39, .external_lex_state = 13}, + [5039] = {.lex_state = 39, .external_lex_state = 2}, + [5040] = {.lex_state = 39, .external_lex_state = 10}, + [5041] = {.lex_state = 39, .external_lex_state = 2}, + [5042] = {.lex_state = 39, .external_lex_state = 2}, + [5043] = {.lex_state = 39, .external_lex_state = 2}, + [5044] = {.lex_state = 39, .external_lex_state = 2}, + [5045] = {.lex_state = 39, .external_lex_state = 14}, + [5046] = {.lex_state = 39, .external_lex_state = 2}, + [5047] = {.lex_state = 39, .external_lex_state = 2}, + [5048] = {.lex_state = 39, .external_lex_state = 2}, + [5049] = {.lex_state = 39, .external_lex_state = 14}, + [5050] = {.lex_state = 39, .external_lex_state = 11}, + [5051] = {.lex_state = 39, .external_lex_state = 2}, + [5052] = {.lex_state = 39, .external_lex_state = 13}, + [5053] = {.lex_state = 39, .external_lex_state = 10}, + [5054] = {.lex_state = 39, .external_lex_state = 2}, + [5055] = {.lex_state = 39, .external_lex_state = 14}, + [5056] = {.lex_state = 39, .external_lex_state = 10}, + [5057] = {.lex_state = 39, .external_lex_state = 12}, + [5058] = {.lex_state = 39, .external_lex_state = 2}, + [5059] = {.lex_state = 39, .external_lex_state = 2}, + [5060] = {.lex_state = 39, .external_lex_state = 10}, + [5061] = {.lex_state = 39, .external_lex_state = 2}, + [5062] = {.lex_state = 39, .external_lex_state = 2}, + [5063] = {.lex_state = 39, .external_lex_state = 2}, + [5064] = {.lex_state = 39, .external_lex_state = 2}, + [5065] = {.lex_state = 39, .external_lex_state = 2}, [5066] = {.lex_state = 39, .external_lex_state = 14}, - [5067] = {.lex_state = 39, .external_lex_state = 11}, - [5068] = {.lex_state = 39, .external_lex_state = 11}, - [5069] = {.lex_state = 39, .external_lex_state = 11}, + [5067] = {.lex_state = 39, .external_lex_state = 10}, + [5068] = {.lex_state = 39, .external_lex_state = 14}, + [5069] = {.lex_state = 39, .external_lex_state = 2}, [5070] = {.lex_state = 39, .external_lex_state = 14}, - [5071] = {.lex_state = 39, .external_lex_state = 11}, - [5072] = {.lex_state = 39, .external_lex_state = 11}, - [5073] = {.lex_state = 39, .external_lex_state = 13}, - [5074] = {.lex_state = 39, .external_lex_state = 13}, - [5075] = {.lex_state = 39, .external_lex_state = 11}, + [5071] = {.lex_state = 39, .external_lex_state = 13}, + [5072] = {.lex_state = 39, .external_lex_state = 10}, + [5073] = {.lex_state = 39, .external_lex_state = 2}, + [5074] = {.lex_state = 39, .external_lex_state = 2}, + [5075] = {.lex_state = 39, .external_lex_state = 2}, [5076] = {.lex_state = 39, .external_lex_state = 14}, - [5077] = {.lex_state = 39, .external_lex_state = 12}, - [5078] = {.lex_state = 39, .external_lex_state = 12}, - [5079] = {.lex_state = 39, .external_lex_state = 11}, + [5077] = {.lex_state = 39, .external_lex_state = 14}, + [5078] = {.lex_state = 39, .external_lex_state = 2}, + [5079] = {.lex_state = 39, .external_lex_state = 12}, [5080] = {.lex_state = 39, .external_lex_state = 12}, - [5081] = {.lex_state = 39, .external_lex_state = 12}, - [5082] = {.lex_state = 39, .external_lex_state = 11}, - [5083] = {.lex_state = 39, .external_lex_state = 11}, - [5084] = {.lex_state = 39, .external_lex_state = 11}, - [5085] = {.lex_state = 39, .external_lex_state = 10}, - [5086] = {.lex_state = 39, .external_lex_state = 13}, + [5081] = {.lex_state = 39, .external_lex_state = 13}, + [5082] = {.lex_state = 39, .external_lex_state = 12}, + [5083] = {.lex_state = 39, .external_lex_state = 12}, + [5084] = {.lex_state = 39, .external_lex_state = 12}, + [5085] = {.lex_state = 39, .external_lex_state = 12}, + [5086] = {.lex_state = 39, .external_lex_state = 14}, [5087] = {.lex_state = 39, .external_lex_state = 11}, [5088] = {.lex_state = 39, .external_lex_state = 11}, - [5089] = {.lex_state = 39, .external_lex_state = 11}, - [5090] = {.lex_state = 39, .external_lex_state = 10}, - [5091] = {.lex_state = 39, .external_lex_state = 13}, - [5092] = {.lex_state = 39, .external_lex_state = 11}, - [5093] = {.lex_state = 39, .external_lex_state = 14}, - [5094] = {.lex_state = 39, .external_lex_state = 13}, + [5089] = {.lex_state = 39, .external_lex_state = 13}, + [5090] = {.lex_state = 39, .external_lex_state = 12}, + [5091] = {.lex_state = 39, .external_lex_state = 11}, + [5092] = {.lex_state = 39, .external_lex_state = 13}, + [5093] = {.lex_state = 39, .external_lex_state = 10}, + [5094] = {.lex_state = 39, .external_lex_state = 12}, [5095] = {.lex_state = 39, .external_lex_state = 11}, - [5096] = {.lex_state = 39, .external_lex_state = 11}, - [5097] = {.lex_state = 39, .external_lex_state = 12}, + [5096] = {.lex_state = 39, .external_lex_state = 14}, + [5097] = {.lex_state = 39, .external_lex_state = 14}, [5098] = {.lex_state = 39, .external_lex_state = 12}, [5099] = {.lex_state = 39, .external_lex_state = 11}, - [5100] = {.lex_state = 39, .external_lex_state = 12}, - [5101] = {.lex_state = 39, .external_lex_state = 12}, - [5102] = {.lex_state = 39, .external_lex_state = 12}, - [5103] = {.lex_state = 39, .external_lex_state = 12}, - [5104] = {.lex_state = 39, .external_lex_state = 11}, + [5100] = {.lex_state = 39, .external_lex_state = 11}, + [5101] = {.lex_state = 39, .external_lex_state = 13}, + [5102] = {.lex_state = 39, .external_lex_state = 11}, + [5103] = {.lex_state = 39, .external_lex_state = 13}, + [5104] = {.lex_state = 39, .external_lex_state = 12}, [5105] = {.lex_state = 39, .external_lex_state = 12}, [5106] = {.lex_state = 39, .external_lex_state = 12}, - [5107] = {.lex_state = 39, .external_lex_state = 11}, - [5108] = {.lex_state = 39, .external_lex_state = 11}, + [5107] = {.lex_state = 39, .external_lex_state = 12}, + [5108] = {.lex_state = 39, .external_lex_state = 13}, [5109] = {.lex_state = 39, .external_lex_state = 12}, - [5110] = {.lex_state = 39, .external_lex_state = 13}, + [5110] = {.lex_state = 39, .external_lex_state = 12}, [5111] = {.lex_state = 39, .external_lex_state = 12}, - [5112] = {.lex_state = 39, .external_lex_state = 10}, - [5113] = {.lex_state = 39, .external_lex_state = 11}, - [5114] = {.lex_state = 39, .external_lex_state = 14}, - [5115] = {.lex_state = 39, .external_lex_state = 11}, - [5116] = {.lex_state = 39, .external_lex_state = 11}, - [5117] = {.lex_state = 39, .external_lex_state = 12}, + [5112] = {.lex_state = 39, .external_lex_state = 12}, + [5113] = {.lex_state = 39, .external_lex_state = 14}, + [5114] = {.lex_state = 39, .external_lex_state = 11}, + [5115] = {.lex_state = 39, .external_lex_state = 12}, + [5116] = {.lex_state = 39, .external_lex_state = 12}, + [5117] = {.lex_state = 39, .external_lex_state = 11}, [5118] = {.lex_state = 39, .external_lex_state = 12}, - [5119] = {.lex_state = 39, .external_lex_state = 13}, - [5120] = {.lex_state = 39, .external_lex_state = 13}, - [5121] = {.lex_state = 39, .external_lex_state = 11}, - [5122] = {.lex_state = 39, .external_lex_state = 11}, - [5123] = {.lex_state = 39, .external_lex_state = 11}, - [5124] = {.lex_state = 39, .external_lex_state = 14}, - [5125] = {.lex_state = 39, .external_lex_state = 14}, - [5126] = {.lex_state = 39, .external_lex_state = 12}, - [5127] = {.lex_state = 39, .external_lex_state = 11}, + [5119] = {.lex_state = 39, .external_lex_state = 11}, + [5120] = {.lex_state = 39, .external_lex_state = 12}, + [5121] = {.lex_state = 39, .external_lex_state = 14}, + [5122] = {.lex_state = 39, .external_lex_state = 12}, + [5123] = {.lex_state = 39, .external_lex_state = 12}, + [5124] = {.lex_state = 39, .external_lex_state = 12}, + [5125] = {.lex_state = 39, .external_lex_state = 11}, + [5126] = {.lex_state = 39, .external_lex_state = 10}, + [5127] = {.lex_state = 39, .external_lex_state = 14}, [5128] = {.lex_state = 39, .external_lex_state = 12}, [5129] = {.lex_state = 39, .external_lex_state = 14}, - [5130] = {.lex_state = 39, .external_lex_state = 11}, - [5131] = {.lex_state = 39, .external_lex_state = 12}, + [5130] = {.lex_state = 39, .external_lex_state = 10}, + [5131] = {.lex_state = 39, .external_lex_state = 13}, [5132] = {.lex_state = 39, .external_lex_state = 13}, - [5133] = {.lex_state = 39, .external_lex_state = 12}, + [5133] = {.lex_state = 39, .external_lex_state = 13}, [5134] = {.lex_state = 39, .external_lex_state = 12}, - [5135] = {.lex_state = 39, .external_lex_state = 12}, - [5136] = {.lex_state = 39, .external_lex_state = 11}, - [5137] = {.lex_state = 39, .external_lex_state = 12}, + [5135] = {.lex_state = 39, .external_lex_state = 10}, + [5136] = {.lex_state = 39, .external_lex_state = 14}, + [5137] = {.lex_state = 39, .external_lex_state = 11}, [5138] = {.lex_state = 39, .external_lex_state = 12}, - [5139] = {.lex_state = 39, .external_lex_state = 12}, - [5140] = {.lex_state = 39, .external_lex_state = 12}, + [5139] = {.lex_state = 39, .external_lex_state = 11}, + [5140] = {.lex_state = 39, .external_lex_state = 11}, [5141] = {.lex_state = 39, .external_lex_state = 12}, - [5142] = {.lex_state = 39, .external_lex_state = 10}, - [5143] = {.lex_state = 39, .external_lex_state = 12}, - [5144] = {.lex_state = 39, .external_lex_state = 11}, + [5142] = {.lex_state = 39, .external_lex_state = 12}, + [5143] = {.lex_state = 39, .external_lex_state = 10}, + [5144] = {.lex_state = 39, .external_lex_state = 13}, [5145] = {.lex_state = 39, .external_lex_state = 11}, - [5146] = {.lex_state = 39, .external_lex_state = 14}, + [5146] = {.lex_state = 39, .external_lex_state = 11}, [5147] = {.lex_state = 39, .external_lex_state = 12}, [5148] = {.lex_state = 39, .external_lex_state = 12}, - [5149] = {.lex_state = 39, .external_lex_state = 10}, - [5150] = {.lex_state = 39, .external_lex_state = 11}, + [5149] = {.lex_state = 39, .external_lex_state = 12}, + [5150] = {.lex_state = 39, .external_lex_state = 12}, [5151] = {.lex_state = 39, .external_lex_state = 12}, - [5152] = {.lex_state = 39, .external_lex_state = 12}, - [5153] = {.lex_state = 39, .external_lex_state = 14}, - [5154] = {.lex_state = 39, .external_lex_state = 13}, - [5155] = {.lex_state = 39, .external_lex_state = 13}, + [5152] = {.lex_state = 39, .external_lex_state = 11}, + [5153] = {.lex_state = 39, .external_lex_state = 12}, + [5154] = {.lex_state = 39, .external_lex_state = 10}, + [5155] = {.lex_state = 39, .external_lex_state = 12}, [5156] = {.lex_state = 39, .external_lex_state = 12}, - [5157] = {.lex_state = 39, .external_lex_state = 11}, + [5157] = {.lex_state = 39, .external_lex_state = 14}, [5158] = {.lex_state = 39, .external_lex_state = 11}, - [5159] = {.lex_state = 39, .external_lex_state = 10}, - [5160] = {.lex_state = 39, .external_lex_state = 11}, - [5161] = {.lex_state = 39, .external_lex_state = 11}, + [5159] = {.lex_state = 39, .external_lex_state = 12}, + [5160] = {.lex_state = 39, .external_lex_state = 12}, + [5161] = {.lex_state = 39, .external_lex_state = 14}, [5162] = {.lex_state = 39, .external_lex_state = 11}, - [5163] = {.lex_state = 39, .external_lex_state = 11}, + [5163] = {.lex_state = 39, .external_lex_state = 12}, [5164] = {.lex_state = 39, .external_lex_state = 11}, - [5165] = {.lex_state = 39, .external_lex_state = 11}, - [5166] = {.lex_state = 39, .external_lex_state = 11}, - [5167] = {.lex_state = 39, .external_lex_state = 11}, - [5168] = {.lex_state = 39, .external_lex_state = 11}, - [5169] = {.lex_state = 39, .external_lex_state = 11}, - [5170] = {.lex_state = 39, .external_lex_state = 11}, + [5165] = {.lex_state = 39, .external_lex_state = 12}, + [5166] = {.lex_state = 39, .external_lex_state = 13}, + [5167] = {.lex_state = 39, .external_lex_state = 12}, + [5168] = {.lex_state = 39, .external_lex_state = 12}, + [5169] = {.lex_state = 39, .external_lex_state = 12}, + [5170] = {.lex_state = 39, .external_lex_state = 12}, [5171] = {.lex_state = 39, .external_lex_state = 11}, - [5172] = {.lex_state = 39, .external_lex_state = 11}, - [5173] = {.lex_state = 39, .external_lex_state = 11}, + [5172] = {.lex_state = 39, .external_lex_state = 12}, + [5173] = {.lex_state = 39, .external_lex_state = 10}, [5174] = {.lex_state = 39, .external_lex_state = 11}, - [5175] = {.lex_state = 39, .external_lex_state = 11}, - [5176] = {.lex_state = 39, .external_lex_state = 11}, - [5177] = {.lex_state = 39, .external_lex_state = 11}, - [5178] = {.lex_state = 39, .external_lex_state = 11}, + [5175] = {.lex_state = 39, .external_lex_state = 12}, + [5176] = {.lex_state = 39, .external_lex_state = 14}, + [5177] = {.lex_state = 39, .external_lex_state = 12}, + [5178] = {.lex_state = 39, .external_lex_state = 12}, [5179] = {.lex_state = 39, .external_lex_state = 11}, [5180] = {.lex_state = 39, .external_lex_state = 11}, - [5181] = {.lex_state = 39, .external_lex_state = 11}, + [5181] = {.lex_state = 39, .external_lex_state = 12}, [5182] = {.lex_state = 39, .external_lex_state = 11}, - [5183] = {.lex_state = 39, .external_lex_state = 11}, - [5184] = {.lex_state = 39, .external_lex_state = 11}, + [5183] = {.lex_state = 39, .external_lex_state = 12}, + [5184] = {.lex_state = 39, .external_lex_state = 12}, [5185] = {.lex_state = 39, .external_lex_state = 11}, - [5186] = {.lex_state = 39, .external_lex_state = 11}, - [5187] = {.lex_state = 39, .external_lex_state = 11}, - [5188] = {.lex_state = 39, .external_lex_state = 11}, - [5189] = {.lex_state = 39, .external_lex_state = 11}, + [5186] = {.lex_state = 39, .external_lex_state = 12}, + [5187] = {.lex_state = 39, .external_lex_state = 12}, + [5188] = {.lex_state = 39, .external_lex_state = 12}, + [5189] = {.lex_state = 39, .external_lex_state = 10}, [5190] = {.lex_state = 39, .external_lex_state = 11}, [5191] = {.lex_state = 39, .external_lex_state = 11}, [5192] = {.lex_state = 39, .external_lex_state = 11}, - [5193] = {.lex_state = 39, .external_lex_state = 11}, - [5194] = {.lex_state = 39, .external_lex_state = 11}, - [5195] = {.lex_state = 39, .external_lex_state = 11}, + [5193] = {.lex_state = 39, .external_lex_state = 14}, + [5194] = {.lex_state = 39, .external_lex_state = 13}, + [5195] = {.lex_state = 39, .external_lex_state = 14}, [5196] = {.lex_state = 39, .external_lex_state = 11}, - [5197] = {.lex_state = 39, .external_lex_state = 11}, - [5198] = {.lex_state = 39, .external_lex_state = 11}, - [5199] = {.lex_state = 39, .external_lex_state = 11}, - [5200] = {.lex_state = 39, .external_lex_state = 11}, + [5197] = {.lex_state = 39, .external_lex_state = 14}, + [5198] = {.lex_state = 39, .external_lex_state = 10}, + [5199] = {.lex_state = 39, .external_lex_state = 13}, + [5200] = {.lex_state = 39, .external_lex_state = 12}, [5201] = {.lex_state = 39, .external_lex_state = 11}, - [5202] = {.lex_state = 39, .external_lex_state = 11}, + [5202] = {.lex_state = 39, .external_lex_state = 14}, [5203] = {.lex_state = 39, .external_lex_state = 11}, [5204] = {.lex_state = 39, .external_lex_state = 11}, [5205] = {.lex_state = 39, .external_lex_state = 11}, - [5206] = {.lex_state = 39, .external_lex_state = 11}, - [5207] = {.lex_state = 39, .external_lex_state = 11}, + [5206] = {.lex_state = 39, .external_lex_state = 12}, + [5207] = {.lex_state = 39, .external_lex_state = 12}, [5208] = {.lex_state = 39, .external_lex_state = 11}, - [5209] = {.lex_state = 39, .external_lex_state = 11}, + [5209] = {.lex_state = 39, .external_lex_state = 13}, [5210] = {.lex_state = 39, .external_lex_state = 11}, - [5211] = {.lex_state = 39, .external_lex_state = 11}, - [5212] = {.lex_state = 39, .external_lex_state = 11}, - [5213] = {.lex_state = 22, .external_lex_state = 15}, - [5214] = {.lex_state = 22, .external_lex_state = 15}, - [5215] = {.lex_state = 22, .external_lex_state = 15}, - [5216] = {.lex_state = 22, .external_lex_state = 15}, - [5217] = {.lex_state = 22, .external_lex_state = 15}, - [5218] = {.lex_state = 22, .external_lex_state = 15}, - [5219] = {.lex_state = 22, .external_lex_state = 15}, - [5220] = {.lex_state = 22, .external_lex_state = 15}, - [5221] = {.lex_state = 22, .external_lex_state = 15}, - [5222] = {.lex_state = 22, .external_lex_state = 15}, - [5223] = {.lex_state = 22, .external_lex_state = 15}, - [5224] = {.lex_state = 22, .external_lex_state = 15}, - [5225] = {.lex_state = 22, .external_lex_state = 15}, - [5226] = {.lex_state = 22, .external_lex_state = 15}, - [5227] = {.lex_state = 22, .external_lex_state = 15}, - [5228] = {.lex_state = 22, .external_lex_state = 15}, - [5229] = {.lex_state = 22, .external_lex_state = 15}, - [5230] = {.lex_state = 22, .external_lex_state = 15}, - [5231] = {.lex_state = 21, .external_lex_state = 11}, - [5232] = {.lex_state = 22, .external_lex_state = 15}, - [5233] = {.lex_state = 22, .external_lex_state = 15}, - [5234] = {.lex_state = 22, .external_lex_state = 15}, - [5235] = {.lex_state = 22, .external_lex_state = 15}, - [5236] = {.lex_state = 22, .external_lex_state = 15}, - [5237] = {.lex_state = 22, .external_lex_state = 15}, - [5238] = {.lex_state = 22, .external_lex_state = 15}, - [5239] = {.lex_state = 22, .external_lex_state = 15}, - [5240] = {.lex_state = 22, .external_lex_state = 15}, - [5241] = {.lex_state = 22, .external_lex_state = 15}, - [5242] = {.lex_state = 22, .external_lex_state = 15}, - [5243] = {.lex_state = 22, .external_lex_state = 15}, - [5244] = {.lex_state = 22, .external_lex_state = 15}, - [5245] = {.lex_state = 21, .external_lex_state = 11}, - [5246] = {.lex_state = 22, .external_lex_state = 15}, - [5247] = {.lex_state = 22, .external_lex_state = 15}, - [5248] = {.lex_state = 22, .external_lex_state = 15}, - [5249] = {.lex_state = 22, .external_lex_state = 15}, + [5211] = {.lex_state = 39, .external_lex_state = 12}, + [5212] = {.lex_state = 39, .external_lex_state = 10}, + [5213] = {.lex_state = 39, .external_lex_state = 10}, + [5214] = {.lex_state = 39, .external_lex_state = 11}, + [5215] = {.lex_state = 39, .external_lex_state = 11}, + [5216] = {.lex_state = 39, .external_lex_state = 11}, + [5217] = {.lex_state = 39, .external_lex_state = 11}, + [5218] = {.lex_state = 39, .external_lex_state = 12}, + [5219] = {.lex_state = 39, .external_lex_state = 12}, + [5220] = {.lex_state = 39, .external_lex_state = 11}, + [5221] = {.lex_state = 39, .external_lex_state = 11}, + [5222] = {.lex_state = 39, .external_lex_state = 13}, + [5223] = {.lex_state = 39, .external_lex_state = 11}, + [5224] = {.lex_state = 39, .external_lex_state = 11}, + [5225] = {.lex_state = 39, .external_lex_state = 12}, + [5226] = {.lex_state = 39, .external_lex_state = 13}, + [5227] = {.lex_state = 39, .external_lex_state = 13}, + [5228] = {.lex_state = 39, .external_lex_state = 12}, + [5229] = {.lex_state = 39, .external_lex_state = 11}, + [5230] = {.lex_state = 39, .external_lex_state = 11}, + [5231] = {.lex_state = 39, .external_lex_state = 11}, + [5232] = {.lex_state = 39, .external_lex_state = 11}, + [5233] = {.lex_state = 39, .external_lex_state = 14}, + [5234] = {.lex_state = 39, .external_lex_state = 11}, + [5235] = {.lex_state = 39, .external_lex_state = 12}, + [5236] = {.lex_state = 39, .external_lex_state = 11}, + [5237] = {.lex_state = 39, .external_lex_state = 12}, + [5238] = {.lex_state = 39, .external_lex_state = 11}, + [5239] = {.lex_state = 39, .external_lex_state = 11}, + [5240] = {.lex_state = 39, .external_lex_state = 14}, + [5241] = {.lex_state = 39, .external_lex_state = 11}, + [5242] = {.lex_state = 39, .external_lex_state = 12}, + [5243] = {.lex_state = 39, .external_lex_state = 10}, + [5244] = {.lex_state = 39, .external_lex_state = 11}, + [5245] = {.lex_state = 39, .external_lex_state = 12}, + [5246] = {.lex_state = 39, .external_lex_state = 11}, + [5247] = {.lex_state = 39, .external_lex_state = 12}, + [5248] = {.lex_state = 39, .external_lex_state = 11}, + [5249] = {.lex_state = 39, .external_lex_state = 11}, [5250] = {.lex_state = 39, .external_lex_state = 11}, [5251] = {.lex_state = 39, .external_lex_state = 11}, - [5252] = {.lex_state = 39, .external_lex_state = 10}, + [5252] = {.lex_state = 39, .external_lex_state = 11}, [5253] = {.lex_state = 39, .external_lex_state = 11}, - [5254] = {.lex_state = 21, .external_lex_state = 11}, + [5254] = {.lex_state = 39, .external_lex_state = 11}, [5255] = {.lex_state = 39, .external_lex_state = 11}, - [5256] = {.lex_state = 21, .external_lex_state = 11}, + [5256] = {.lex_state = 39, .external_lex_state = 11}, [5257] = {.lex_state = 39, .external_lex_state = 11}, - [5258] = {.lex_state = 22, .external_lex_state = 15}, + [5258] = {.lex_state = 39, .external_lex_state = 11}, [5259] = {.lex_state = 39, .external_lex_state = 11}, [5260] = {.lex_state = 39, .external_lex_state = 11}, - [5261] = {.lex_state = 39, .external_lex_state = 12}, + [5261] = {.lex_state = 39, .external_lex_state = 11}, [5262] = {.lex_state = 39, .external_lex_state = 11}, [5263] = {.lex_state = 39, .external_lex_state = 11}, - [5264] = {.lex_state = 39, .external_lex_state = 13}, - [5265] = {.lex_state = 39, .external_lex_state = 12}, + [5264] = {.lex_state = 39, .external_lex_state = 10}, + [5265] = {.lex_state = 39, .external_lex_state = 11}, [5266] = {.lex_state = 39, .external_lex_state = 11}, [5267] = {.lex_state = 39, .external_lex_state = 11}, - [5268] = {.lex_state = 39, .external_lex_state = 12}, + [5268] = {.lex_state = 39, .external_lex_state = 11}, [5269] = {.lex_state = 39, .external_lex_state = 11}, - [5270] = {.lex_state = 39, .external_lex_state = 12}, + [5270] = {.lex_state = 39, .external_lex_state = 11}, [5271] = {.lex_state = 39, .external_lex_state = 11}, [5272] = {.lex_state = 39, .external_lex_state = 11}, [5273] = {.lex_state = 39, .external_lex_state = 11}, - [5274] = {.lex_state = 39, .external_lex_state = 12}, + [5274] = {.lex_state = 39, .external_lex_state = 11}, [5275] = {.lex_state = 39, .external_lex_state = 11}, [5276] = {.lex_state = 39, .external_lex_state = 11}, - [5277] = {.lex_state = 39, .external_lex_state = 12}, + [5277] = {.lex_state = 39, .external_lex_state = 11}, [5278] = {.lex_state = 39, .external_lex_state = 11}, [5279] = {.lex_state = 39, .external_lex_state = 11}, [5280] = {.lex_state = 39, .external_lex_state = 11}, [5281] = {.lex_state = 39, .external_lex_state = 11}, [5282] = {.lex_state = 39, .external_lex_state = 11}, [5283] = {.lex_state = 39, .external_lex_state = 11}, - [5284] = {.lex_state = 39, .external_lex_state = 12}, + [5284] = {.lex_state = 39, .external_lex_state = 11}, [5285] = {.lex_state = 39, .external_lex_state = 11}, [5286] = {.lex_state = 39, .external_lex_state = 11}, - [5287] = {.lex_state = 39, .external_lex_state = 11}, - [5288] = {.lex_state = 39, .external_lex_state = 11}, - [5289] = {.lex_state = 39, .external_lex_state = 12}, - [5290] = {.lex_state = 39, .external_lex_state = 12}, - [5291] = {.lex_state = 39, .external_lex_state = 11}, - [5292] = {.lex_state = 39, .external_lex_state = 12}, - [5293] = {.lex_state = 39, .external_lex_state = 11}, - [5294] = {.lex_state = 39, .external_lex_state = 11}, - [5295] = {.lex_state = 39, .external_lex_state = 11}, - [5296] = {.lex_state = 39, .external_lex_state = 11}, - [5297] = {.lex_state = 39, .external_lex_state = 11}, - [5298] = {.lex_state = 39, .external_lex_state = 12}, - [5299] = {.lex_state = 39, .external_lex_state = 11}, - [5300] = {.lex_state = 39, .external_lex_state = 11}, - [5301] = {.lex_state = 39, .external_lex_state = 12}, - [5302] = {.lex_state = 39, .external_lex_state = 14}, - [5303] = {.lex_state = 39, .external_lex_state = 11}, - [5304] = {.lex_state = 39, .external_lex_state = 11}, - [5305] = {.lex_state = 39, .external_lex_state = 12}, - [5306] = {.lex_state = 39, .external_lex_state = 11}, - [5307] = {.lex_state = 39, .external_lex_state = 13}, - [5308] = {.lex_state = 3, .external_lex_state = 12}, - [5309] = {.lex_state = 39, .external_lex_state = 11}, - [5310] = {.lex_state = 39, .external_lex_state = 11}, - [5311] = {.lex_state = 39, .external_lex_state = 11}, - [5312] = {.lex_state = 39, .external_lex_state = 11}, + [5287] = {.lex_state = 22, .external_lex_state = 15}, + [5288] = {.lex_state = 22, .external_lex_state = 15}, + [5289] = {.lex_state = 39, .external_lex_state = 10}, + [5290] = {.lex_state = 39, .external_lex_state = 10}, + [5291] = {.lex_state = 22, .external_lex_state = 15}, + [5292] = {.lex_state = 22, .external_lex_state = 15}, + [5293] = {.lex_state = 22, .external_lex_state = 15}, + [5294] = {.lex_state = 22, .external_lex_state = 15}, + [5295] = {.lex_state = 39, .external_lex_state = 10}, + [5296] = {.lex_state = 39, .external_lex_state = 10}, + [5297] = {.lex_state = 39, .external_lex_state = 10}, + [5298] = {.lex_state = 22, .external_lex_state = 15}, + [5299] = {.lex_state = 22, .external_lex_state = 15}, + [5300] = {.lex_state = 22, .external_lex_state = 15}, + [5301] = {.lex_state = 22, .external_lex_state = 15}, + [5302] = {.lex_state = 39, .external_lex_state = 10}, + [5303] = {.lex_state = 22, .external_lex_state = 15}, + [5304] = {.lex_state = 22, .external_lex_state = 15}, + [5305] = {.lex_state = 39, .external_lex_state = 10}, + [5306] = {.lex_state = 22, .external_lex_state = 15}, + [5307] = {.lex_state = 39, .external_lex_state = 10}, + [5308] = {.lex_state = 22, .external_lex_state = 15}, + [5309] = {.lex_state = 39, .external_lex_state = 10}, + [5310] = {.lex_state = 22, .external_lex_state = 15}, + [5311] = {.lex_state = 39, .external_lex_state = 10}, + [5312] = {.lex_state = 22, .external_lex_state = 15}, [5313] = {.lex_state = 22, .external_lex_state = 15}, - [5314] = {.lex_state = 39, .external_lex_state = 11}, - [5315] = {.lex_state = 3, .external_lex_state = 12}, - [5316] = {.lex_state = 39, .external_lex_state = 12}, - [5317] = {.lex_state = 39, .external_lex_state = 11}, - [5318] = {.lex_state = 39, .external_lex_state = 11}, - [5319] = {.lex_state = 39, .external_lex_state = 14}, - [5320] = {.lex_state = 39, .external_lex_state = 11}, - [5321] = {.lex_state = 39, .external_lex_state = 12}, - [5322] = {.lex_state = 39, .external_lex_state = 13}, - [5323] = {.lex_state = 39, .external_lex_state = 11}, - [5324] = {.lex_state = 39, .external_lex_state = 11}, - [5325] = {.lex_state = 39, .external_lex_state = 12}, - [5326] = {.lex_state = 39, .external_lex_state = 11}, - [5327] = {.lex_state = 39, .external_lex_state = 11}, - [5328] = {.lex_state = 39, .external_lex_state = 11}, - [5329] = {.lex_state = 39, .external_lex_state = 11}, - [5330] = {.lex_state = 39, .external_lex_state = 11}, - [5331] = {.lex_state = 39, .external_lex_state = 11}, - [5332] = {.lex_state = 39, .external_lex_state = 12}, - [5333] = {.lex_state = 39, .external_lex_state = 11}, - [5334] = {.lex_state = 39, .external_lex_state = 11}, - [5335] = {.lex_state = 39, .external_lex_state = 11}, - [5336] = {.lex_state = 39, .external_lex_state = 12}, - [5337] = {.lex_state = 39, .external_lex_state = 11}, - [5338] = {.lex_state = 39, .external_lex_state = 12}, + [5314] = {.lex_state = 22, .external_lex_state = 15}, + [5315] = {.lex_state = 39, .external_lex_state = 10}, + [5316] = {.lex_state = 39, .external_lex_state = 10}, + [5317] = {.lex_state = 22, .external_lex_state = 15}, + [5318] = {.lex_state = 22, .external_lex_state = 15}, + [5319] = {.lex_state = 22, .external_lex_state = 15}, + [5320] = {.lex_state = 22, .external_lex_state = 15}, + [5321] = {.lex_state = 22, .external_lex_state = 15}, + [5322] = {.lex_state = 22, .external_lex_state = 15}, + [5323] = {.lex_state = 22, .external_lex_state = 15}, + [5324] = {.lex_state = 21, .external_lex_state = 11}, + [5325] = {.lex_state = 22, .external_lex_state = 15}, + [5326] = {.lex_state = 39, .external_lex_state = 10}, + [5327] = {.lex_state = 22, .external_lex_state = 15}, + [5328] = {.lex_state = 21, .external_lex_state = 11}, + [5329] = {.lex_state = 22, .external_lex_state = 15}, + [5330] = {.lex_state = 22, .external_lex_state = 15}, + [5331] = {.lex_state = 22, .external_lex_state = 15}, + [5332] = {.lex_state = 22, .external_lex_state = 15}, + [5333] = {.lex_state = 22, .external_lex_state = 15}, + [5334] = {.lex_state = 39, .external_lex_state = 10}, + [5335] = {.lex_state = 22, .external_lex_state = 15}, + [5336] = {.lex_state = 39, .external_lex_state = 10}, + [5337] = {.lex_state = 22, .external_lex_state = 15}, + [5338] = {.lex_state = 22, .external_lex_state = 15}, [5339] = {.lex_state = 39, .external_lex_state = 11}, - [5340] = {.lex_state = 39, .external_lex_state = 11}, - [5341] = {.lex_state = 39, .external_lex_state = 12}, - [5342] = {.lex_state = 39, .external_lex_state = 14}, - [5343] = {.lex_state = 39, .external_lex_state = 14}, - [5344] = {.lex_state = 39, .external_lex_state = 11}, - [5345] = {.lex_state = 39, .external_lex_state = 14}, + [5340] = {.lex_state = 39, .external_lex_state = 10}, + [5341] = {.lex_state = 39, .external_lex_state = 11}, + [5342] = {.lex_state = 39, .external_lex_state = 11}, + [5343] = {.lex_state = 39, .external_lex_state = 11}, + [5344] = {.lex_state = 21, .external_lex_state = 11}, + [5345] = {.lex_state = 21, .external_lex_state = 11}, [5346] = {.lex_state = 39, .external_lex_state = 11}, [5347] = {.lex_state = 39, .external_lex_state = 11}, - [5348] = {.lex_state = 39, .external_lex_state = 14}, - [5349] = {.lex_state = 39, .external_lex_state = 14}, - [5350] = {.lex_state = 39, .external_lex_state = 12}, - [5351] = {.lex_state = 39, .external_lex_state = 14}, - [5352] = {.lex_state = 39, .external_lex_state = 14}, - [5353] = {.lex_state = 39, .external_lex_state = 14}, - [5354] = {.lex_state = 39, .external_lex_state = 14}, - [5355] = {.lex_state = 39, .external_lex_state = 14}, - [5356] = {.lex_state = 39, .external_lex_state = 14}, - [5357] = {.lex_state = 39, .external_lex_state = 14}, - [5358] = {.lex_state = 39, .external_lex_state = 14}, + [5348] = {.lex_state = 39, .external_lex_state = 11}, + [5349] = {.lex_state = 39, .external_lex_state = 11}, + [5350] = {.lex_state = 39, .external_lex_state = 11}, + [5351] = {.lex_state = 39, .external_lex_state = 11}, + [5352] = {.lex_state = 39, .external_lex_state = 11}, + [5353] = {.lex_state = 39, .external_lex_state = 11}, + [5354] = {.lex_state = 39, .external_lex_state = 11}, + [5355] = {.lex_state = 39, .external_lex_state = 12}, + [5356] = {.lex_state = 39, .external_lex_state = 11}, + [5357] = {.lex_state = 39, .external_lex_state = 11}, + [5358] = {.lex_state = 39, .external_lex_state = 11}, [5359] = {.lex_state = 39, .external_lex_state = 11}, [5360] = {.lex_state = 39, .external_lex_state = 11}, - [5361] = {.lex_state = 39, .external_lex_state = 14}, - [5362] = {.lex_state = 39, .external_lex_state = 14}, - [5363] = {.lex_state = 39, .external_lex_state = 14}, - [5364] = {.lex_state = 39, .external_lex_state = 11}, - [5365] = {.lex_state = 39, .external_lex_state = 14}, - [5366] = {.lex_state = 39, .external_lex_state = 14}, - [5367] = {.lex_state = 39, .external_lex_state = 13}, - [5368] = {.lex_state = 39, .external_lex_state = 14}, - [5369] = {.lex_state = 39, .external_lex_state = 13}, - [5370] = {.lex_state = 39, .external_lex_state = 14}, - [5371] = {.lex_state = 39, .external_lex_state = 14}, - [5372] = {.lex_state = 39, .external_lex_state = 12}, - [5373] = {.lex_state = 39, .external_lex_state = 14}, - [5374] = {.lex_state = 39, .external_lex_state = 14}, - [5375] = {.lex_state = 39, .external_lex_state = 14}, - [5376] = {.lex_state = 3, .external_lex_state = 12}, - [5377] = {.lex_state = 39, .external_lex_state = 10}, - [5378] = {.lex_state = 39, .external_lex_state = 10}, - [5379] = {.lex_state = 39, .external_lex_state = 14}, + [5361] = {.lex_state = 39, .external_lex_state = 12}, + [5362] = {.lex_state = 39, .external_lex_state = 12}, + [5363] = {.lex_state = 39, .external_lex_state = 11}, + [5364] = {.lex_state = 39, .external_lex_state = 12}, + [5365] = {.lex_state = 39, .external_lex_state = 13}, + [5366] = {.lex_state = 3, .external_lex_state = 12}, + [5367] = {.lex_state = 39, .external_lex_state = 11}, + [5368] = {.lex_state = 39, .external_lex_state = 11}, + [5369] = {.lex_state = 39, .external_lex_state = 11}, + [5370] = {.lex_state = 39, .external_lex_state = 11}, + [5371] = {.lex_state = 39, .external_lex_state = 11}, + [5372] = {.lex_state = 39, .external_lex_state = 11}, + [5373] = {.lex_state = 39, .external_lex_state = 11}, + [5374] = {.lex_state = 39, .external_lex_state = 12}, + [5375] = {.lex_state = 39, .external_lex_state = 12}, + [5376] = {.lex_state = 39, .external_lex_state = 11}, + [5377] = {.lex_state = 39, .external_lex_state = 11}, + [5378] = {.lex_state = 39, .external_lex_state = 11}, + [5379] = {.lex_state = 39, .external_lex_state = 11}, [5380] = {.lex_state = 39, .external_lex_state = 11}, - [5381] = {.lex_state = 39, .external_lex_state = 14}, - [5382] = {.lex_state = 39, .external_lex_state = 14}, + [5381] = {.lex_state = 39, .external_lex_state = 11}, + [5382] = {.lex_state = 39, .external_lex_state = 12}, [5383] = {.lex_state = 3, .external_lex_state = 12}, - [5384] = {.lex_state = 3, .external_lex_state = 12}, - [5385] = {.lex_state = 3, .external_lex_state = 12}, - [5386] = {.lex_state = 3, .external_lex_state = 12}, - [5387] = {.lex_state = 39, .external_lex_state = 10}, - [5388] = {.lex_state = 39, .external_lex_state = 10}, + [5384] = {.lex_state = 39, .external_lex_state = 11}, + [5385] = {.lex_state = 39, .external_lex_state = 11}, + [5386] = {.lex_state = 39, .external_lex_state = 11}, + [5387] = {.lex_state = 39, .external_lex_state = 12}, + [5388] = {.lex_state = 39, .external_lex_state = 11}, [5389] = {.lex_state = 39, .external_lex_state = 14}, - [5390] = {.lex_state = 39, .external_lex_state = 10}, + [5390] = {.lex_state = 39, .external_lex_state = 12}, [5391] = {.lex_state = 39, .external_lex_state = 11}, [5392] = {.lex_state = 39, .external_lex_state = 11}, - [5393] = {.lex_state = 39, .external_lex_state = 10}, - [5394] = {.lex_state = 3, .external_lex_state = 12}, - [5395] = {.lex_state = 3, .external_lex_state = 12}, - [5396] = {.lex_state = 39, .external_lex_state = 14}, - [5397] = {.lex_state = 3, .external_lex_state = 12}, - [5398] = {.lex_state = 3, .external_lex_state = 12}, + [5393] = {.lex_state = 39, .external_lex_state = 13}, + [5394] = {.lex_state = 39, .external_lex_state = 11}, + [5395] = {.lex_state = 39, .external_lex_state = 11}, + [5396] = {.lex_state = 39, .external_lex_state = 12}, + [5397] = {.lex_state = 39, .external_lex_state = 12}, + [5398] = {.lex_state = 39, .external_lex_state = 12}, [5399] = {.lex_state = 39, .external_lex_state = 14}, - [5400] = {.lex_state = 3, .external_lex_state = 12}, - [5401] = {.lex_state = 3, .external_lex_state = 12}, - [5402] = {.lex_state = 39, .external_lex_state = 14}, - [5403] = {.lex_state = 39, .external_lex_state = 14}, - [5404] = {.lex_state = 39, .external_lex_state = 10}, - [5405] = {.lex_state = 39, .external_lex_state = 10}, - [5406] = {.lex_state = 39, .external_lex_state = 10}, - [5407] = {.lex_state = 39, .external_lex_state = 10}, - [5408] = {.lex_state = 39, .external_lex_state = 14}, - [5409] = {.lex_state = 39, .external_lex_state = 10}, - [5410] = {.lex_state = 39, .external_lex_state = 14}, - [5411] = {.lex_state = 3, .external_lex_state = 12}, - [5412] = {.lex_state = 3, .external_lex_state = 12}, - [5413] = {.lex_state = 3, .external_lex_state = 12}, + [5400] = {.lex_state = 39, .external_lex_state = 12}, + [5401] = {.lex_state = 39, .external_lex_state = 11}, + [5402] = {.lex_state = 39, .external_lex_state = 11}, + [5403] = {.lex_state = 39, .external_lex_state = 11}, + [5404] = {.lex_state = 39, .external_lex_state = 11}, + [5405] = {.lex_state = 39, .external_lex_state = 11}, + [5406] = {.lex_state = 39, .external_lex_state = 12}, + [5407] = {.lex_state = 39, .external_lex_state = 11}, + [5408] = {.lex_state = 39, .external_lex_state = 11}, + [5409] = {.lex_state = 39, .external_lex_state = 12}, + [5410] = {.lex_state = 39, .external_lex_state = 13}, + [5411] = {.lex_state = 39, .external_lex_state = 11}, + [5412] = {.lex_state = 39, .external_lex_state = 12}, + [5413] = {.lex_state = 39, .external_lex_state = 11}, [5414] = {.lex_state = 39, .external_lex_state = 11}, - [5415] = {.lex_state = 39, .external_lex_state = 10}, - [5416] = {.lex_state = 39, .external_lex_state = 10}, - [5417] = {.lex_state = 39, .external_lex_state = 10}, - [5418] = {.lex_state = 39, .external_lex_state = 10}, - [5419] = {.lex_state = 3, .external_lex_state = 12}, - [5420] = {.lex_state = 3, .external_lex_state = 12}, - [5421] = {.lex_state = 3, .external_lex_state = 12}, - [5422] = {.lex_state = 39, .external_lex_state = 10}, - [5423] = {.lex_state = 39, .external_lex_state = 10}, - [5424] = {.lex_state = 3, .external_lex_state = 12}, - [5425] = {.lex_state = 39, .external_lex_state = 10}, - [5426] = {.lex_state = 3, .external_lex_state = 12}, - [5427] = {.lex_state = 39, .external_lex_state = 10}, - [5428] = {.lex_state = 3, .external_lex_state = 12}, - [5429] = {.lex_state = 39, .external_lex_state = 10}, - [5430] = {.lex_state = 39, .external_lex_state = 14}, + [5415] = {.lex_state = 39, .external_lex_state = 11}, + [5416] = {.lex_state = 39, .external_lex_state = 11}, + [5417] = {.lex_state = 39, .external_lex_state = 11}, + [5418] = {.lex_state = 39, .external_lex_state = 11}, + [5419] = {.lex_state = 22, .external_lex_state = 15}, + [5420] = {.lex_state = 39, .external_lex_state = 12}, + [5421] = {.lex_state = 39, .external_lex_state = 11}, + [5422] = {.lex_state = 39, .external_lex_state = 11}, + [5423] = {.lex_state = 39, .external_lex_state = 11}, + [5424] = {.lex_state = 39, .external_lex_state = 12}, + [5425] = {.lex_state = 39, .external_lex_state = 11}, + [5426] = {.lex_state = 39, .external_lex_state = 11}, + [5427] = {.lex_state = 39, .external_lex_state = 11}, + [5428] = {.lex_state = 39, .external_lex_state = 11}, + [5429] = {.lex_state = 39, .external_lex_state = 11}, + [5430] = {.lex_state = 22, .external_lex_state = 15}, [5431] = {.lex_state = 39, .external_lex_state = 12}, [5432] = {.lex_state = 39, .external_lex_state = 12}, - [5433] = {.lex_state = 39, .external_lex_state = 12}, - [5434] = {.lex_state = 39, .external_lex_state = 12}, - [5435] = {.lex_state = 39, .external_lex_state = 12}, - [5436] = {.lex_state = 39, .external_lex_state = 13}, - [5437] = {.lex_state = 39, .external_lex_state = 13}, - [5438] = {.lex_state = 39, .external_lex_state = 14}, - [5439] = {.lex_state = 39, .external_lex_state = 13}, - [5440] = {.lex_state = 39, .external_lex_state = 11}, - [5441] = {.lex_state = 39, .external_lex_state = 12}, - [5442] = {.lex_state = 39, .external_lex_state = 13}, - [5443] = {.lex_state = 39, .external_lex_state = 12}, + [5433] = {.lex_state = 39, .external_lex_state = 11}, + [5434] = {.lex_state = 39, .external_lex_state = 14}, + [5435] = {.lex_state = 39, .external_lex_state = 14}, + [5436] = {.lex_state = 39, .external_lex_state = 14}, + [5437] = {.lex_state = 39, .external_lex_state = 14}, + [5438] = {.lex_state = 39, .external_lex_state = 11}, + [5439] = {.lex_state = 39, .external_lex_state = 14}, + [5440] = {.lex_state = 39, .external_lex_state = 12}, + [5441] = {.lex_state = 39, .external_lex_state = 14}, + [5442] = {.lex_state = 39, .external_lex_state = 14}, + [5443] = {.lex_state = 39, .external_lex_state = 14}, [5444] = {.lex_state = 39, .external_lex_state = 14}, - [5445] = {.lex_state = 39, .external_lex_state = 14}, - [5446] = {.lex_state = 39, .external_lex_state = 13}, + [5445] = {.lex_state = 39, .external_lex_state = 13}, + [5446] = {.lex_state = 39, .external_lex_state = 14}, [5447] = {.lex_state = 39, .external_lex_state = 14}, - [5448] = {.lex_state = 39, .external_lex_state = 13}, - [5449] = {.lex_state = 39, .external_lex_state = 13}, - [5450] = {.lex_state = 39, .external_lex_state = 13}, - [5451] = {.lex_state = 39, .external_lex_state = 13}, - [5452] = {.lex_state = 39, .external_lex_state = 14}, - [5453] = {.lex_state = 39, .external_lex_state = 14}, - [5454] = {.lex_state = 39, .external_lex_state = 11}, - [5455] = {.lex_state = 39, .external_lex_state = 12}, - [5456] = {.lex_state = 39, .external_lex_state = 12}, - [5457] = {.lex_state = 39, .external_lex_state = 12}, + [5448] = {.lex_state = 39, .external_lex_state = 11}, + [5449] = {.lex_state = 39, .external_lex_state = 14}, + [5450] = {.lex_state = 39, .external_lex_state = 14}, + [5451] = {.lex_state = 39, .external_lex_state = 14}, + [5452] = {.lex_state = 39, .external_lex_state = 12}, + [5453] = {.lex_state = 39, .external_lex_state = 13}, + [5454] = {.lex_state = 39, .external_lex_state = 14}, + [5455] = {.lex_state = 39, .external_lex_state = 14}, + [5456] = {.lex_state = 39, .external_lex_state = 14}, + [5457] = {.lex_state = 39, .external_lex_state = 14}, [5458] = {.lex_state = 39, .external_lex_state = 14}, - [5459] = {.lex_state = 39, .external_lex_state = 12}, - [5460] = {.lex_state = 39, .external_lex_state = 13}, - [5461] = {.lex_state = 39, .external_lex_state = 13}, - [5462] = {.lex_state = 39, .external_lex_state = 13}, - [5463] = {.lex_state = 39, .external_lex_state = 11}, - [5464] = {.lex_state = 39, .external_lex_state = 12}, - [5465] = {.lex_state = 39, .external_lex_state = 12}, - [5466] = {.lex_state = 39, .external_lex_state = 13}, - [5467] = {.lex_state = 39, .external_lex_state = 14}, - [5468] = {.lex_state = 39, .external_lex_state = 13}, - [5469] = {.lex_state = 39, .external_lex_state = 13}, - [5470] = {.lex_state = 39, .external_lex_state = 11}, - [5471] = {.lex_state = 39, .external_lex_state = 12}, - [5472] = {.lex_state = 39, .external_lex_state = 12}, - [5473] = {.lex_state = 39, .external_lex_state = 14}, - [5474] = {.lex_state = 39, .external_lex_state = 12}, - [5475] = {.lex_state = 39, .external_lex_state = 13}, - [5476] = {.lex_state = 39, .external_lex_state = 12}, - [5477] = {.lex_state = 39, .external_lex_state = 12}, - [5478] = {.lex_state = 39, .external_lex_state = 12}, - [5479] = {.lex_state = 39, .external_lex_state = 12}, - [5480] = {.lex_state = 39, .external_lex_state = 11}, - [5481] = {.lex_state = 39, .external_lex_state = 12}, - [5482] = {.lex_state = 39, .external_lex_state = 12}, - [5483] = {.lex_state = 39, .external_lex_state = 13}, - [5484] = {.lex_state = 39, .external_lex_state = 13}, - [5485] = {.lex_state = 39, .external_lex_state = 13}, - [5486] = {.lex_state = 39, .external_lex_state = 12}, - [5487] = {.lex_state = 39, .external_lex_state = 12}, - [5488] = {.lex_state = 39, .external_lex_state = 13}, - [5489] = {.lex_state = 39, .external_lex_state = 12}, - [5490] = {.lex_state = 39, .external_lex_state = 14}, - [5491] = {.lex_state = 39, .external_lex_state = 13}, - [5492] = {.lex_state = 39, .external_lex_state = 12}, - [5493] = {.lex_state = 39, .external_lex_state = 11}, - [5494] = {.lex_state = 39, .external_lex_state = 12}, - [5495] = {.lex_state = 39, .external_lex_state = 12}, - [5496] = {.lex_state = 39, .external_lex_state = 14}, - [5497] = {.lex_state = 39, .external_lex_state = 13}, - [5498] = {.lex_state = 39, .external_lex_state = 11}, - [5499] = {.lex_state = 39, .external_lex_state = 13}, - [5500] = {.lex_state = 39, .external_lex_state = 11}, - [5501] = {.lex_state = 39, .external_lex_state = 13}, - [5502] = {.lex_state = 39, .external_lex_state = 13}, - [5503] = {.lex_state = 39, .external_lex_state = 13}, - [5504] = {.lex_state = 39, .external_lex_state = 14}, + [5459] = {.lex_state = 39, .external_lex_state = 14}, + [5460] = {.lex_state = 39, .external_lex_state = 14}, + [5461] = {.lex_state = 39, .external_lex_state = 14}, + [5462] = {.lex_state = 39, .external_lex_state = 14}, + [5463] = {.lex_state = 39, .external_lex_state = 14}, + [5464] = {.lex_state = 39, .external_lex_state = 11}, + [5465] = {.lex_state = 39, .external_lex_state = 11}, + [5466] = {.lex_state = 39, .external_lex_state = 10}, + [5467] = {.lex_state = 3, .external_lex_state = 12}, + [5468] = {.lex_state = 3, .external_lex_state = 12}, + [5469] = {.lex_state = 39, .external_lex_state = 11}, + [5470] = {.lex_state = 39, .external_lex_state = 10}, + [5471] = {.lex_state = 39, .external_lex_state = 10}, + [5472] = {.lex_state = 39, .external_lex_state = 14}, + [5473] = {.lex_state = 39, .external_lex_state = 10}, + [5474] = {.lex_state = 39, .external_lex_state = 10}, + [5475] = {.lex_state = 39, .external_lex_state = 10}, + [5476] = {.lex_state = 3, .external_lex_state = 12}, + [5477] = {.lex_state = 39, .external_lex_state = 10}, + [5478] = {.lex_state = 3, .external_lex_state = 12}, + [5479] = {.lex_state = 39, .external_lex_state = 10}, + [5480] = {.lex_state = 3, .external_lex_state = 12}, + [5481] = {.lex_state = 39, .external_lex_state = 10}, + [5482] = {.lex_state = 3, .external_lex_state = 12}, + [5483] = {.lex_state = 39, .external_lex_state = 10}, + [5484] = {.lex_state = 39, .external_lex_state = 10}, + [5485] = {.lex_state = 3, .external_lex_state = 12}, + [5486] = {.lex_state = 3, .external_lex_state = 12}, + [5487] = {.lex_state = 39, .external_lex_state = 10}, + [5488] = {.lex_state = 39, .external_lex_state = 14}, + [5489] = {.lex_state = 39, .external_lex_state = 10}, + [5490] = {.lex_state = 39, .external_lex_state = 10}, + [5491] = {.lex_state = 39, .external_lex_state = 11}, + [5492] = {.lex_state = 39, .external_lex_state = 10}, + [5493] = {.lex_state = 3, .external_lex_state = 12}, + [5494] = {.lex_state = 39, .external_lex_state = 10}, + [5495] = {.lex_state = 39, .external_lex_state = 14}, + [5496] = {.lex_state = 3, .external_lex_state = 12}, + [5497] = {.lex_state = 39, .external_lex_state = 14}, + [5498] = {.lex_state = 39, .external_lex_state = 14}, + [5499] = {.lex_state = 3, .external_lex_state = 12}, + [5500] = {.lex_state = 39, .external_lex_state = 10}, + [5501] = {.lex_state = 39, .external_lex_state = 14}, + [5502] = {.lex_state = 3, .external_lex_state = 12}, + [5503] = {.lex_state = 39, .external_lex_state = 14}, + [5504] = {.lex_state = 3, .external_lex_state = 12}, [5505] = {.lex_state = 39, .external_lex_state = 14}, - [5506] = {.lex_state = 39, .external_lex_state = 13}, - [5507] = {.lex_state = 39, .external_lex_state = 12}, - [5508] = {.lex_state = 39, .external_lex_state = 14}, - [5509] = {.lex_state = 39, .external_lex_state = 12}, - [5510] = {.lex_state = 39, .external_lex_state = 12}, - [5511] = {.lex_state = 39, .external_lex_state = 14}, - [5512] = {.lex_state = 39, .external_lex_state = 13}, + [5506] = {.lex_state = 3, .external_lex_state = 12}, + [5507] = {.lex_state = 39, .external_lex_state = 11}, + [5508] = {.lex_state = 3, .external_lex_state = 12}, + [5509] = {.lex_state = 39, .external_lex_state = 10}, + [5510] = {.lex_state = 3, .external_lex_state = 12}, + [5511] = {.lex_state = 3, .external_lex_state = 12}, + [5512] = {.lex_state = 39, .external_lex_state = 14}, [5513] = {.lex_state = 39, .external_lex_state = 14}, - [5514] = {.lex_state = 39, .external_lex_state = 14}, - [5515] = {.lex_state = 39, .external_lex_state = 13}, - [5516] = {.lex_state = 39, .external_lex_state = 11}, - [5517] = {.lex_state = 39, .external_lex_state = 13}, + [5514] = {.lex_state = 3, .external_lex_state = 12}, + [5515] = {.lex_state = 3, .external_lex_state = 12}, + [5516] = {.lex_state = 3, .external_lex_state = 12}, + [5517] = {.lex_state = 39, .external_lex_state = 10}, [5518] = {.lex_state = 39, .external_lex_state = 13}, - [5519] = {.lex_state = 39, .external_lex_state = 13}, + [5519] = {.lex_state = 39, .external_lex_state = 14}, [5520] = {.lex_state = 39, .external_lex_state = 13}, [5521] = {.lex_state = 39, .external_lex_state = 13}, - [5522] = {.lex_state = 39, .external_lex_state = 12}, + [5522] = {.lex_state = 39, .external_lex_state = 11}, [5523] = {.lex_state = 39, .external_lex_state = 12}, - [5524] = {.lex_state = 39, .external_lex_state = 12}, + [5524] = {.lex_state = 39, .external_lex_state = 13}, [5525] = {.lex_state = 39, .external_lex_state = 13}, - [5526] = {.lex_state = 39, .external_lex_state = 12}, + [5526] = {.lex_state = 39, .external_lex_state = 13}, [5527] = {.lex_state = 39, .external_lex_state = 12}, - [5528] = {.lex_state = 39, .external_lex_state = 14}, + [5528] = {.lex_state = 39, .external_lex_state = 12}, [5529] = {.lex_state = 39, .external_lex_state = 14}, [5530] = {.lex_state = 39, .external_lex_state = 12}, - [5531] = {.lex_state = 39, .external_lex_state = 12}, - [5532] = {.lex_state = 39, .external_lex_state = 12}, + [5531] = {.lex_state = 39, .external_lex_state = 13}, + [5532] = {.lex_state = 39, .external_lex_state = 13}, [5533] = {.lex_state = 39, .external_lex_state = 12}, - [5534] = {.lex_state = 39, .external_lex_state = 11}, - [5535] = {.lex_state = 39, .external_lex_state = 14}, + [5534] = {.lex_state = 39, .external_lex_state = 12}, + [5535] = {.lex_state = 39, .external_lex_state = 13}, [5536] = {.lex_state = 39, .external_lex_state = 13}, - [5537] = {.lex_state = 39, .external_lex_state = 14}, - [5538] = {.lex_state = 39, .external_lex_state = 13}, - [5539] = {.lex_state = 39, .external_lex_state = 12}, + [5537] = {.lex_state = 39, .external_lex_state = 13}, + [5538] = {.lex_state = 39, .external_lex_state = 14}, + [5539] = {.lex_state = 39, .external_lex_state = 13}, [5540] = {.lex_state = 39, .external_lex_state = 13}, - [5541] = {.lex_state = 39, .external_lex_state = 12}, - [5542] = {.lex_state = 39, .external_lex_state = 12}, + [5541] = {.lex_state = 39, .external_lex_state = 13}, + [5542] = {.lex_state = 39, .external_lex_state = 13}, [5543] = {.lex_state = 39, .external_lex_state = 13}, - [5544] = {.lex_state = 39, .external_lex_state = 13}, - [5545] = {.lex_state = 39, .external_lex_state = 14}, - [5546] = {.lex_state = 39, .external_lex_state = 13}, - [5547] = {.lex_state = 39, .external_lex_state = 14}, - [5548] = {.lex_state = 39, .external_lex_state = 12}, - [5549] = {.lex_state = 39, .external_lex_state = 12}, + [5544] = {.lex_state = 39, .external_lex_state = 14}, + [5545] = {.lex_state = 39, .external_lex_state = 11}, + [5546] = {.lex_state = 39, .external_lex_state = 12}, + [5547] = {.lex_state = 39, .external_lex_state = 13}, + [5548] = {.lex_state = 39, .external_lex_state = 14}, + [5549] = {.lex_state = 39, .external_lex_state = 14}, [5550] = {.lex_state = 39, .external_lex_state = 13}, - [5551] = {.lex_state = 39, .external_lex_state = 14}, - [5552] = {.lex_state = 39, .external_lex_state = 11}, - [5553] = {.lex_state = 39, .external_lex_state = 14}, + [5551] = {.lex_state = 39, .external_lex_state = 12}, + [5552] = {.lex_state = 39, .external_lex_state = 14}, + [5553] = {.lex_state = 39, .external_lex_state = 11}, [5554] = {.lex_state = 39, .external_lex_state = 13}, [5555] = {.lex_state = 39, .external_lex_state = 12}, - [5556] = {.lex_state = 39, .external_lex_state = 13}, + [5556] = {.lex_state = 39, .external_lex_state = 14}, [5557] = {.lex_state = 39, .external_lex_state = 12}, [5558] = {.lex_state = 39, .external_lex_state = 13}, - [5559] = {.lex_state = 39, .external_lex_state = 13}, - [5560] = {.lex_state = 39, .external_lex_state = 12}, - [5561] = {.lex_state = 39, .external_lex_state = 14}, + [5559] = {.lex_state = 39, .external_lex_state = 14}, + [5560] = {.lex_state = 39, .external_lex_state = 11}, + [5561] = {.lex_state = 39, .external_lex_state = 13}, [5562] = {.lex_state = 39, .external_lex_state = 13}, - [5563] = {.lex_state = 39, .external_lex_state = 13}, - [5564] = {.lex_state = 39, .external_lex_state = 12}, - [5565] = {.lex_state = 39, .external_lex_state = 11}, - [5566] = {.lex_state = 39, .external_lex_state = 11}, - [5567] = {.lex_state = 39, .external_lex_state = 12}, - [5568] = {.lex_state = 39, .external_lex_state = 12}, - [5569] = {.lex_state = 39, .external_lex_state = 12}, - [5570] = {.lex_state = 39, .external_lex_state = 11}, - [5571] = {.lex_state = 39, .external_lex_state = 13}, - [5572] = {.lex_state = 39, .external_lex_state = 14}, - [5573] = {.lex_state = 39, .external_lex_state = 13}, - [5574] = {.lex_state = 39, .external_lex_state = 11}, - [5575] = {.lex_state = 39, .external_lex_state = 13}, - [5576] = {.lex_state = 39, .external_lex_state = 14}, - [5577] = {.lex_state = 39, .external_lex_state = 14}, - [5578] = {.lex_state = 39, .external_lex_state = 14}, - [5579] = {.lex_state = 39, .external_lex_state = 12}, - [5580] = {.lex_state = 39, .external_lex_state = 14}, - [5581] = {.lex_state = 39, .external_lex_state = 13}, - [5582] = {.lex_state = 39, .external_lex_state = 14}, - [5583] = {.lex_state = 39, .external_lex_state = 13}, - [5584] = {.lex_state = 39, .external_lex_state = 13}, - [5585] = {.lex_state = 39, .external_lex_state = 14}, + [5563] = {.lex_state = 39, .external_lex_state = 11}, + [5564] = {.lex_state = 39, .external_lex_state = 13}, + [5565] = {.lex_state = 39, .external_lex_state = 14}, + [5566] = {.lex_state = 39, .external_lex_state = 13}, + [5567] = {.lex_state = 39, .external_lex_state = 13}, + [5568] = {.lex_state = 39, .external_lex_state = 13}, + [5569] = {.lex_state = 39, .external_lex_state = 14}, + [5570] = {.lex_state = 39, .external_lex_state = 12}, + [5571] = {.lex_state = 39, .external_lex_state = 11}, + [5572] = {.lex_state = 39, .external_lex_state = 13}, + [5573] = {.lex_state = 39, .external_lex_state = 14}, + [5574] = {.lex_state = 39, .external_lex_state = 13}, + [5575] = {.lex_state = 39, .external_lex_state = 12}, + [5576] = {.lex_state = 39, .external_lex_state = 12}, + [5577] = {.lex_state = 39, .external_lex_state = 12}, + [5578] = {.lex_state = 3, .external_lex_state = 12}, + [5579] = {.lex_state = 39, .external_lex_state = 14}, + [5580] = {.lex_state = 39, .external_lex_state = 13}, + [5581] = {.lex_state = 39, .external_lex_state = 11}, + [5582] = {.lex_state = 39, .external_lex_state = 13}, + [5583] = {.lex_state = 39, .external_lex_state = 12}, + [5584] = {.lex_state = 3, .external_lex_state = 12}, + [5585] = {.lex_state = 39, .external_lex_state = 12}, [5586] = {.lex_state = 39, .external_lex_state = 13}, - [5587] = {.lex_state = 39, .external_lex_state = 14}, - [5588] = {.lex_state = 39, .external_lex_state = 11}, - [5589] = {.lex_state = 39, .external_lex_state = 13}, - [5590] = {.lex_state = 39, .external_lex_state = 12}, - [5591] = {.lex_state = 39, .external_lex_state = 11}, - [5592] = {.lex_state = 39, .external_lex_state = 14}, - [5593] = {.lex_state = 39, .external_lex_state = 13}, - [5594] = {.lex_state = 39, .external_lex_state = 13}, - [5595] = {.lex_state = 39, .external_lex_state = 14}, - [5596] = {.lex_state = 39, .external_lex_state = 12}, + [5587] = {.lex_state = 39, .external_lex_state = 12}, + [5588] = {.lex_state = 39, .external_lex_state = 14}, + [5589] = {.lex_state = 39, .external_lex_state = 12}, + [5590] = {.lex_state = 39, .external_lex_state = 14}, + [5591] = {.lex_state = 39, .external_lex_state = 14}, + [5592] = {.lex_state = 39, .external_lex_state = 10}, + [5593] = {.lex_state = 39, .external_lex_state = 12}, + [5594] = {.lex_state = 39, .external_lex_state = 14}, + [5595] = {.lex_state = 39, .external_lex_state = 12}, + [5596] = {.lex_state = 39, .external_lex_state = 13}, [5597] = {.lex_state = 39, .external_lex_state = 12}, - [5598] = {.lex_state = 39, .external_lex_state = 14}, - [5599] = {.lex_state = 39, .external_lex_state = 12}, - [5600] = {.lex_state = 39, .external_lex_state = 13}, - [5601] = {.lex_state = 39, .external_lex_state = 12}, - [5602] = {.lex_state = 39, .external_lex_state = 14}, + [5598] = {.lex_state = 39, .external_lex_state = 12}, + [5599] = {.lex_state = 39, .external_lex_state = 11}, + [5600] = {.lex_state = 39, .external_lex_state = 11}, + [5601] = {.lex_state = 39, .external_lex_state = 13}, + [5602] = {.lex_state = 39, .external_lex_state = 11}, [5603] = {.lex_state = 39, .external_lex_state = 13}, - [5604] = {.lex_state = 39, .external_lex_state = 14}, - [5605] = {.lex_state = 3, .external_lex_state = 12}, - [5606] = {.lex_state = 39, .external_lex_state = 11}, - [5607] = {.lex_state = 39, .external_lex_state = 14}, - [5608] = {.lex_state = 39, .external_lex_state = 13}, - [5609] = {.lex_state = 39, .external_lex_state = 14}, + [5604] = {.lex_state = 39, .external_lex_state = 12}, + [5605] = {.lex_state = 39, .external_lex_state = 13}, + [5606] = {.lex_state = 39, .external_lex_state = 14}, + [5607] = {.lex_state = 39, .external_lex_state = 13}, + [5608] = {.lex_state = 39, .external_lex_state = 14}, + [5609] = {.lex_state = 39, .external_lex_state = 13}, [5610] = {.lex_state = 39, .external_lex_state = 12}, [5611] = {.lex_state = 39, .external_lex_state = 14}, - [5612] = {.lex_state = 39, .external_lex_state = 14}, - [5613] = {.lex_state = 39, .external_lex_state = 13}, + [5612] = {.lex_state = 39, .external_lex_state = 11}, + [5613] = {.lex_state = 39, .external_lex_state = 12}, [5614] = {.lex_state = 39, .external_lex_state = 13}, - [5615] = {.lex_state = 39, .external_lex_state = 14}, + [5615] = {.lex_state = 39, .external_lex_state = 12}, [5616] = {.lex_state = 39, .external_lex_state = 12}, - [5617] = {.lex_state = 39, .external_lex_state = 13}, + [5617] = {.lex_state = 39, .external_lex_state = 11}, [5618] = {.lex_state = 39, .external_lex_state = 11}, - [5619] = {.lex_state = 39, .external_lex_state = 12}, - [5620] = {.lex_state = 39, .external_lex_state = 13}, - [5621] = {.lex_state = 39, .external_lex_state = 13}, + [5619] = {.lex_state = 39, .external_lex_state = 13}, + [5620] = {.lex_state = 39, .external_lex_state = 14}, + [5621] = {.lex_state = 39, .external_lex_state = 11}, [5622] = {.lex_state = 39, .external_lex_state = 13}, [5623] = {.lex_state = 39, .external_lex_state = 12}, - [5624] = {.lex_state = 39, .external_lex_state = 11}, - [5625] = {.lex_state = 39, .external_lex_state = 14}, + [5624] = {.lex_state = 39, .external_lex_state = 13}, + [5625] = {.lex_state = 39, .external_lex_state = 12}, [5626] = {.lex_state = 39, .external_lex_state = 12}, - [5627] = {.lex_state = 39, .external_lex_state = 13}, - [5628] = {.lex_state = 39, .external_lex_state = 13}, - [5629] = {.lex_state = 3, .external_lex_state = 12}, + [5627] = {.lex_state = 39, .external_lex_state = 12}, + [5628] = {.lex_state = 39, .external_lex_state = 11}, + [5629] = {.lex_state = 39, .external_lex_state = 12}, [5630] = {.lex_state = 39, .external_lex_state = 13}, - [5631] = {.lex_state = 39, .external_lex_state = 11}, + [5631] = {.lex_state = 39, .external_lex_state = 12}, [5632] = {.lex_state = 39, .external_lex_state = 12}, - [5633] = {.lex_state = 39, .external_lex_state = 11}, - [5634] = {.lex_state = 39, .external_lex_state = 12}, + [5633] = {.lex_state = 39, .external_lex_state = 14}, + [5634] = {.lex_state = 39, .external_lex_state = 13}, [5635] = {.lex_state = 39, .external_lex_state = 11}, - [5636] = {.lex_state = 39, .external_lex_state = 12}, + [5636] = {.lex_state = 39, .external_lex_state = 11}, [5637] = {.lex_state = 39, .external_lex_state = 11}, - [5638] = {.lex_state = 39, .external_lex_state = 14}, - [5639] = {.lex_state = 39, .external_lex_state = 11}, - [5640] = {.lex_state = 39, .external_lex_state = 13}, - [5641] = {.lex_state = 39, .external_lex_state = 11}, - [5642] = {.lex_state = 39, .external_lex_state = 11}, - [5643] = {.lex_state = 39, .external_lex_state = 11}, - [5644] = {.lex_state = 3, .external_lex_state = 12}, - [5645] = {.lex_state = 39, .external_lex_state = 11}, + [5638] = {.lex_state = 39, .external_lex_state = 11}, + [5639] = {.lex_state = 39, .external_lex_state = 13}, + [5640] = {.lex_state = 39, .external_lex_state = 11}, + [5641] = {.lex_state = 39, .external_lex_state = 14}, + [5642] = {.lex_state = 39, .external_lex_state = 13}, + [5643] = {.lex_state = 39, .external_lex_state = 12}, + [5644] = {.lex_state = 39, .external_lex_state = 12}, + [5645] = {.lex_state = 39, .external_lex_state = 13}, [5646] = {.lex_state = 39, .external_lex_state = 13}, [5647] = {.lex_state = 39, .external_lex_state = 11}, - [5648] = {.lex_state = 39, .external_lex_state = 11}, + [5648] = {.lex_state = 39, .external_lex_state = 14}, [5649] = {.lex_state = 39, .external_lex_state = 14}, - [5650] = {.lex_state = 39, .external_lex_state = 11}, + [5650] = {.lex_state = 39, .external_lex_state = 12}, [5651] = {.lex_state = 39, .external_lex_state = 11}, - [5652] = {.lex_state = 39, .external_lex_state = 13}, - [5653] = {.lex_state = 39, .external_lex_state = 14}, + [5652] = {.lex_state = 39, .external_lex_state = 14}, + [5653] = {.lex_state = 39, .external_lex_state = 11}, [5654] = {.lex_state = 39, .external_lex_state = 11}, - [5655] = {.lex_state = 39, .external_lex_state = 11}, - [5656] = {.lex_state = 39, .external_lex_state = 11}, + [5655] = {.lex_state = 39, .external_lex_state = 14}, + [5656] = {.lex_state = 39, .external_lex_state = 12}, [5657] = {.lex_state = 39, .external_lex_state = 12}, - [5658] = {.lex_state = 39, .external_lex_state = 11}, + [5658] = {.lex_state = 39, .external_lex_state = 14}, [5659] = {.lex_state = 39, .external_lex_state = 14}, [5660] = {.lex_state = 39, .external_lex_state = 12}, - [5661] = {.lex_state = 39, .external_lex_state = 11}, + [5661] = {.lex_state = 39, .external_lex_state = 13}, [5662] = {.lex_state = 39, .external_lex_state = 13}, - [5663] = {.lex_state = 39, .external_lex_state = 13}, + [5663] = {.lex_state = 39, .external_lex_state = 12}, [5664] = {.lex_state = 39, .external_lex_state = 13}, - [5665] = {.lex_state = 39, .external_lex_state = 13}, - [5666] = {.lex_state = 39, .external_lex_state = 14}, - [5667] = {.lex_state = 3, .external_lex_state = 12}, - [5668] = {.lex_state = 39, .external_lex_state = 12}, - [5669] = {.lex_state = 39, .external_lex_state = 14}, - [5670] = {.lex_state = 39, .external_lex_state = 12}, - [5671] = {.lex_state = 39, .external_lex_state = 14}, + [5665] = {.lex_state = 39, .external_lex_state = 11}, + [5666] = {.lex_state = 39, .external_lex_state = 13}, + [5667] = {.lex_state = 39, .external_lex_state = 14}, + [5668] = {.lex_state = 39, .external_lex_state = 14}, + [5669] = {.lex_state = 39, .external_lex_state = 12}, + [5670] = {.lex_state = 39, .external_lex_state = 13}, + [5671] = {.lex_state = 39, .external_lex_state = 11}, [5672] = {.lex_state = 39, .external_lex_state = 11}, [5673] = {.lex_state = 39, .external_lex_state = 13}, - [5674] = {.lex_state = 39, .external_lex_state = 14}, - [5675] = {.lex_state = 39, .external_lex_state = 14}, - [5676] = {.lex_state = 3, .external_lex_state = 12}, - [5677] = {.lex_state = 39, .external_lex_state = 11}, - [5678] = {.lex_state = 39, .external_lex_state = 13}, - [5679] = {.lex_state = 39, .external_lex_state = 14}, - [5680] = {.lex_state = 39, .external_lex_state = 12}, - [5681] = {.lex_state = 39, .external_lex_state = 13}, - [5682] = {.lex_state = 39, .external_lex_state = 12}, - [5683] = {.lex_state = 39, .external_lex_state = 11}, - [5684] = {.lex_state = 39, .external_lex_state = 12}, + [5674] = {.lex_state = 39, .external_lex_state = 12}, + [5675] = {.lex_state = 39, .external_lex_state = 12}, + [5676] = {.lex_state = 39, .external_lex_state = 11}, + [5677] = {.lex_state = 39, .external_lex_state = 12}, + [5678] = {.lex_state = 39, .external_lex_state = 12}, + [5679] = {.lex_state = 39, .external_lex_state = 11}, + [5680] = {.lex_state = 39, .external_lex_state = 11}, + [5681] = {.lex_state = 39, .external_lex_state = 12}, + [5682] = {.lex_state = 39, .external_lex_state = 11}, + [5683] = {.lex_state = 39, .external_lex_state = 14}, + [5684] = {.lex_state = 39, .external_lex_state = 11}, [5685] = {.lex_state = 39, .external_lex_state = 13}, - [5686] = {.lex_state = 39, .external_lex_state = 13}, - [5687] = {.lex_state = 39, .external_lex_state = 13}, - [5688] = {.lex_state = 39, .external_lex_state = 14}, - [5689] = {.lex_state = 39, .external_lex_state = 12}, - [5690] = {.lex_state = 39, .external_lex_state = 13}, - [5691] = {.lex_state = 39, .external_lex_state = 14}, - [5692] = {.lex_state = 39, .external_lex_state = 11}, - [5693] = {.lex_state = 3, .external_lex_state = 12}, + [5686] = {.lex_state = 39, .external_lex_state = 14}, + [5687] = {.lex_state = 39, .external_lex_state = 14}, + [5688] = {.lex_state = 39, .external_lex_state = 11}, + [5689] = {.lex_state = 39, .external_lex_state = 11}, + [5690] = {.lex_state = 39, .external_lex_state = 11}, + [5691] = {.lex_state = 39, .external_lex_state = 12}, + [5692] = {.lex_state = 39, .external_lex_state = 14}, + [5693] = {.lex_state = 39, .external_lex_state = 12}, [5694] = {.lex_state = 39, .external_lex_state = 12}, [5695] = {.lex_state = 39, .external_lex_state = 14}, - [5696] = {.lex_state = 39, .external_lex_state = 14}, - [5697] = {.lex_state = 39, .external_lex_state = 14}, - [5698] = {.lex_state = 39, .external_lex_state = 13}, + [5696] = {.lex_state = 39, .external_lex_state = 13}, + [5697] = {.lex_state = 39, .external_lex_state = 13}, + [5698] = {.lex_state = 39, .external_lex_state = 12}, [5699] = {.lex_state = 39, .external_lex_state = 12}, - [5700] = {.lex_state = 39, .external_lex_state = 12}, - [5701] = {.lex_state = 39, .external_lex_state = 12}, - [5702] = {.lex_state = 39, .external_lex_state = 12}, - [5703] = {.lex_state = 39, .external_lex_state = 11}, - [5704] = {.lex_state = 39, .external_lex_state = 11}, - [5705] = {.lex_state = 39, .external_lex_state = 12}, - [5706] = {.lex_state = 39, .external_lex_state = 2}, + [5700] = {.lex_state = 39, .external_lex_state = 13}, + [5701] = {.lex_state = 39, .external_lex_state = 13}, + [5702] = {.lex_state = 39, .external_lex_state = 13}, + [5703] = {.lex_state = 39, .external_lex_state = 12}, + [5704] = {.lex_state = 39, .external_lex_state = 14}, + [5705] = {.lex_state = 3, .external_lex_state = 12}, + [5706] = {.lex_state = 39, .external_lex_state = 12}, [5707] = {.lex_state = 39, .external_lex_state = 11}, - [5708] = {.lex_state = 39, .external_lex_state = 11}, - [5709] = {.lex_state = 39, .external_lex_state = 11}, - [5710] = {.lex_state = 39, .external_lex_state = 11}, - [5711] = {.lex_state = 39, .external_lex_state = 11}, - [5712] = {.lex_state = 39, .external_lex_state = 11}, - [5713] = {.lex_state = 39, .external_lex_state = 11}, - [5714] = {.lex_state = 39, .external_lex_state = 11}, - [5715] = {.lex_state = 39, .external_lex_state = 11}, + [5708] = {.lex_state = 39, .external_lex_state = 12}, + [5709] = {.lex_state = 39, .external_lex_state = 12}, + [5710] = {.lex_state = 39, .external_lex_state = 12}, + [5711] = {.lex_state = 39, .external_lex_state = 13}, + [5712] = {.lex_state = 39, .external_lex_state = 13}, + [5713] = {.lex_state = 39, .external_lex_state = 12}, + [5714] = {.lex_state = 39, .external_lex_state = 14}, + [5715] = {.lex_state = 39, .external_lex_state = 14}, [5716] = {.lex_state = 39, .external_lex_state = 11}, [5717] = {.lex_state = 39, .external_lex_state = 11}, - [5718] = {.lex_state = 39, .external_lex_state = 11}, - [5719] = {.lex_state = 39, .external_lex_state = 12}, - [5720] = {.lex_state = 39, .external_lex_state = 11}, - [5721] = {.lex_state = 39, .external_lex_state = 11}, + [5718] = {.lex_state = 39, .external_lex_state = 13}, + [5719] = {.lex_state = 39, .external_lex_state = 13}, + [5720] = {.lex_state = 39, .external_lex_state = 12}, + [5721] = {.lex_state = 39, .external_lex_state = 12}, [5722] = {.lex_state = 39, .external_lex_state = 12}, [5723] = {.lex_state = 39, .external_lex_state = 12}, - [5724] = {.lex_state = 39, .external_lex_state = 11}, + [5724] = {.lex_state = 39, .external_lex_state = 13}, [5725] = {.lex_state = 39, .external_lex_state = 11}, [5726] = {.lex_state = 39, .external_lex_state = 12}, - [5727] = {.lex_state = 39, .external_lex_state = 11}, - [5728] = {.lex_state = 39, .external_lex_state = 11}, - [5729] = {.lex_state = 39, .external_lex_state = 12}, - [5730] = {.lex_state = 39, .external_lex_state = 11}, - [5731] = {.lex_state = 39, .external_lex_state = 11}, - [5732] = {.lex_state = 39, .external_lex_state = 11}, - [5733] = {.lex_state = 39, .external_lex_state = 11}, - [5734] = {.lex_state = 39, .external_lex_state = 11}, + [5727] = {.lex_state = 39, .external_lex_state = 13}, + [5728] = {.lex_state = 39, .external_lex_state = 12}, + [5729] = {.lex_state = 39, .external_lex_state = 13}, + [5730] = {.lex_state = 39, .external_lex_state = 12}, + [5731] = {.lex_state = 39, .external_lex_state = 13}, + [5732] = {.lex_state = 39, .external_lex_state = 13}, + [5733] = {.lex_state = 39, .external_lex_state = 12}, + [5734] = {.lex_state = 39, .external_lex_state = 14}, [5735] = {.lex_state = 39, .external_lex_state = 12}, [5736] = {.lex_state = 39, .external_lex_state = 12}, - [5737] = {.lex_state = 39, .external_lex_state = 11}, - [5738] = {.lex_state = 39, .external_lex_state = 12}, - [5739] = {.lex_state = 39, .external_lex_state = 12}, + [5737] = {.lex_state = 39, .external_lex_state = 13}, + [5738] = {.lex_state = 39, .external_lex_state = 13}, + [5739] = {.lex_state = 39, .external_lex_state = 14}, [5740] = {.lex_state = 39, .external_lex_state = 12}, - [5741] = {.lex_state = 39, .external_lex_state = 12}, - [5742] = {.lex_state = 39, .external_lex_state = 13}, + [5741] = {.lex_state = 39, .external_lex_state = 13}, + [5742] = {.lex_state = 39, .external_lex_state = 12}, [5743] = {.lex_state = 39, .external_lex_state = 11}, - [5744] = {.lex_state = 39, .external_lex_state = 2}, - [5745] = {.lex_state = 39, .external_lex_state = 2}, - [5746] = {.lex_state = 39, .external_lex_state = 12}, - [5747] = {.lex_state = 39, .external_lex_state = 11}, - [5748] = {.lex_state = 39, .external_lex_state = 11}, - [5749] = {.lex_state = 39, .external_lex_state = 11}, - [5750] = {.lex_state = 39, .external_lex_state = 11}, + [5744] = {.lex_state = 39, .external_lex_state = 14}, + [5745] = {.lex_state = 39, .external_lex_state = 13}, + [5746] = {.lex_state = 39, .external_lex_state = 14}, + [5747] = {.lex_state = 39, .external_lex_state = 13}, + [5748] = {.lex_state = 39, .external_lex_state = 13}, + [5749] = {.lex_state = 39, .external_lex_state = 13}, + [5750] = {.lex_state = 39, .external_lex_state = 13}, [5751] = {.lex_state = 39, .external_lex_state = 11}, - [5752] = {.lex_state = 39, .external_lex_state = 10}, - [5753] = {.lex_state = 39, .external_lex_state = 11}, - [5754] = {.lex_state = 39, .external_lex_state = 13}, - [5755] = {.lex_state = 39, .external_lex_state = 11}, - [5756] = {.lex_state = 39, .external_lex_state = 11}, - [5757] = {.lex_state = 39, .external_lex_state = 12}, - [5758] = {.lex_state = 39, .external_lex_state = 10}, - [5759] = {.lex_state = 39, .external_lex_state = 11}, - [5760] = {.lex_state = 39, .external_lex_state = 12}, - [5761] = {.lex_state = 39, .external_lex_state = 12}, - [5762] = {.lex_state = 39, .external_lex_state = 11}, - [5763] = {.lex_state = 39, .external_lex_state = 12}, - [5764] = {.lex_state = 39, .external_lex_state = 14}, + [5752] = {.lex_state = 39, .external_lex_state = 14}, + [5753] = {.lex_state = 39, .external_lex_state = 14}, + [5754] = {.lex_state = 39, .external_lex_state = 11}, + [5755] = {.lex_state = 39, .external_lex_state = 14}, + [5756] = {.lex_state = 39, .external_lex_state = 12}, + [5757] = {.lex_state = 3, .external_lex_state = 12}, + [5758] = {.lex_state = 39, .external_lex_state = 12}, + [5759] = {.lex_state = 39, .external_lex_state = 12}, + [5760] = {.lex_state = 39, .external_lex_state = 14}, + [5761] = {.lex_state = 39, .external_lex_state = 14}, + [5762] = {.lex_state = 39, .external_lex_state = 14}, + [5763] = {.lex_state = 39, .external_lex_state = 13}, + [5764] = {.lex_state = 39, .external_lex_state = 13}, [5765] = {.lex_state = 39, .external_lex_state = 12}, [5766] = {.lex_state = 39, .external_lex_state = 12}, - [5767] = {.lex_state = 39, .external_lex_state = 13}, + [5767] = {.lex_state = 39, .external_lex_state = 12}, [5768] = {.lex_state = 39, .external_lex_state = 11}, - [5769] = {.lex_state = 39, .external_lex_state = 11}, - [5770] = {.lex_state = 39, .external_lex_state = 11}, - [5771] = {.lex_state = 39, .external_lex_state = 11}, - [5772] = {.lex_state = 39, .external_lex_state = 12}, - [5773] = {.lex_state = 39, .external_lex_state = 2}, + [5769] = {.lex_state = 39, .external_lex_state = 14}, + [5770] = {.lex_state = 3, .external_lex_state = 12}, + [5771] = {.lex_state = 39, .external_lex_state = 13}, + [5772] = {.lex_state = 39, .external_lex_state = 14}, + [5773] = {.lex_state = 3, .external_lex_state = 12}, [5774] = {.lex_state = 39, .external_lex_state = 11}, - [5775] = {.lex_state = 39, .external_lex_state = 12}, - [5776] = {.lex_state = 39, .external_lex_state = 11}, - [5777] = {.lex_state = 39, .external_lex_state = 12}, - [5778] = {.lex_state = 39, .external_lex_state = 11}, - [5779] = {.lex_state = 39, .external_lex_state = 11}, - [5780] = {.lex_state = 39, .external_lex_state = 11}, - [5781] = {.lex_state = 39, .external_lex_state = 11}, - [5782] = {.lex_state = 39, .external_lex_state = 11}, - [5783] = {.lex_state = 39, .external_lex_state = 11}, - [5784] = {.lex_state = 39, .external_lex_state = 11}, + [5775] = {.lex_state = 39, .external_lex_state = 13}, + [5776] = {.lex_state = 39, .external_lex_state = 13}, + [5777] = {.lex_state = 39, .external_lex_state = 13}, + [5778] = {.lex_state = 39, .external_lex_state = 14}, + [5779] = {.lex_state = 39, .external_lex_state = 12}, + [5780] = {.lex_state = 39, .external_lex_state = 14}, + [5781] = {.lex_state = 39, .external_lex_state = 13}, + [5782] = {.lex_state = 39, .external_lex_state = 14}, + [5783] = {.lex_state = 39, .external_lex_state = 14}, + [5784] = {.lex_state = 39, .external_lex_state = 12}, [5785] = {.lex_state = 39, .external_lex_state = 12}, - [5786] = {.lex_state = 39, .external_lex_state = 12}, - [5787] = {.lex_state = 39, .external_lex_state = 12}, - [5788] = {.lex_state = 39, .external_lex_state = 12}, - [5789] = {.lex_state = 39, .external_lex_state = 12}, - [5790] = {.lex_state = 39, .external_lex_state = 12}, - [5791] = {.lex_state = 39, .external_lex_state = 12}, - [5792] = {.lex_state = 39, .external_lex_state = 12}, - [5793] = {.lex_state = 39, .external_lex_state = 12}, - [5794] = {.lex_state = 39, .external_lex_state = 12}, - [5795] = {.lex_state = 39, .external_lex_state = 12}, + [5786] = {.lex_state = 39, .external_lex_state = 14}, + [5787] = {.lex_state = 39, .external_lex_state = 14}, + [5788] = {.lex_state = 39, .external_lex_state = 14}, + [5789] = {.lex_state = 39, .external_lex_state = 13}, + [5790] = {.lex_state = 39, .external_lex_state = 14}, + [5791] = {.lex_state = 39, .external_lex_state = 13}, + [5792] = {.lex_state = 39, .external_lex_state = 14}, + [5793] = {.lex_state = 39, .external_lex_state = 14}, + [5794] = {.lex_state = 39, .external_lex_state = 11}, + [5795] = {.lex_state = 39, .external_lex_state = 11}, [5796] = {.lex_state = 39, .external_lex_state = 12}, - [5797] = {.lex_state = 39, .external_lex_state = 11}, - [5798] = {.lex_state = 39, .external_lex_state = 11}, - [5799] = {.lex_state = 39, .external_lex_state = 11}, + [5797] = {.lex_state = 39, .external_lex_state = 12}, + [5798] = {.lex_state = 39, .external_lex_state = 12}, + [5799] = {.lex_state = 39, .external_lex_state = 12}, [5800] = {.lex_state = 39, .external_lex_state = 11}, - [5801] = {.lex_state = 39, .external_lex_state = 11}, - [5802] = {.lex_state = 39, .external_lex_state = 11}, - [5803] = {.lex_state = 39, .external_lex_state = 13}, + [5801] = {.lex_state = 39, .external_lex_state = 12}, + [5802] = {.lex_state = 39, .external_lex_state = 12}, + [5803] = {.lex_state = 39, .external_lex_state = 12}, [5804] = {.lex_state = 39, .external_lex_state = 11}, - [5805] = {.lex_state = 39, .external_lex_state = 12}, + [5805] = {.lex_state = 39, .external_lex_state = 11}, [5806] = {.lex_state = 39, .external_lex_state = 11}, - [5807] = {.lex_state = 39, .external_lex_state = 11}, + [5807] = {.lex_state = 39, .external_lex_state = 12}, [5808] = {.lex_state = 39, .external_lex_state = 11}, - [5809] = {.lex_state = 39, .external_lex_state = 11}, - [5810] = {.lex_state = 39, .external_lex_state = 11}, + [5809] = {.lex_state = 39, .external_lex_state = 12}, + [5810] = {.lex_state = 39, .external_lex_state = 12}, [5811] = {.lex_state = 39, .external_lex_state = 11}, [5812] = {.lex_state = 39, .external_lex_state = 11}, [5813] = {.lex_state = 39, .external_lex_state = 11}, [5814] = {.lex_state = 39, .external_lex_state = 11}, [5815] = {.lex_state = 39, .external_lex_state = 11}, [5816] = {.lex_state = 39, .external_lex_state = 11}, - [5817] = {.lex_state = 39, .external_lex_state = 11}, - [5818] = {.lex_state = 39, .external_lex_state = 11}, - [5819] = {.lex_state = 39, .external_lex_state = 11}, - [5820] = {.lex_state = 39, .external_lex_state = 11}, - [5821] = {.lex_state = 39, .external_lex_state = 10}, - [5822] = {.lex_state = 39, .external_lex_state = 12}, - [5823] = {.lex_state = 39, .external_lex_state = 14}, - [5824] = {.lex_state = 39, .external_lex_state = 12}, - [5825] = {.lex_state = 39, .external_lex_state = 12}, - [5826] = {.lex_state = 39, .external_lex_state = 12}, - [5827] = {.lex_state = 39, .external_lex_state = 13}, + [5817] = {.lex_state = 39, .external_lex_state = 2}, + [5818] = {.lex_state = 39, .external_lex_state = 12}, + [5819] = {.lex_state = 39, .external_lex_state = 12}, + [5820] = {.lex_state = 39, .external_lex_state = 13}, + [5821] = {.lex_state = 39, .external_lex_state = 12}, + [5822] = {.lex_state = 39, .external_lex_state = 11}, + [5823] = {.lex_state = 39, .external_lex_state = 10}, + [5824] = {.lex_state = 39, .external_lex_state = 11}, + [5825] = {.lex_state = 39, .external_lex_state = 11}, + [5826] = {.lex_state = 39, .external_lex_state = 2}, + [5827] = {.lex_state = 39, .external_lex_state = 12}, [5828] = {.lex_state = 39, .external_lex_state = 11}, - [5829] = {.lex_state = 39, .external_lex_state = 11}, - [5830] = {.lex_state = 39, .external_lex_state = 14}, + [5829] = {.lex_state = 39, .external_lex_state = 12}, + [5830] = {.lex_state = 39, .external_lex_state = 12}, [5831] = {.lex_state = 39, .external_lex_state = 12}, - [5832] = {.lex_state = 39, .external_lex_state = 11}, + [5832] = {.lex_state = 39, .external_lex_state = 12}, [5833] = {.lex_state = 39, .external_lex_state = 11}, - [5834] = {.lex_state = 39, .external_lex_state = 10}, + [5834] = {.lex_state = 39, .external_lex_state = 11}, [5835] = {.lex_state = 39, .external_lex_state = 11}, - [5836] = {.lex_state = 39, .external_lex_state = 11}, + [5836] = {.lex_state = 39, .external_lex_state = 12}, [5837] = {.lex_state = 39, .external_lex_state = 11}, [5838] = {.lex_state = 39, .external_lex_state = 11}, [5839] = {.lex_state = 39, .external_lex_state = 11}, - [5840] = {.lex_state = 39, .external_lex_state = 12}, + [5840] = {.lex_state = 39, .external_lex_state = 11}, [5841] = {.lex_state = 39, .external_lex_state = 12}, - [5842] = {.lex_state = 39, .external_lex_state = 12}, + [5842] = {.lex_state = 39, .external_lex_state = 11}, [5843] = {.lex_state = 39, .external_lex_state = 12}, - [5844] = {.lex_state = 39, .external_lex_state = 12}, - [5845] = {.lex_state = 39, .external_lex_state = 12}, - [5846] = {.lex_state = 39, .external_lex_state = 14}, + [5844] = {.lex_state = 39, .external_lex_state = 11}, + [5845] = {.lex_state = 39, .external_lex_state = 11}, + [5846] = {.lex_state = 39, .external_lex_state = 12}, [5847] = {.lex_state = 39, .external_lex_state = 11}, - [5848] = {.lex_state = 39, .external_lex_state = 10}, - [5849] = {.lex_state = 39, .external_lex_state = 12}, - [5850] = {.lex_state = 39, .external_lex_state = 12}, - [5851] = {.lex_state = 39, .external_lex_state = 13}, + [5848] = {.lex_state = 39, .external_lex_state = 14}, + [5849] = {.lex_state = 39, .external_lex_state = 11}, + [5850] = {.lex_state = 39, .external_lex_state = 11}, + [5851] = {.lex_state = 39, .external_lex_state = 11}, [5852] = {.lex_state = 39, .external_lex_state = 12}, - [5853] = {.lex_state = 39, .external_lex_state = 13}, + [5853] = {.lex_state = 39, .external_lex_state = 11}, [5854] = {.lex_state = 39, .external_lex_state = 12}, [5855] = {.lex_state = 39, .external_lex_state = 11}, [5856] = {.lex_state = 39, .external_lex_state = 11}, [5857] = {.lex_state = 39, .external_lex_state = 11}, [5858] = {.lex_state = 39, .external_lex_state = 11}, - [5859] = {.lex_state = 39, .external_lex_state = 11}, - [5860] = {.lex_state = 39, .external_lex_state = 12}, + [5859] = {.lex_state = 39, .external_lex_state = 10}, + [5860] = {.lex_state = 39, .external_lex_state = 11}, [5861] = {.lex_state = 39, .external_lex_state = 11}, [5862] = {.lex_state = 39, .external_lex_state = 12}, - [5863] = {.lex_state = 39, .external_lex_state = 11}, - [5864] = {.lex_state = 39, .external_lex_state = 11}, + [5863] = {.lex_state = 39, .external_lex_state = 13}, + [5864] = {.lex_state = 39, .external_lex_state = 12}, [5865] = {.lex_state = 39, .external_lex_state = 12}, - [5866] = {.lex_state = 39, .external_lex_state = 12}, - [5867] = {.lex_state = 39, .external_lex_state = 12}, - [5868] = {.lex_state = 39, .external_lex_state = 12}, - [5869] = {.lex_state = 39, .external_lex_state = 13}, - [5870] = {.lex_state = 39, .external_lex_state = 12}, - [5871] = {.lex_state = 39, .external_lex_state = 12}, - [5872] = {.lex_state = 39, .external_lex_state = 12}, - [5873] = {.lex_state = 39, .external_lex_state = 13}, - [5874] = {.lex_state = 39, .external_lex_state = 11}, - [5875] = {.lex_state = 39, .external_lex_state = 11}, - [5876] = {.lex_state = 39, .external_lex_state = 11}, - [5877] = {.lex_state = 39, .external_lex_state = 12}, - [5878] = {.lex_state = 39, .external_lex_state = 11}, + [5866] = {.lex_state = 39, .external_lex_state = 11}, + [5867] = {.lex_state = 39, .external_lex_state = 11}, + [5868] = {.lex_state = 39, .external_lex_state = 11}, + [5869] = {.lex_state = 39, .external_lex_state = 11}, + [5870] = {.lex_state = 39, .external_lex_state = 11}, + [5871] = {.lex_state = 39, .external_lex_state = 11}, + [5872] = {.lex_state = 39, .external_lex_state = 11}, + [5873] = {.lex_state = 39, .external_lex_state = 11}, + [5874] = {.lex_state = 39, .external_lex_state = 12}, + [5875] = {.lex_state = 39, .external_lex_state = 2}, + [5876] = {.lex_state = 39, .external_lex_state = 12}, + [5877] = {.lex_state = 39, .external_lex_state = 11}, + [5878] = {.lex_state = 39, .external_lex_state = 13}, [5879] = {.lex_state = 39, .external_lex_state = 11}, [5880] = {.lex_state = 39, .external_lex_state = 11}, - [5881] = {.lex_state = 39, .external_lex_state = 10}, - [5882] = {.lex_state = 39, .external_lex_state = 11}, - [5883] = {.lex_state = 39, .external_lex_state = 14}, - [5884] = {.lex_state = 39, .external_lex_state = 13}, - [5885] = {.lex_state = 39, .external_lex_state = 12}, - [5886] = {.lex_state = 39, .external_lex_state = 12}, - [5887] = {.lex_state = 39, .external_lex_state = 12}, + [5881] = {.lex_state = 39, .external_lex_state = 11}, + [5882] = {.lex_state = 39, .external_lex_state = 12}, + [5883] = {.lex_state = 39, .external_lex_state = 11}, + [5884] = {.lex_state = 39, .external_lex_state = 11}, + [5885] = {.lex_state = 39, .external_lex_state = 11}, + [5886] = {.lex_state = 39, .external_lex_state = 11}, + [5887] = {.lex_state = 39, .external_lex_state = 11}, [5888] = {.lex_state = 39, .external_lex_state = 11}, [5889] = {.lex_state = 39, .external_lex_state = 11}, - [5890] = {.lex_state = 39, .external_lex_state = 13}, + [5890] = {.lex_state = 39, .external_lex_state = 11}, [5891] = {.lex_state = 39, .external_lex_state = 12}, - [5892] = {.lex_state = 39, .external_lex_state = 14}, - [5893] = {.lex_state = 39, .external_lex_state = 12}, - [5894] = {.lex_state = 39, .external_lex_state = 12}, + [5892] = {.lex_state = 39, .external_lex_state = 11}, + [5893] = {.lex_state = 39, .external_lex_state = 11}, + [5894] = {.lex_state = 39, .external_lex_state = 11}, [5895] = {.lex_state = 39, .external_lex_state = 11}, [5896] = {.lex_state = 39, .external_lex_state = 11}, - [5897] = {.lex_state = 39, .external_lex_state = 13}, + [5897] = {.lex_state = 39, .external_lex_state = 11}, [5898] = {.lex_state = 39, .external_lex_state = 11}, [5899] = {.lex_state = 39, .external_lex_state = 11}, [5900] = {.lex_state = 39, .external_lex_state = 11}, [5901] = {.lex_state = 39, .external_lex_state = 11}, [5902] = {.lex_state = 39, .external_lex_state = 13}, - [5903] = {.lex_state = 39, .external_lex_state = 13}, + [5903] = {.lex_state = 39, .external_lex_state = 12}, [5904] = {.lex_state = 39, .external_lex_state = 11}, - [5905] = {.lex_state = 39, .external_lex_state = 10}, - [5906] = {.lex_state = 39, .external_lex_state = 12}, - [5907] = {.lex_state = 39, .external_lex_state = 11}, - [5908] = {.lex_state = 39, .external_lex_state = 13}, + [5905] = {.lex_state = 39, .external_lex_state = 12}, + [5906] = {.lex_state = 39, .external_lex_state = 11}, + [5907] = {.lex_state = 39, .external_lex_state = 12}, + [5908] = {.lex_state = 39, .external_lex_state = 12}, [5909] = {.lex_state = 39, .external_lex_state = 11}, - [5910] = {.lex_state = 39, .external_lex_state = 11}, + [5910] = {.lex_state = 39, .external_lex_state = 2}, [5911] = {.lex_state = 39, .external_lex_state = 11}, [5912] = {.lex_state = 39, .external_lex_state = 11}, - [5913] = {.lex_state = 39, .external_lex_state = 11}, + [5913] = {.lex_state = 39, .external_lex_state = 12}, [5914] = {.lex_state = 39, .external_lex_state = 11}, [5915] = {.lex_state = 39, .external_lex_state = 11}, - [5916] = {.lex_state = 39, .external_lex_state = 11}, - [5917] = {.lex_state = 39, .external_lex_state = 12}, - [5918] = {.lex_state = 39, .external_lex_state = 12}, - [5919] = {.lex_state = 39, .external_lex_state = 11}, + [5916] = {.lex_state = 39, .external_lex_state = 13}, + [5917] = {.lex_state = 23, .external_lex_state = 11}, + [5918] = {.lex_state = 39, .external_lex_state = 11}, + [5919] = {.lex_state = 39, .external_lex_state = 10}, [5920] = {.lex_state = 39, .external_lex_state = 11}, [5921] = {.lex_state = 39, .external_lex_state = 11}, - [5922] = {.lex_state = 39, .external_lex_state = 14}, - [5923] = {.lex_state = 39, .external_lex_state = 12}, - [5924] = {.lex_state = 39, .external_lex_state = 12}, - [5925] = {.lex_state = 39, .external_lex_state = 12}, + [5922] = {.lex_state = 39, .external_lex_state = 11}, + [5923] = {.lex_state = 39, .external_lex_state = 10}, + [5924] = {.lex_state = 39, .external_lex_state = 11}, + [5925] = {.lex_state = 39, .external_lex_state = 11}, [5926] = {.lex_state = 39, .external_lex_state = 11}, [5927] = {.lex_state = 39, .external_lex_state = 12}, [5928] = {.lex_state = 39, .external_lex_state = 12}, [5929] = {.lex_state = 39, .external_lex_state = 12}, - [5930] = {.lex_state = 39, .external_lex_state = 13}, + [5930] = {.lex_state = 39, .external_lex_state = 10}, [5931] = {.lex_state = 39, .external_lex_state = 11}, - [5932] = {.lex_state = 39, .external_lex_state = 11}, + [5932] = {.lex_state = 39, .external_lex_state = 12}, [5933] = {.lex_state = 39, .external_lex_state = 12}, - [5934] = {.lex_state = 39, .external_lex_state = 11}, - [5935] = {.lex_state = 39, .external_lex_state = 11}, - [5936] = {.lex_state = 68, .external_lex_state = 11}, - [5937] = {.lex_state = 39, .external_lex_state = 11}, + [5934] = {.lex_state = 39, .external_lex_state = 12}, + [5935] = {.lex_state = 39, .external_lex_state = 12}, + [5936] = {.lex_state = 39, .external_lex_state = 10}, + [5937] = {.lex_state = 39, .external_lex_state = 13}, [5938] = {.lex_state = 39, .external_lex_state = 12}, [5939] = {.lex_state = 39, .external_lex_state = 13}, [5940] = {.lex_state = 39, .external_lex_state = 11}, [5941] = {.lex_state = 39, .external_lex_state = 11}, [5942] = {.lex_state = 39, .external_lex_state = 11}, - [5943] = {.lex_state = 39, .external_lex_state = 12}, + [5943] = {.lex_state = 39, .external_lex_state = 10}, [5944] = {.lex_state = 39, .external_lex_state = 11}, - [5945] = {.lex_state = 68, .external_lex_state = 11}, - [5946] = {.lex_state = 39, .external_lex_state = 12}, + [5945] = {.lex_state = 39, .external_lex_state = 11}, + [5946] = {.lex_state = 39, .external_lex_state = 11}, [5947] = {.lex_state = 39, .external_lex_state = 11}, - [5948] = {.lex_state = 39, .external_lex_state = 12}, - [5949] = {.lex_state = 39, .external_lex_state = 12}, - [5950] = {.lex_state = 39, .external_lex_state = 11}, - [5951] = {.lex_state = 39, .external_lex_state = 12}, - [5952] = {.lex_state = 39, .external_lex_state = 11}, - [5953] = {.lex_state = 39, .external_lex_state = 11}, - [5954] = {.lex_state = 39, .external_lex_state = 11}, - [5955] = {.lex_state = 39, .external_lex_state = 11}, - [5956] = {.lex_state = 39, .external_lex_state = 11}, + [5948] = {.lex_state = 39, .external_lex_state = 11}, + [5949] = {.lex_state = 39, .external_lex_state = 11}, + [5950] = {.lex_state = 39, .external_lex_state = 13}, + [5951] = {.lex_state = 39, .external_lex_state = 11}, + [5952] = {.lex_state = 39, .external_lex_state = 10}, + [5953] = {.lex_state = 39, .external_lex_state = 10}, + [5954] = {.lex_state = 39, .external_lex_state = 13}, + [5955] = {.lex_state = 39, .external_lex_state = 12}, + [5956] = {.lex_state = 39, .external_lex_state = 12}, [5957] = {.lex_state = 39, .external_lex_state = 11}, - [5958] = {.lex_state = 39, .external_lex_state = 11}, + [5958] = {.lex_state = 39, .external_lex_state = 10}, [5959] = {.lex_state = 39, .external_lex_state = 11}, - [5960] = {.lex_state = 39, .external_lex_state = 11}, + [5960] = {.lex_state = 39, .external_lex_state = 12}, [5961] = {.lex_state = 39, .external_lex_state = 11}, - [5962] = {.lex_state = 39, .external_lex_state = 11}, - [5963] = {.lex_state = 39, .external_lex_state = 14}, - [5964] = {.lex_state = 39, .external_lex_state = 11}, + [5962] = {.lex_state = 39, .external_lex_state = 10}, + [5963] = {.lex_state = 39, .external_lex_state = 11}, + [5964] = {.lex_state = 39, .external_lex_state = 12}, [5965] = {.lex_state = 39, .external_lex_state = 11}, [5966] = {.lex_state = 39, .external_lex_state = 11}, - [5967] = {.lex_state = 39, .external_lex_state = 12}, + [5967] = {.lex_state = 39, .external_lex_state = 11}, [5968] = {.lex_state = 39, .external_lex_state = 11}, - [5969] = {.lex_state = 39, .external_lex_state = 11}, - [5970] = {.lex_state = 39, .external_lex_state = 11}, - [5971] = {.lex_state = 39, .external_lex_state = 12}, + [5969] = {.lex_state = 39, .external_lex_state = 10}, + [5970] = {.lex_state = 39, .external_lex_state = 14}, + [5971] = {.lex_state = 39, .external_lex_state = 10}, [5972] = {.lex_state = 39, .external_lex_state = 11}, - [5973] = {.lex_state = 39, .external_lex_state = 12}, - [5974] = {.lex_state = 39, .external_lex_state = 11}, + [5973] = {.lex_state = 39, .external_lex_state = 13}, + [5974] = {.lex_state = 39, .external_lex_state = 12}, [5975] = {.lex_state = 39, .external_lex_state = 11}, - [5976] = {.lex_state = 39, .external_lex_state = 11}, - [5977] = {.lex_state = 39, .external_lex_state = 11}, + [5976] = {.lex_state = 39, .external_lex_state = 12}, + [5977] = {.lex_state = 39, .external_lex_state = 12}, [5978] = {.lex_state = 39, .external_lex_state = 11}, - [5979] = {.lex_state = 39, .external_lex_state = 11}, - [5980] = {.lex_state = 39, .external_lex_state = 14}, + [5979] = {.lex_state = 39, .external_lex_state = 12}, + [5980] = {.lex_state = 39, .external_lex_state = 11}, [5981] = {.lex_state = 39, .external_lex_state = 11}, [5982] = {.lex_state = 39, .external_lex_state = 11}, - [5983] = {.lex_state = 39, .external_lex_state = 11}, - [5984] = {.lex_state = 39, .external_lex_state = 11}, - [5985] = {.lex_state = 39, .external_lex_state = 11}, - [5986] = {.lex_state = 39, .external_lex_state = 12}, + [5983] = {.lex_state = 39, .external_lex_state = 12}, + [5984] = {.lex_state = 39, .external_lex_state = 12}, + [5985] = {.lex_state = 39, .external_lex_state = 12}, + [5986] = {.lex_state = 39, .external_lex_state = 11}, [5987] = {.lex_state = 39, .external_lex_state = 11}, - [5988] = {.lex_state = 39, .external_lex_state = 11}, - [5989] = {.lex_state = 39, .external_lex_state = 13}, + [5988] = {.lex_state = 39, .external_lex_state = 14}, + [5989] = {.lex_state = 39, .external_lex_state = 12}, [5990] = {.lex_state = 39, .external_lex_state = 11}, [5991] = {.lex_state = 39, .external_lex_state = 12}, [5992] = {.lex_state = 39, .external_lex_state = 11}, - [5993] = {.lex_state = 39, .external_lex_state = 12}, - [5994] = {.lex_state = 39, .external_lex_state = 11}, + [5993] = {.lex_state = 39, .external_lex_state = 14}, + [5994] = {.lex_state = 39, .external_lex_state = 12}, [5995] = {.lex_state = 39, .external_lex_state = 11}, [5996] = {.lex_state = 39, .external_lex_state = 11}, - [5997] = {.lex_state = 39, .external_lex_state = 12}, + [5997] = {.lex_state = 39, .external_lex_state = 11}, [5998] = {.lex_state = 39, .external_lex_state = 11}, [5999] = {.lex_state = 39, .external_lex_state = 11}, - [6000] = {.lex_state = 39, .external_lex_state = 14}, + [6000] = {.lex_state = 39, .external_lex_state = 11}, [6001] = {.lex_state = 39, .external_lex_state = 11}, [6002] = {.lex_state = 39, .external_lex_state = 11}, [6003] = {.lex_state = 39, .external_lex_state = 11}, - [6004] = {.lex_state = 39, .external_lex_state = 12}, - [6005] = {.lex_state = 39, .external_lex_state = 11}, - [6006] = {.lex_state = 39, .external_lex_state = 14}, + [6004] = {.lex_state = 39, .external_lex_state = 14}, + [6005] = {.lex_state = 39, .external_lex_state = 13}, + [6006] = {.lex_state = 39, .external_lex_state = 12}, [6007] = {.lex_state = 39, .external_lex_state = 11}, - [6008] = {.lex_state = 39, .external_lex_state = 11}, - [6009] = {.lex_state = 39, .external_lex_state = 12}, + [6008] = {.lex_state = 39, .external_lex_state = 12}, + [6009] = {.lex_state = 39, .external_lex_state = 11}, [6010] = {.lex_state = 39, .external_lex_state = 11}, [6011] = {.lex_state = 39, .external_lex_state = 11}, [6012] = {.lex_state = 39, .external_lex_state = 11}, - [6013] = {.lex_state = 39, .external_lex_state = 14}, - [6014] = {.lex_state = 68, .external_lex_state = 11}, + [6013] = {.lex_state = 39, .external_lex_state = 11}, + [6014] = {.lex_state = 39, .external_lex_state = 11}, [6015] = {.lex_state = 39, .external_lex_state = 13}, - [6016] = {.lex_state = 39, .external_lex_state = 12}, - [6017] = {.lex_state = 39, .external_lex_state = 12}, + [6016] = {.lex_state = 39, .external_lex_state = 11}, + [6017] = {.lex_state = 39, .external_lex_state = 11}, [6018] = {.lex_state = 39, .external_lex_state = 12}, - [6019] = {.lex_state = 39, .external_lex_state = 12}, + [6019] = {.lex_state = 39, .external_lex_state = 14}, [6020] = {.lex_state = 39, .external_lex_state = 12}, - [6021] = {.lex_state = 39, .external_lex_state = 13}, + [6021] = {.lex_state = 39, .external_lex_state = 10}, [6022] = {.lex_state = 39, .external_lex_state = 11}, [6023] = {.lex_state = 39, .external_lex_state = 11}, - [6024] = {.lex_state = 39, .external_lex_state = 11}, + [6024] = {.lex_state = 39, .external_lex_state = 10}, [6025] = {.lex_state = 39, .external_lex_state = 11}, - [6026] = {.lex_state = 39, .external_lex_state = 11}, + [6026] = {.lex_state = 39, .external_lex_state = 12}, [6027] = {.lex_state = 39, .external_lex_state = 11}, [6028] = {.lex_state = 39, .external_lex_state = 11}, - [6029] = {.lex_state = 39, .external_lex_state = 14}, - [6030] = {.lex_state = 39, .external_lex_state = 11}, - [6031] = {.lex_state = 39, .external_lex_state = 11}, - [6032] = {.lex_state = 39, .external_lex_state = 13}, + [6029] = {.lex_state = 39, .external_lex_state = 12}, + [6030] = {.lex_state = 39, .external_lex_state = 12}, + [6031] = {.lex_state = 39, .external_lex_state = 14}, + [6032] = {.lex_state = 39, .external_lex_state = 11}, [6033] = {.lex_state = 39, .external_lex_state = 12}, [6034] = {.lex_state = 39, .external_lex_state = 11}, - [6035] = {.lex_state = 39, .external_lex_state = 11}, + [6035] = {.lex_state = 68, .external_lex_state = 11}, [6036] = {.lex_state = 39, .external_lex_state = 12}, [6037] = {.lex_state = 39, .external_lex_state = 11}, [6038] = {.lex_state = 39, .external_lex_state = 11}, - [6039] = {.lex_state = 39, .external_lex_state = 11}, - [6040] = {.lex_state = 39, .external_lex_state = 12}, + [6039] = {.lex_state = 39, .external_lex_state = 12}, + [6040] = {.lex_state = 39, .external_lex_state = 11}, [6041] = {.lex_state = 39, .external_lex_state = 11}, [6042] = {.lex_state = 39, .external_lex_state = 11}, [6043] = {.lex_state = 39, .external_lex_state = 11}, - [6044] = {.lex_state = 39, .external_lex_state = 12}, + [6044] = {.lex_state = 39, .external_lex_state = 13}, [6045] = {.lex_state = 39, .external_lex_state = 11}, - [6046] = {.lex_state = 39, .external_lex_state = 11}, - [6047] = {.lex_state = 39, .external_lex_state = 11}, + [6046] = {.lex_state = 39, .external_lex_state = 12}, + [6047] = {.lex_state = 39, .external_lex_state = 14}, [6048] = {.lex_state = 39, .external_lex_state = 11}, [6049] = {.lex_state = 39, .external_lex_state = 11}, [6050] = {.lex_state = 39, .external_lex_state = 11}, - [6051] = {.lex_state = 39, .external_lex_state = 11}, - [6052] = {.lex_state = 39, .external_lex_state = 11}, - [6053] = {.lex_state = 39, .external_lex_state = 14}, - [6054] = {.lex_state = 39, .external_lex_state = 11}, + [6051] = {.lex_state = 39, .external_lex_state = 12}, + [6052] = {.lex_state = 68, .external_lex_state = 11}, + [6053] = {.lex_state = 39, .external_lex_state = 12}, + [6054] = {.lex_state = 39, .external_lex_state = 12}, [6055] = {.lex_state = 39, .external_lex_state = 11}, [6056] = {.lex_state = 39, .external_lex_state = 11}, [6057] = {.lex_state = 39, .external_lex_state = 11}, [6058] = {.lex_state = 39, .external_lex_state = 11}, [6059] = {.lex_state = 39, .external_lex_state = 11}, - [6060] = {.lex_state = 39, .external_lex_state = 11}, - [6061] = {.lex_state = 39, .external_lex_state = 11}, - [6062] = {.lex_state = 39, .external_lex_state = 11}, + [6060] = {.lex_state = 39, .external_lex_state = 12}, + [6061] = {.lex_state = 39, .external_lex_state = 13}, + [6062] = {.lex_state = 39, .external_lex_state = 14}, [6063] = {.lex_state = 39, .external_lex_state = 11}, - [6064] = {.lex_state = 39, .external_lex_state = 11}, + [6064] = {.lex_state = 39, .external_lex_state = 10}, [6065] = {.lex_state = 39, .external_lex_state = 11}, - [6066] = {.lex_state = 39, .external_lex_state = 11}, + [6066] = {.lex_state = 39, .external_lex_state = 12}, [6067] = {.lex_state = 39, .external_lex_state = 11}, [6068] = {.lex_state = 39, .external_lex_state = 11}, [6069] = {.lex_state = 39, .external_lex_state = 11}, - [6070] = {.lex_state = 39, .external_lex_state = 11}, - [6071] = {.lex_state = 39, .external_lex_state = 11}, + [6070] = {.lex_state = 68, .external_lex_state = 11}, + [6071] = {.lex_state = 39, .external_lex_state = 13}, [6072] = {.lex_state = 39, .external_lex_state = 11}, [6073] = {.lex_state = 39, .external_lex_state = 11}, - [6074] = {.lex_state = 39, .external_lex_state = 11}, + [6074] = {.lex_state = 39, .external_lex_state = 14}, [6075] = {.lex_state = 39, .external_lex_state = 11}, - [6076] = {.lex_state = 39, .external_lex_state = 11}, - [6077] = {.lex_state = 39, .external_lex_state = 12}, + [6076] = {.lex_state = 39, .external_lex_state = 10}, + [6077] = {.lex_state = 39, .external_lex_state = 11}, [6078] = {.lex_state = 39, .external_lex_state = 11}, - [6079] = {.lex_state = 39, .external_lex_state = 11}, - [6080] = {.lex_state = 39, .external_lex_state = 12}, - [6081] = {.lex_state = 39, .external_lex_state = 13}, - [6082] = {.lex_state = 39, .external_lex_state = 11}, + [6079] = {.lex_state = 39, .external_lex_state = 12}, + [6080] = {.lex_state = 39, .external_lex_state = 11}, + [6081] = {.lex_state = 39, .external_lex_state = 11}, + [6082] = {.lex_state = 39, .external_lex_state = 14}, [6083] = {.lex_state = 39, .external_lex_state = 11}, [6084] = {.lex_state = 39, .external_lex_state = 11}, - [6085] = {.lex_state = 39, .external_lex_state = 13}, + [6085] = {.lex_state = 39, .external_lex_state = 11}, [6086] = {.lex_state = 39, .external_lex_state = 11}, [6087] = {.lex_state = 39, .external_lex_state = 11}, - [6088] = {.lex_state = 39, .external_lex_state = 13}, + [6088] = {.lex_state = 39, .external_lex_state = 11}, [6089] = {.lex_state = 39, .external_lex_state = 11}, - [6090] = {.lex_state = 39, .external_lex_state = 11}, + [6090] = {.lex_state = 68, .external_lex_state = 11}, [6091] = {.lex_state = 39, .external_lex_state = 11}, - [6092] = {.lex_state = 39, .external_lex_state = 13}, - [6093] = {.lex_state = 39, .external_lex_state = 13}, - [6094] = {.lex_state = 39, .external_lex_state = 11}, + [6092] = {.lex_state = 39, .external_lex_state = 11}, + [6093] = {.lex_state = 39, .external_lex_state = 11}, + [6094] = {.lex_state = 39, .external_lex_state = 13}, [6095] = {.lex_state = 39, .external_lex_state = 11}, [6096] = {.lex_state = 39, .external_lex_state = 11}, [6097] = {.lex_state = 39, .external_lex_state = 12}, - [6098] = {.lex_state = 39, .external_lex_state = 11}, + [6098] = {.lex_state = 39, .external_lex_state = 12}, [6099] = {.lex_state = 39, .external_lex_state = 11}, - [6100] = {.lex_state = 39, .external_lex_state = 12}, - [6101] = {.lex_state = 39, .external_lex_state = 12}, - [6102] = {.lex_state = 39, .external_lex_state = 11}, - [6103] = {.lex_state = 39, .external_lex_state = 12}, - [6104] = {.lex_state = 39, .external_lex_state = 13}, - [6105] = {.lex_state = 39, .external_lex_state = 12}, - [6106] = {.lex_state = 39, .external_lex_state = 13}, - [6107] = {.lex_state = 39, .external_lex_state = 12}, + [6100] = {.lex_state = 39, .external_lex_state = 11}, + [6101] = {.lex_state = 39, .external_lex_state = 14}, + [6102] = {.lex_state = 39, .external_lex_state = 14}, + [6103] = {.lex_state = 39, .external_lex_state = 11}, + [6104] = {.lex_state = 39, .external_lex_state = 11}, + [6105] = {.lex_state = 68, .external_lex_state = 11}, + [6106] = {.lex_state = 39, .external_lex_state = 12}, + [6107] = {.lex_state = 39, .external_lex_state = 11}, [6108] = {.lex_state = 39, .external_lex_state = 11}, - [6109] = {.lex_state = 39, .external_lex_state = 12}, + [6109] = {.lex_state = 39, .external_lex_state = 14}, [6110] = {.lex_state = 39, .external_lex_state = 12}, - [6111] = {.lex_state = 39, .external_lex_state = 14}, - [6112] = {.lex_state = 39, .external_lex_state = 13}, - [6113] = {.lex_state = 39, .external_lex_state = 11}, - [6114] = {.lex_state = 39, .external_lex_state = 14}, + [6111] = {.lex_state = 39, .external_lex_state = 11}, + [6112] = {.lex_state = 39, .external_lex_state = 11}, + [6113] = {.lex_state = 39, .external_lex_state = 12}, + [6114] = {.lex_state = 39, .external_lex_state = 12}, [6115] = {.lex_state = 39, .external_lex_state = 11}, - [6116] = {.lex_state = 39, .external_lex_state = 12}, - [6117] = {.lex_state = 39, .external_lex_state = 12}, - [6118] = {.lex_state = 39, .external_lex_state = 11}, - [6119] = {.lex_state = 39, .external_lex_state = 12}, + [6116] = {.lex_state = 39, .external_lex_state = 11}, + [6117] = {.lex_state = 68, .external_lex_state = 11}, + [6118] = {.lex_state = 39, .external_lex_state = 12}, + [6119] = {.lex_state = 39, .external_lex_state = 11}, [6120] = {.lex_state = 39, .external_lex_state = 11}, [6121] = {.lex_state = 39, .external_lex_state = 12}, [6122] = {.lex_state = 39, .external_lex_state = 12}, [6123] = {.lex_state = 39, .external_lex_state = 11}, - [6124] = {.lex_state = 39, .external_lex_state = 12}, - [6125] = {.lex_state = 39, .external_lex_state = 12}, - [6126] = {.lex_state = 39, .external_lex_state = 11}, + [6124] = {.lex_state = 39, .external_lex_state = 11}, + [6125] = {.lex_state = 39, .external_lex_state = 14}, + [6126] = {.lex_state = 68, .external_lex_state = 11}, [6127] = {.lex_state = 39, .external_lex_state = 11}, [6128] = {.lex_state = 39, .external_lex_state = 11}, - [6129] = {.lex_state = 39, .external_lex_state = 12}, - [6130] = {.lex_state = 39, .external_lex_state = 12}, - [6131] = {.lex_state = 39, .external_lex_state = 12}, + [6129] = {.lex_state = 39, .external_lex_state = 10}, + [6130] = {.lex_state = 39, .external_lex_state = 14}, + [6131] = {.lex_state = 39, .external_lex_state = 11}, [6132] = {.lex_state = 39, .external_lex_state = 11}, - [6133] = {.lex_state = 39, .external_lex_state = 14}, - [6134] = {.lex_state = 39, .external_lex_state = 11}, - [6135] = {.lex_state = 39, .external_lex_state = 10}, - [6136] = {.lex_state = 39, .external_lex_state = 14}, - [6137] = {.lex_state = 39, .external_lex_state = 13}, - [6138] = {.lex_state = 39, .external_lex_state = 12}, + [6133] = {.lex_state = 39, .external_lex_state = 10}, + [6134] = {.lex_state = 39, .external_lex_state = 12}, + [6135] = {.lex_state = 39, .external_lex_state = 11}, + [6136] = {.lex_state = 39, .external_lex_state = 11}, + [6137] = {.lex_state = 39, .external_lex_state = 14}, + [6138] = {.lex_state = 39, .external_lex_state = 11}, [6139] = {.lex_state = 39, .external_lex_state = 11}, - [6140] = {.lex_state = 39, .external_lex_state = 12}, - [6141] = {.lex_state = 68, .external_lex_state = 11}, + [6140] = {.lex_state = 39, .external_lex_state = 11}, + [6141] = {.lex_state = 39, .external_lex_state = 12}, [6142] = {.lex_state = 39, .external_lex_state = 13}, - [6143] = {.lex_state = 39, .external_lex_state = 13}, - [6144] = {.lex_state = 39, .external_lex_state = 12}, - [6145] = {.lex_state = 39, .external_lex_state = 12}, - [6146] = {.lex_state = 39, .external_lex_state = 13}, + [6143] = {.lex_state = 68, .external_lex_state = 11}, + [6144] = {.lex_state = 39, .external_lex_state = 13}, + [6145] = {.lex_state = 39, .external_lex_state = 13}, + [6146] = {.lex_state = 39, .external_lex_state = 11}, [6147] = {.lex_state = 39, .external_lex_state = 11}, - [6148] = {.lex_state = 39, .external_lex_state = 12}, - [6149] = {.lex_state = 39, .external_lex_state = 14}, - [6150] = {.lex_state = 39, .external_lex_state = 12}, - [6151] = {.lex_state = 68, .external_lex_state = 11}, - [6152] = {.lex_state = 39, .external_lex_state = 11}, - [6153] = {.lex_state = 39, .external_lex_state = 14}, - [6154] = {.lex_state = 39, .external_lex_state = 11}, - [6155] = {.lex_state = 39, .external_lex_state = 11}, + [6148] = {.lex_state = 39, .external_lex_state = 13}, + [6149] = {.lex_state = 39, .external_lex_state = 13}, + [6150] = {.lex_state = 39, .external_lex_state = 13}, + [6151] = {.lex_state = 39, .external_lex_state = 12}, + [6152] = {.lex_state = 39, .external_lex_state = 14}, + [6153] = {.lex_state = 39, .external_lex_state = 12}, + [6154] = {.lex_state = 39, .external_lex_state = 12}, + [6155] = {.lex_state = 68, .external_lex_state = 11}, [6156] = {.lex_state = 39, .external_lex_state = 11}, [6157] = {.lex_state = 39, .external_lex_state = 11}, [6158] = {.lex_state = 39, .external_lex_state = 11}, [6159] = {.lex_state = 39, .external_lex_state = 11}, [6160] = {.lex_state = 39, .external_lex_state = 12}, - [6161] = {.lex_state = 39, .external_lex_state = 11}, + [6161] = {.lex_state = 39, .external_lex_state = 12}, [6162] = {.lex_state = 39, .external_lex_state = 12}, - [6163] = {.lex_state = 39, .external_lex_state = 13}, - [6164] = {.lex_state = 39, .external_lex_state = 14}, - [6165] = {.lex_state = 39, .external_lex_state = 11}, - [6166] = {.lex_state = 68, .external_lex_state = 11}, - [6167] = {.lex_state = 39, .external_lex_state = 10}, - [6168] = {.lex_state = 39, .external_lex_state = 11}, - [6169] = {.lex_state = 39, .external_lex_state = 11}, + [6163] = {.lex_state = 39, .external_lex_state = 12}, + [6164] = {.lex_state = 39, .external_lex_state = 11}, + [6165] = {.lex_state = 39, .external_lex_state = 14}, + [6166] = {.lex_state = 39, .external_lex_state = 11}, + [6167] = {.lex_state = 39, .external_lex_state = 13}, + [6168] = {.lex_state = 39, .external_lex_state = 14}, + [6169] = {.lex_state = 39, .external_lex_state = 10}, [6170] = {.lex_state = 39, .external_lex_state = 11}, - [6171] = {.lex_state = 39, .external_lex_state = 12}, - [6172] = {.lex_state = 39, .external_lex_state = 14}, - [6173] = {.lex_state = 39, .external_lex_state = 12}, - [6174] = {.lex_state = 39, .external_lex_state = 10}, - [6175] = {.lex_state = 39, .external_lex_state = 14}, - [6176] = {.lex_state = 39, .external_lex_state = 10}, - [6177] = {.lex_state = 39, .external_lex_state = 12}, - [6178] = {.lex_state = 39, .external_lex_state = 11}, - [6179] = {.lex_state = 39, .external_lex_state = 11}, + [6171] = {.lex_state = 68, .external_lex_state = 11}, + [6172] = {.lex_state = 39, .external_lex_state = 11}, + [6173] = {.lex_state = 39, .external_lex_state = 11}, + [6174] = {.lex_state = 39, .external_lex_state = 13}, + [6175] = {.lex_state = 39, .external_lex_state = 12}, + [6176] = {.lex_state = 39, .external_lex_state = 12}, + [6177] = {.lex_state = 39, .external_lex_state = 14}, + [6178] = {.lex_state = 39, .external_lex_state = 10}, + [6179] = {.lex_state = 39, .external_lex_state = 14}, [6180] = {.lex_state = 39, .external_lex_state = 12}, - [6181] = {.lex_state = 39, .external_lex_state = 11}, - [6182] = {.lex_state = 39, .external_lex_state = 13}, + [6181] = {.lex_state = 68, .external_lex_state = 11}, + [6182] = {.lex_state = 39, .external_lex_state = 12}, [6183] = {.lex_state = 39, .external_lex_state = 12}, - [6184] = {.lex_state = 39, .external_lex_state = 10}, - [6185] = {.lex_state = 68, .external_lex_state = 11}, - [6186] = {.lex_state = 39, .external_lex_state = 12}, - [6187] = {.lex_state = 39, .external_lex_state = 11}, + [6184] = {.lex_state = 39, .external_lex_state = 11}, + [6185] = {.lex_state = 39, .external_lex_state = 11}, + [6186] = {.lex_state = 39, .external_lex_state = 11}, + [6187] = {.lex_state = 39, .external_lex_state = 14}, [6188] = {.lex_state = 39, .external_lex_state = 12}, [6189] = {.lex_state = 39, .external_lex_state = 11}, - [6190] = {.lex_state = 39, .external_lex_state = 12}, - [6191] = {.lex_state = 39, .external_lex_state = 11}, - [6192] = {.lex_state = 39, .external_lex_state = 12}, - [6193] = {.lex_state = 39, .external_lex_state = 13}, + [6190] = {.lex_state = 39, .external_lex_state = 11}, + [6191] = {.lex_state = 39, .external_lex_state = 12}, + [6192] = {.lex_state = 68, .external_lex_state = 11}, + [6193] = {.lex_state = 39, .external_lex_state = 11}, [6194] = {.lex_state = 39, .external_lex_state = 13}, - [6195] = {.lex_state = 39, .external_lex_state = 11}, - [6196] = {.lex_state = 39, .external_lex_state = 14}, + [6195] = {.lex_state = 39, .external_lex_state = 12}, + [6196] = {.lex_state = 39, .external_lex_state = 11}, [6197] = {.lex_state = 39, .external_lex_state = 11}, - [6198] = {.lex_state = 39, .external_lex_state = 11}, - [6199] = {.lex_state = 39, .external_lex_state = 12}, - [6200] = {.lex_state = 39, .external_lex_state = 11}, - [6201] = {.lex_state = 39, .external_lex_state = 13}, - [6202] = {.lex_state = 68, .external_lex_state = 11}, - [6203] = {.lex_state = 39, .external_lex_state = 14}, - [6204] = {.lex_state = 39, .external_lex_state = 11}, + [6198] = {.lex_state = 39, .external_lex_state = 10}, + [6199] = {.lex_state = 39, .external_lex_state = 13}, + [6200] = {.lex_state = 39, .external_lex_state = 12}, + [6201] = {.lex_state = 39, .external_lex_state = 11}, + [6202] = {.lex_state = 39, .external_lex_state = 11}, + [6203] = {.lex_state = 39, .external_lex_state = 11}, + [6204] = {.lex_state = 39, .external_lex_state = 14}, [6205] = {.lex_state = 39, .external_lex_state = 12}, [6206] = {.lex_state = 39, .external_lex_state = 11}, - [6207] = {.lex_state = 39, .external_lex_state = 12}, - [6208] = {.lex_state = 39, .external_lex_state = 14}, + [6207] = {.lex_state = 68, .external_lex_state = 11}, + [6208] = {.lex_state = 39, .external_lex_state = 10}, [6209] = {.lex_state = 39, .external_lex_state = 12}, - [6210] = {.lex_state = 39, .external_lex_state = 13}, + [6210] = {.lex_state = 39, .external_lex_state = 12}, [6211] = {.lex_state = 39, .external_lex_state = 11}, - [6212] = {.lex_state = 39, .external_lex_state = 11}, - [6213] = {.lex_state = 39, .external_lex_state = 12}, - [6214] = {.lex_state = 39, .external_lex_state = 12}, + [6212] = {.lex_state = 39, .external_lex_state = 10}, + [6213] = {.lex_state = 39, .external_lex_state = 10}, + [6214] = {.lex_state = 39, .external_lex_state = 11}, [6215] = {.lex_state = 39, .external_lex_state = 11}, - [6216] = {.lex_state = 39, .external_lex_state = 11}, + [6216] = {.lex_state = 39, .external_lex_state = 10}, [6217] = {.lex_state = 39, .external_lex_state = 11}, - [6218] = {.lex_state = 68, .external_lex_state = 11}, + [6218] = {.lex_state = 39, .external_lex_state = 13}, [6219] = {.lex_state = 39, .external_lex_state = 11}, [6220] = {.lex_state = 39, .external_lex_state = 11}, - [6221] = {.lex_state = 39, .external_lex_state = 11}, + [6221] = {.lex_state = 39, .external_lex_state = 10}, [6222] = {.lex_state = 39, .external_lex_state = 11}, [6223] = {.lex_state = 39, .external_lex_state = 11}, [6224] = {.lex_state = 39, .external_lex_state = 11}, - [6225] = {.lex_state = 39, .external_lex_state = 11}, - [6226] = {.lex_state = 39, .external_lex_state = 12}, - [6227] = {.lex_state = 39, .external_lex_state = 11}, - [6228] = {.lex_state = 39, .external_lex_state = 10}, - [6229] = {.lex_state = 39, .external_lex_state = 12}, - [6230] = {.lex_state = 39, .external_lex_state = 11}, - [6231] = {.lex_state = 39, .external_lex_state = 12}, - [6232] = {.lex_state = 39, .external_lex_state = 14}, + [6225] = {.lex_state = 39, .external_lex_state = 14}, + [6226] = {.lex_state = 39, .external_lex_state = 13}, + [6227] = {.lex_state = 39, .external_lex_state = 12}, + [6228] = {.lex_state = 39, .external_lex_state = 12}, + [6229] = {.lex_state = 39, .external_lex_state = 10}, + [6230] = {.lex_state = 39, .external_lex_state = 12}, + [6231] = {.lex_state = 39, .external_lex_state = 14}, + [6232] = {.lex_state = 39, .external_lex_state = 11}, [6233] = {.lex_state = 39, .external_lex_state = 13}, - [6234] = {.lex_state = 39, .external_lex_state = 11}, - [6235] = {.lex_state = 39, .external_lex_state = 11}, - [6236] = {.lex_state = 39, .external_lex_state = 11}, - [6237] = {.lex_state = 39, .external_lex_state = 11}, + [6234] = {.lex_state = 39, .external_lex_state = 14}, + [6235] = {.lex_state = 39, .external_lex_state = 12}, + [6236] = {.lex_state = 39, .external_lex_state = 10}, + [6237] = {.lex_state = 39, .external_lex_state = 12}, [6238] = {.lex_state = 39, .external_lex_state = 11}, - [6239] = {.lex_state = 39, .external_lex_state = 12}, - [6240] = {.lex_state = 39, .external_lex_state = 11}, - [6241] = {.lex_state = 39, .external_lex_state = 11}, - [6242] = {.lex_state = 39, .external_lex_state = 12}, - [6243] = {.lex_state = 39, .external_lex_state = 11}, - [6244] = {.lex_state = 39, .external_lex_state = 12}, - [6245] = {.lex_state = 39, .external_lex_state = 14}, - [6246] = {.lex_state = 39, .external_lex_state = 11}, - [6247] = {.lex_state = 39, .external_lex_state = 14}, - [6248] = {.lex_state = 39, .external_lex_state = 11}, - [6249] = {.lex_state = 39, .external_lex_state = 12}, + [6239] = {.lex_state = 39, .external_lex_state = 11}, + [6240] = {.lex_state = 39, .external_lex_state = 12}, + [6241] = {.lex_state = 39, .external_lex_state = 12}, + [6242] = {.lex_state = 39, .external_lex_state = 11}, + [6243] = {.lex_state = 39, .external_lex_state = 12}, + [6244] = {.lex_state = 39, .external_lex_state = 13}, + [6245] = {.lex_state = 39, .external_lex_state = 11}, + [6246] = {.lex_state = 39, .external_lex_state = 12}, + [6247] = {.lex_state = 39, .external_lex_state = 11}, + [6248] = {.lex_state = 39, .external_lex_state = 12}, + [6249] = {.lex_state = 39, .external_lex_state = 11}, [6250] = {.lex_state = 39, .external_lex_state = 11}, - [6251] = {.lex_state = 39, .external_lex_state = 11}, - [6252] = {.lex_state = 39, .external_lex_state = 12}, - [6253] = {.lex_state = 39, .external_lex_state = 11}, - [6254] = {.lex_state = 39, .external_lex_state = 13}, - [6255] = {.lex_state = 68, .external_lex_state = 11}, + [6251] = {.lex_state = 39, .external_lex_state = 13}, + [6252] = {.lex_state = 39, .external_lex_state = 14}, + [6253] = {.lex_state = 39, .external_lex_state = 12}, + [6254] = {.lex_state = 39, .external_lex_state = 11}, + [6255] = {.lex_state = 39, .external_lex_state = 11}, [6256] = {.lex_state = 39, .external_lex_state = 11}, [6257] = {.lex_state = 39, .external_lex_state = 11}, [6258] = {.lex_state = 39, .external_lex_state = 11}, - [6259] = {.lex_state = 39, .external_lex_state = 12}, - [6260] = {.lex_state = 39, .external_lex_state = 11}, - [6261] = {.lex_state = 39, .external_lex_state = 12}, + [6259] = {.lex_state = 39, .external_lex_state = 14}, + [6260] = {.lex_state = 39, .external_lex_state = 12}, + [6261] = {.lex_state = 39, .external_lex_state = 11}, [6262] = {.lex_state = 39, .external_lex_state = 12}, - [6263] = {.lex_state = 68, .external_lex_state = 11}, + [6263] = {.lex_state = 39, .external_lex_state = 12}, [6264] = {.lex_state = 68, .external_lex_state = 11}, [6265] = {.lex_state = 39, .external_lex_state = 12}, - [6266] = {.lex_state = 39, .external_lex_state = 12}, - [6267] = {.lex_state = 39, .external_lex_state = 12}, + [6266] = {.lex_state = 39, .external_lex_state = 14}, + [6267] = {.lex_state = 39, .external_lex_state = 14}, [6268] = {.lex_state = 39, .external_lex_state = 12}, - [6269] = {.lex_state = 39, .external_lex_state = 14}, - [6270] = {.lex_state = 39, .external_lex_state = 14}, - [6271] = {.lex_state = 39, .external_lex_state = 12}, - [6272] = {.lex_state = 39, .external_lex_state = 13}, - [6273] = {.lex_state = 68, .external_lex_state = 11}, + [6269] = {.lex_state = 39, .external_lex_state = 10}, + [6270] = {.lex_state = 39, .external_lex_state = 12}, + [6271] = {.lex_state = 39, .external_lex_state = 10}, + [6272] = {.lex_state = 39, .external_lex_state = 10}, + [6273] = {.lex_state = 39, .external_lex_state = 10}, [6274] = {.lex_state = 39, .external_lex_state = 12}, - [6275] = {.lex_state = 39, .external_lex_state = 12}, - [6276] = {.lex_state = 39, .external_lex_state = 11}, - [6277] = {.lex_state = 39, .external_lex_state = 11}, - [6278] = {.lex_state = 23, .external_lex_state = 11}, - [6279] = {.lex_state = 39, .external_lex_state = 14}, - [6280] = {.lex_state = 39, .external_lex_state = 13}, - [6281] = {.lex_state = 39, .external_lex_state = 11}, - [6282] = {.lex_state = 39, .external_lex_state = 11}, - [6283] = {.lex_state = 39, .external_lex_state = 14}, - [6284] = {.lex_state = 39, .external_lex_state = 12}, - [6285] = {.lex_state = 39, .external_lex_state = 11}, - [6286] = {.lex_state = 39, .external_lex_state = 14}, - [6287] = {.lex_state = 39, .external_lex_state = 11}, + [6275] = {.lex_state = 39, .external_lex_state = 11}, + [6276] = {.lex_state = 39, .external_lex_state = 12}, + [6277] = {.lex_state = 39, .external_lex_state = 12}, + [6278] = {.lex_state = 39, .external_lex_state = 12}, + [6279] = {.lex_state = 39, .external_lex_state = 12}, + [6280] = {.lex_state = 39, .external_lex_state = 10}, + [6281] = {.lex_state = 39, .external_lex_state = 12}, + [6282] = {.lex_state = 39, .external_lex_state = 12}, + [6283] = {.lex_state = 39, .external_lex_state = 12}, + [6284] = {.lex_state = 39, .external_lex_state = 11}, + [6285] = {.lex_state = 39, .external_lex_state = 12}, + [6286] = {.lex_state = 39, .external_lex_state = 11}, + [6287] = {.lex_state = 39, .external_lex_state = 13}, [6288] = {.lex_state = 39, .external_lex_state = 11}, - [6289] = {.lex_state = 39, .external_lex_state = 10}, - [6290] = {.lex_state = 39, .external_lex_state = 12}, - [6291] = {.lex_state = 39, .external_lex_state = 14}, - [6292] = {.lex_state = 68, .external_lex_state = 11}, - [6293] = {.lex_state = 39, .external_lex_state = 11}, - [6294] = {.lex_state = 39, .external_lex_state = 12}, - [6295] = {.lex_state = 39, .external_lex_state = 11}, - [6296] = {.lex_state = 68, .external_lex_state = 11}, + [6289] = {.lex_state = 39, .external_lex_state = 12}, + [6290] = {.lex_state = 39, .external_lex_state = 11}, + [6291] = {.lex_state = 39, .external_lex_state = 11}, + [6292] = {.lex_state = 39, .external_lex_state = 13}, + [6293] = {.lex_state = 39, .external_lex_state = 13}, + [6294] = {.lex_state = 39, .external_lex_state = 11}, + [6295] = {.lex_state = 39, .external_lex_state = 12}, + [6296] = {.lex_state = 39, .external_lex_state = 12}, [6297] = {.lex_state = 39, .external_lex_state = 11}, - [6298] = {.lex_state = 39, .external_lex_state = 11}, - [6299] = {.lex_state = 39, .external_lex_state = 11}, - [6300] = {.lex_state = 39, .external_lex_state = 12}, + [6298] = {.lex_state = 39, .external_lex_state = 13}, + [6299] = {.lex_state = 39, .external_lex_state = 12}, + [6300] = {.lex_state = 39, .external_lex_state = 11}, [6301] = {.lex_state = 39, .external_lex_state = 10}, [6302] = {.lex_state = 39, .external_lex_state = 11}, - [6303] = {.lex_state = 39, .external_lex_state = 12}, - [6304] = {.lex_state = 39, .external_lex_state = 13}, + [6303] = {.lex_state = 39, .external_lex_state = 11}, + [6304] = {.lex_state = 39, .external_lex_state = 14}, [6305] = {.lex_state = 39, .external_lex_state = 11}, [6306] = {.lex_state = 39, .external_lex_state = 11}, - [6307] = {.lex_state = 39, .external_lex_state = 11}, + [6307] = {.lex_state = 39, .external_lex_state = 10}, [6308] = {.lex_state = 39, .external_lex_state = 11}, [6309] = {.lex_state = 39, .external_lex_state = 11}, [6310] = {.lex_state = 39, .external_lex_state = 11}, - [6311] = {.lex_state = 39, .external_lex_state = 11}, - [6312] = {.lex_state = 39, .external_lex_state = 11}, - [6313] = {.lex_state = 39, .external_lex_state = 11}, - [6314] = {.lex_state = 39, .external_lex_state = 12}, - [6315] = {.lex_state = 39, .external_lex_state = 14}, - [6316] = {.lex_state = 39, .external_lex_state = 12}, - [6317] = {.lex_state = 39, .external_lex_state = 11}, - [6318] = {.lex_state = 39, .external_lex_state = 12}, + [6311] = {.lex_state = 39, .external_lex_state = 12}, + [6312] = {.lex_state = 68, .external_lex_state = 11}, + [6313] = {.lex_state = 39, .external_lex_state = 13}, + [6314] = {.lex_state = 39, .external_lex_state = 11}, + [6315] = {.lex_state = 39, .external_lex_state = 11}, + [6316] = {.lex_state = 39, .external_lex_state = 11}, + [6317] = {.lex_state = 39, .external_lex_state = 12}, + [6318] = {.lex_state = 39, .external_lex_state = 11}, [6319] = {.lex_state = 39, .external_lex_state = 11}, - [6320] = {.lex_state = 39, .external_lex_state = 13}, - [6321] = {.lex_state = 39, .external_lex_state = 13}, - [6322] = {.lex_state = 39, .external_lex_state = 12}, - [6323] = {.lex_state = 39, .external_lex_state = 12}, - [6324] = {.lex_state = 39, .external_lex_state = 10}, - [6325] = {.lex_state = 68, .external_lex_state = 11}, + [6320] = {.lex_state = 39, .external_lex_state = 12}, + [6321] = {.lex_state = 39, .external_lex_state = 11}, + [6322] = {.lex_state = 39, .external_lex_state = 11}, + [6323] = {.lex_state = 39, .external_lex_state = 11}, + [6324] = {.lex_state = 39, .external_lex_state = 12}, + [6325] = {.lex_state = 39, .external_lex_state = 11}, [6326] = {.lex_state = 39, .external_lex_state = 11}, - [6327] = {.lex_state = 39, .external_lex_state = 11}, - [6328] = {.lex_state = 39, .external_lex_state = 12}, - [6329] = {.lex_state = 39, .external_lex_state = 10}, + [6327] = {.lex_state = 39, .external_lex_state = 10}, + [6328] = {.lex_state = 39, .external_lex_state = 11}, + [6329] = {.lex_state = 39, .external_lex_state = 11}, [6330] = {.lex_state = 39, .external_lex_state = 11}, - [6331] = {.lex_state = 39, .external_lex_state = 12}, - [6332] = {.lex_state = 39, .external_lex_state = 10}, + [6331] = {.lex_state = 39, .external_lex_state = 11}, + [6332] = {.lex_state = 39, .external_lex_state = 12}, [6333] = {.lex_state = 39, .external_lex_state = 11}, [6334] = {.lex_state = 39, .external_lex_state = 11}, - [6335] = {.lex_state = 39, .external_lex_state = 11}, - [6336] = {.lex_state = 39, .external_lex_state = 10}, - [6337] = {.lex_state = 39, .external_lex_state = 10}, - [6338] = {.lex_state = 39, .external_lex_state = 12}, - [6339] = {.lex_state = 39, .external_lex_state = 14}, - [6340] = {.lex_state = 39, .external_lex_state = 11}, - [6341] = {.lex_state = 39, .external_lex_state = 11}, - [6342] = {.lex_state = 39, .external_lex_state = 11}, - [6343] = {.lex_state = 39, .external_lex_state = 11}, - [6344] = {.lex_state = 39, .external_lex_state = 11}, + [6335] = {.lex_state = 39, .external_lex_state = 12}, + [6336] = {.lex_state = 39, .external_lex_state = 12}, + [6337] = {.lex_state = 39, .external_lex_state = 11}, + [6338] = {.lex_state = 39, .external_lex_state = 13}, + [6339] = {.lex_state = 39, .external_lex_state = 11}, + [6340] = {.lex_state = 39, .external_lex_state = 12}, + [6341] = {.lex_state = 39, .external_lex_state = 14}, + [6342] = {.lex_state = 39, .external_lex_state = 12}, + [6343] = {.lex_state = 39, .external_lex_state = 12}, + [6344] = {.lex_state = 39, .external_lex_state = 12}, [6345] = {.lex_state = 39, .external_lex_state = 11}, - [6346] = {.lex_state = 39, .external_lex_state = 11}, - [6347] = {.lex_state = 39, .external_lex_state = 11}, - [6348] = {.lex_state = 39, .external_lex_state = 11}, - [6349] = {.lex_state = 68, .external_lex_state = 11}, - [6350] = {.lex_state = 39, .external_lex_state = 11}, + [6346] = {.lex_state = 39, .external_lex_state = 12}, + [6347] = {.lex_state = 39, .external_lex_state = 14}, + [6348] = {.lex_state = 39, .external_lex_state = 12}, + [6349] = {.lex_state = 39, .external_lex_state = 12}, + [6350] = {.lex_state = 39, .external_lex_state = 12}, [6351] = {.lex_state = 39, .external_lex_state = 11}, [6352] = {.lex_state = 39, .external_lex_state = 11}, [6353] = {.lex_state = 39, .external_lex_state = 11}, - [6354] = {.lex_state = 39, .external_lex_state = 11}, - [6355] = {.lex_state = 39, .external_lex_state = 11}, - [6356] = {.lex_state = 39, .external_lex_state = 11}, - [6357] = {.lex_state = 39, .external_lex_state = 11}, - [6358] = {.lex_state = 39, .external_lex_state = 11}, + [6354] = {.lex_state = 39, .external_lex_state = 12}, + [6355] = {.lex_state = 39, .external_lex_state = 12}, + [6356] = {.lex_state = 39, .external_lex_state = 12}, + [6357] = {.lex_state = 39, .external_lex_state = 12}, + [6358] = {.lex_state = 39, .external_lex_state = 13}, [6359] = {.lex_state = 39, .external_lex_state = 11}, [6360] = {.lex_state = 39, .external_lex_state = 11}, [6361] = {.lex_state = 39, .external_lex_state = 11}, - [6362] = {.lex_state = 39, .external_lex_state = 11}, + [6362] = {.lex_state = 39, .external_lex_state = 10}, [6363] = {.lex_state = 39, .external_lex_state = 11}, [6364] = {.lex_state = 39, .external_lex_state = 11}, [6365] = {.lex_state = 39, .external_lex_state = 11}, - [6366] = {.lex_state = 39, .external_lex_state = 11}, - [6367] = {.lex_state = 39, .external_lex_state = 11}, + [6366] = {.lex_state = 39, .external_lex_state = 13}, + [6367] = {.lex_state = 39, .external_lex_state = 13}, [6368] = {.lex_state = 39, .external_lex_state = 11}, [6369] = {.lex_state = 39, .external_lex_state = 11}, - [6370] = {.lex_state = 39, .external_lex_state = 11}, + [6370] = {.lex_state = 39, .external_lex_state = 12}, [6371] = {.lex_state = 39, .external_lex_state = 11}, [6372] = {.lex_state = 39, .external_lex_state = 11}, [6373] = {.lex_state = 39, .external_lex_state = 11}, [6374] = {.lex_state = 39, .external_lex_state = 11}, - [6375] = {.lex_state = 39, .external_lex_state = 11}, + [6375] = {.lex_state = 39, .external_lex_state = 12}, [6376] = {.lex_state = 39, .external_lex_state = 11}, - [6377] = {.lex_state = 39, .external_lex_state = 11}, + [6377] = {.lex_state = 39, .external_lex_state = 12}, [6378] = {.lex_state = 39, .external_lex_state = 11}, [6379] = {.lex_state = 39, .external_lex_state = 11}, - [6380] = {.lex_state = 39, .external_lex_state = 11}, - [6381] = {.lex_state = 39, .external_lex_state = 11}, + [6380] = {.lex_state = 39, .external_lex_state = 12}, + [6381] = {.lex_state = 39, .external_lex_state = 12}, [6382] = {.lex_state = 39, .external_lex_state = 11}, [6383] = {.lex_state = 39, .external_lex_state = 11}, - [6384] = {.lex_state = 39, .external_lex_state = 11}, + [6384] = {.lex_state = 39, .external_lex_state = 13}, [6385] = {.lex_state = 39, .external_lex_state = 11}, [6386] = {.lex_state = 39, .external_lex_state = 11}, - [6387] = {.lex_state = 39, .external_lex_state = 11}, - [6388] = {.lex_state = 39, .external_lex_state = 11}, + [6387] = {.lex_state = 39, .external_lex_state = 12}, + [6388] = {.lex_state = 39, .external_lex_state = 10}, [6389] = {.lex_state = 39, .external_lex_state = 11}, - [6390] = {.lex_state = 39, .external_lex_state = 11}, + [6390] = {.lex_state = 39, .external_lex_state = 13}, [6391] = {.lex_state = 39, .external_lex_state = 11}, [6392] = {.lex_state = 39, .external_lex_state = 11}, [6393] = {.lex_state = 39, .external_lex_state = 11}, [6394] = {.lex_state = 39, .external_lex_state = 11}, - [6395] = {.lex_state = 39, .external_lex_state = 11}, - [6396] = {.lex_state = 39, .external_lex_state = 11}, - [6397] = {.lex_state = 39, .external_lex_state = 11}, + [6395] = {.lex_state = 39, .external_lex_state = 12}, + [6396] = {.lex_state = 39, .external_lex_state = 10}, + [6397] = {.lex_state = 39, .external_lex_state = 10}, [6398] = {.lex_state = 39, .external_lex_state = 11}, [6399] = {.lex_state = 39, .external_lex_state = 11}, [6400] = {.lex_state = 39, .external_lex_state = 11}, [6401] = {.lex_state = 39, .external_lex_state = 11}, [6402] = {.lex_state = 39, .external_lex_state = 11}, - [6403] = {.lex_state = 39, .external_lex_state = 11}, - [6404] = {.lex_state = 39, .external_lex_state = 11}, + [6403] = {.lex_state = 39, .external_lex_state = 13}, + [6404] = {.lex_state = 39, .external_lex_state = 12}, [6405] = {.lex_state = 39, .external_lex_state = 11}, [6406] = {.lex_state = 39, .external_lex_state = 11}, + [6407] = {.lex_state = 39, .external_lex_state = 12}, + [6408] = {.lex_state = 39, .external_lex_state = 11}, + [6409] = {.lex_state = 39, .external_lex_state = 10}, + [6410] = {.lex_state = 39, .external_lex_state = 11}, + [6411] = {.lex_state = 39, .external_lex_state = 11}, + [6412] = {.lex_state = 39, .external_lex_state = 11}, + [6413] = {.lex_state = 39, .external_lex_state = 11}, + [6414] = {.lex_state = 39, .external_lex_state = 12}, + [6415] = {.lex_state = 39, .external_lex_state = 10}, + [6416] = {.lex_state = 39, .external_lex_state = 11}, + [6417] = {.lex_state = 39, .external_lex_state = 11}, + [6418] = {.lex_state = 39, .external_lex_state = 11}, + [6419] = {.lex_state = 39, .external_lex_state = 14}, + [6420] = {.lex_state = 39, .external_lex_state = 11}, + [6421] = {.lex_state = 39, .external_lex_state = 14}, + [6422] = {.lex_state = 39, .external_lex_state = 11}, + [6423] = {.lex_state = 39, .external_lex_state = 11}, + [6424] = {.lex_state = 39, .external_lex_state = 11}, + [6425] = {.lex_state = 39, .external_lex_state = 11}, + [6426] = {.lex_state = 39, .external_lex_state = 12}, + [6427] = {.lex_state = 39, .external_lex_state = 10}, + [6428] = {.lex_state = 39, .external_lex_state = 11}, + [6429] = {.lex_state = 68, .external_lex_state = 11}, + [6430] = {.lex_state = 39, .external_lex_state = 11}, + [6431] = {.lex_state = 39, .external_lex_state = 11}, + [6432] = {.lex_state = 39, .external_lex_state = 11}, + [6433] = {.lex_state = 39, .external_lex_state = 10}, + [6434] = {.lex_state = 39, .external_lex_state = 14}, + [6435] = {.lex_state = 39, .external_lex_state = 11}, + [6436] = {.lex_state = 39, .external_lex_state = 12}, + [6437] = {.lex_state = 39, .external_lex_state = 10}, + [6438] = {.lex_state = 39, .external_lex_state = 11}, + [6439] = {.lex_state = 39, .external_lex_state = 11}, + [6440] = {.lex_state = 39, .external_lex_state = 10}, + [6441] = {.lex_state = 39, .external_lex_state = 12}, + [6442] = {.lex_state = 39, .external_lex_state = 11}, + [6443] = {.lex_state = 39, .external_lex_state = 11}, + [6444] = {.lex_state = 39, .external_lex_state = 11}, + [6445] = {.lex_state = 39, .external_lex_state = 11}, + [6446] = {.lex_state = 39, .external_lex_state = 10}, + [6447] = {.lex_state = 39, .external_lex_state = 11}, + [6448] = {.lex_state = 39, .external_lex_state = 11}, + [6449] = {.lex_state = 39, .external_lex_state = 10}, + [6450] = {.lex_state = 39, .external_lex_state = 10}, + [6451] = {.lex_state = 39, .external_lex_state = 12}, + [6452] = {.lex_state = 39, .external_lex_state = 12}, + [6453] = {.lex_state = 39, .external_lex_state = 10}, + [6454] = {.lex_state = 39, .external_lex_state = 13}, + [6455] = {.lex_state = 39, .external_lex_state = 10}, + [6456] = {.lex_state = 39, .external_lex_state = 10}, + [6457] = {.lex_state = 39, .external_lex_state = 12}, + [6458] = {.lex_state = 39, .external_lex_state = 10}, + [6459] = {.lex_state = 39, .external_lex_state = 12}, + [6460] = {.lex_state = 39, .external_lex_state = 10}, + [6461] = {.lex_state = 39, .external_lex_state = 12}, + [6462] = {.lex_state = 39, .external_lex_state = 13}, + [6463] = {.lex_state = 39, .external_lex_state = 12}, + [6464] = {.lex_state = 39, .external_lex_state = 11}, + [6465] = {.lex_state = 39, .external_lex_state = 11}, + [6466] = {.lex_state = 39, .external_lex_state = 11}, + [6467] = {.lex_state = 39, .external_lex_state = 11}, + [6468] = {.lex_state = 39, .external_lex_state = 10}, + [6469] = {.lex_state = 39, .external_lex_state = 10}, + [6470] = {.lex_state = 39, .external_lex_state = 11}, + [6471] = {.lex_state = 39, .external_lex_state = 11}, + [6472] = {.lex_state = 39, .external_lex_state = 10}, + [6473] = {.lex_state = 39, .external_lex_state = 11}, + [6474] = {.lex_state = 39, .external_lex_state = 10}, + [6475] = {.lex_state = 68, .external_lex_state = 11}, + [6476] = {.lex_state = 39, .external_lex_state = 11}, + [6477] = {.lex_state = 39, .external_lex_state = 11}, + [6478] = {.lex_state = 39, .external_lex_state = 11}, + [6479] = {.lex_state = 39, .external_lex_state = 12}, + [6480] = {.lex_state = 39, .external_lex_state = 11}, + [6481] = {.lex_state = 39, .external_lex_state = 11}, + [6482] = {.lex_state = 39, .external_lex_state = 11}, + [6483] = {.lex_state = 39, .external_lex_state = 11}, + [6484] = {.lex_state = 39, .external_lex_state = 11}, + [6485] = {.lex_state = 39, .external_lex_state = 11}, + [6486] = {.lex_state = 39, .external_lex_state = 11}, + [6487] = {.lex_state = 39, .external_lex_state = 10}, + [6488] = {.lex_state = 39, .external_lex_state = 11}, + [6489] = {.lex_state = 39, .external_lex_state = 13}, + [6490] = {.lex_state = 39, .external_lex_state = 11}, + [6491] = {.lex_state = 39, .external_lex_state = 12}, + [6492] = {.lex_state = 39, .external_lex_state = 11}, + [6493] = {.lex_state = 39, .external_lex_state = 12}, + [6494] = {.lex_state = 39, .external_lex_state = 11}, + [6495] = {.lex_state = 39, .external_lex_state = 11}, + [6496] = {.lex_state = 39, .external_lex_state = 11}, + [6497] = {.lex_state = 39, .external_lex_state = 11}, + [6498] = {.lex_state = 39, .external_lex_state = 11}, + [6499] = {.lex_state = 39, .external_lex_state = 11}, + [6500] = {.lex_state = 39, .external_lex_state = 11}, + [6501] = {.lex_state = 39, .external_lex_state = 11}, + [6502] = {.lex_state = 39, .external_lex_state = 11}, + [6503] = {.lex_state = 39, .external_lex_state = 11}, + [6504] = {.lex_state = 39, .external_lex_state = 11}, + [6505] = {.lex_state = 39, .external_lex_state = 11}, + [6506] = {.lex_state = 39, .external_lex_state = 11}, + [6507] = {.lex_state = 39, .external_lex_state = 11}, + [6508] = {.lex_state = 39, .external_lex_state = 11}, + [6509] = {.lex_state = 39, .external_lex_state = 11}, + [6510] = {.lex_state = 39, .external_lex_state = 11}, + [6511] = {.lex_state = 39, .external_lex_state = 11}, + [6512] = {.lex_state = 39, .external_lex_state = 11}, + [6513] = {.lex_state = 39, .external_lex_state = 11}, + [6514] = {.lex_state = 39, .external_lex_state = 11}, + [6515] = {.lex_state = 39, .external_lex_state = 11}, + [6516] = {.lex_state = 39, .external_lex_state = 11}, + [6517] = {.lex_state = 39, .external_lex_state = 11}, + [6518] = {.lex_state = 39, .external_lex_state = 11}, + [6519] = {.lex_state = 39, .external_lex_state = 11}, + [6520] = {.lex_state = 39, .external_lex_state = 11}, + [6521] = {.lex_state = 39, .external_lex_state = 11}, + [6522] = {.lex_state = 39, .external_lex_state = 11}, + [6523] = {.lex_state = 39, .external_lex_state = 11}, + [6524] = {.lex_state = 39, .external_lex_state = 11}, + [6525] = {.lex_state = 39, .external_lex_state = 11}, + [6526] = {.lex_state = 39, .external_lex_state = 11}, + [6527] = {.lex_state = 39, .external_lex_state = 11}, + [6528] = {.lex_state = 39, .external_lex_state = 11}, + [6529] = {.lex_state = 39, .external_lex_state = 11}, + [6530] = {.lex_state = 39, .external_lex_state = 11}, + [6531] = {.lex_state = 39, .external_lex_state = 11}, + [6532] = {.lex_state = 39, .external_lex_state = 11}, + [6533] = {.lex_state = 39, .external_lex_state = 11}, + [6534] = {.lex_state = 39, .external_lex_state = 11}, + [6535] = {.lex_state = 39, .external_lex_state = 11}, + [6536] = {.lex_state = 39, .external_lex_state = 11}, + [6537] = {.lex_state = 39, .external_lex_state = 11}, + [6538] = {.lex_state = 39, .external_lex_state = 11}, + [6539] = {.lex_state = 39, .external_lex_state = 11}, + [6540] = {.lex_state = 39, .external_lex_state = 11}, + [6541] = {.lex_state = 39, .external_lex_state = 11}, + [6542] = {.lex_state = 39, .external_lex_state = 11}, + [6543] = {.lex_state = 39, .external_lex_state = 11}, + [6544] = {.lex_state = 39, .external_lex_state = 11}, + [6545] = {.lex_state = 39, .external_lex_state = 11}, + [6546] = {.lex_state = 39, .external_lex_state = 11}, + [6547] = {.lex_state = 39, .external_lex_state = 11}, }; enum { @@ -17600,12 +17898,12 @@ static const bool ts_external_scanner_states[16][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token__newline] = true, - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [4] = { [ts_external_token__newline] = true, + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, @@ -17774,64 +18072,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(6293), - [sym__statement] = STATE(85), - [sym__simple_statements] = STATE(85), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_if_statement] = STATE(85), - [sym_if_rule_statement] = STATE(85), - [sym_rule_statement] = STATE(85), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(85), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_schema_statement] = STATE(85), - [sym_mixin_statement] = STATE(85), - [sym_protocol_statement] = STATE(85), - [sym_check_statement] = STATE(85), - [sym_decorated_definition] = STATE(85), - [sym_decorator] = STATE(4759), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4986), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3401), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(85), - [aux_sym_decorated_definition_repeat1] = STATE(4759), + [sym_module] = STATE(6473), + [sym__statement] = STATE(93), + [sym__simple_statements] = STATE(93), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_if_statement] = STATE(93), + [sym_if_rule_statement] = STATE(93), + [sym_rule_statement] = STATE(93), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(93), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_schema_statement] = STATE(93), + [sym_mixin_statement] = STATE(3971), + [sym_protocol_statement] = STATE(93), + [sym_check_statement] = STATE(93), + [sym_decorated_definition] = STATE(93), + [sym_decorator] = STATE(4848), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5053), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6472), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3427), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(93), + [aux_sym_decorated_definition_repeat1] = STATE(4848), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17870,94 +18168,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [2] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5044), - [sym_expression] = STATE(737), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(1129), - [sym_primary_expression] = STATE(724), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(2087), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2086), - [sym_dictionary] = STATE(2086), - [sym_list_comprehension] = STATE(2086), - [sym_dictionary_comprehension] = STATE(2086), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [aux_sym_selector_expression_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(57), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5236), + [sym_expression] = STATE(718), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(946), + [sym_primary_expression] = STATE(604), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(2082), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(1896), + [sym_dictionary] = STATE(1896), + [sym_list_comprehension] = STATE(1896), + [sym_dictionary_comprehension] = STATE(1896), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [aux_sym_selector_expression_repeat1] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(59), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), [anon_sym_else] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(69), [anon_sym_lambda] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_in] = ACTIONS(59), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(75), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_true] = ACTIONS(81), @@ -17966,100 +18266,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__dedent] = ACTIONS(63), + [sym__newline] = ACTIONS(57), [sym_string_start] = ACTIONS(85), }, [3] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5099), - [sym_expression] = STATE(727), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1144), - [sym_primary_expression] = STATE(726), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(1975), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2056), - [sym_dictionary] = STATE(2056), - [sym_list_comprehension] = STATE(2056), - [sym_dictionary_comprehension] = STATE(2056), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [aux_sym_selector_expression_repeat1] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(63), + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5146), + [sym_expression] = STATE(852), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(1322), + [sym_primary_expression] = STATE(1003), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1277), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2152), + [sym_dictionary] = STATE(2152), + [sym_list_comprehension] = STATE(2152), + [sym_dictionary_comprehension] = STATE(2152), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [aux_sym_selector_expression_repeat1] = STATE(586), [sym_identifier] = ACTIONS(87), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), [anon_sym_if] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), [anon_sym_else] = ACTIONS(91), [anon_sym_LPAREN] = ACTIONS(93), [anon_sym_LBRACK] = ACTIONS(95), [anon_sym_lambda] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_in] = ACTIONS(59), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(101), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(103), [anon_sym_DASH] = ACTIONS(105), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), [anon_sym_TILDE] = ACTIONS(105), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), [sym_integer] = ACTIONS(107), [sym_float] = ACTIONS(109), [sym_true] = ACTIONS(107), @@ -18068,98 +18367,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), + [sym__newline] = ACTIONS(57), + [sym__dedent] = ACTIONS(57), [sym_string_start] = ACTIONS(111), }, [4] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5107), - [sym_expression] = STATE(1500), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(2098), - [sym_primary_expression] = STATE(1127), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(1940), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2155), - [sym_dictionary] = STATE(2155), - [sym_list_comprehension] = STATE(2155), - [sym_dictionary_comprehension] = STATE(2155), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [aux_sym_selector_expression_repeat1] = STATE(777), + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5230), + [sym_expression] = STATE(622), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(1004), + [sym_primary_expression] = STATE(603), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(2101), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(1906), + [sym_dictionary] = STATE(1906), + [sym_list_comprehension] = STATE(1906), + [sym_dictionary_comprehension] = STATE(1906), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [aux_sym_selector_expression_repeat1] = STATE(586), [sym_identifier] = ACTIONS(113), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), [anon_sym_else] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_lambda] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_in] = ACTIONS(61), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(117), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_undefined] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(111), + }, + [5] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5223), + [sym_expression] = STATE(974), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(1443), + [sym_primary_expression] = STATE(866), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1412), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2204), + [sym_dictionary] = STATE(2204), + [sym_list_comprehension] = STATE(2204), + [sym_dictionary_comprehension] = STATE(2204), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [aux_sym_selector_expression_repeat1] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(123), [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(69), [anon_sym_lambda] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_in] = ACTIONS(59), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(117), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(125), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_true] = ACTIONS(81), @@ -18168,100 +18572,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__dedent] = ACTIONS(63), + [sym__newline] = ACTIONS(57), [sym_string_start] = ACTIONS(85), }, - [5] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5071), - [sym_expression] = STATE(1361), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1897), - [sym_primary_expression] = STATE(1080), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(2069), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2151), - [sym_dictionary] = STATE(2151), - [sym_list_comprehension] = STATE(2151), - [sym_dictionary_comprehension] = STATE(2151), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [aux_sym_selector_expression_repeat1] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(123), + [6] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5230), + [sym_expression] = STATE(619), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(1004), + [sym_primary_expression] = STATE(603), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(1906), + [sym_dictionary] = STATE(1906), + [sym_list_comprehension] = STATE(1906), + [sym_dictionary_comprehension] = STATE(1906), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [sym_identifier] = ACTIONS(113), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(131), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(93), [anon_sym_LBRACK] = ACTIONS(95), [anon_sym_lambda] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_in] = ACTIONS(59), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(125), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(135), + [anon_sym_not] = ACTIONS(117), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(119), [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(107), [sym_float] = ACTIONS(109), [sym_true] = ACTIONS(107), @@ -18270,497 +18672,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), + [sym__newline] = ACTIONS(133), + [sym__dedent] = ACTIONS(133), [sym_string_start] = ACTIONS(111), }, - [6] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5104), - [sym_expression] = STATE(2061), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(2204), - [sym_primary_expression] = STATE(1879), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2107), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2236), - [sym_dictionary] = STATE(2236), - [sym_list_comprehension] = STATE(2236), - [sym_dictionary_comprehension] = STATE(2236), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [aux_sym_selector_expression_repeat1] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(129), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_in] = ACTIONS(59), + [7] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5196), + [sym_expression] = STATE(1361), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2240), + [sym_primary_expression] = STATE(2008), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2159), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2268), + [sym_dictionary] = STATE(2268), + [sym_list_comprehension] = STATE(2268), + [sym_dictionary_comprehension] = STATE(2268), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [aux_sym_selector_expression_repeat1] = STATE(951), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(137), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(143), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(151), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym_string_start] = ACTIONS(161), }, - [7] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5096), - [sym_expression] = STATE(1512), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(1878), - [sym_primary_expression] = STATE(1125), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2119), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2154), - [sym_dictionary] = STATE(2154), - [sym_list_comprehension] = STATE(2154), - [sym_dictionary_comprehension] = STATE(2154), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [aux_sym_selector_expression_repeat1] = STATE(1648), - [sym_identifier] = ACTIONS(155), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_in] = ACTIONS(59), + [8] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5224), + [sym_expression] = STATE(970), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(1278), + [sym_primary_expression] = STATE(994), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2177), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2162), + [sym_dictionary] = STATE(2162), + [sym_list_comprehension] = STATE(2162), + [sym_dictionary_comprehension] = STATE(2162), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [aux_sym_selector_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(163), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(169), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(177), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(63), - [sym_string_start] = ACTIONS(179), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(187), }, - [8] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5065), - [sym_expression] = STATE(1480), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(1901), - [sym_primary_expression] = STATE(1064), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2105), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2147), - [sym_dictionary] = STATE(2147), - [sym_list_comprehension] = STATE(2147), - [sym_dictionary_comprehension] = STATE(2147), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [aux_sym_selector_expression_repeat1] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(181), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(131), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_in] = ACTIONS(59), + [9] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5204), + [sym_expression] = STATE(916), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(1662), + [sym_primary_expression] = STATE(993), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2141), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2203), + [sym_dictionary] = STATE(2203), + [sym_list_comprehension] = STATE(2203), + [sym_dictionary_comprehension] = STATE(2203), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [aux_sym_selector_expression_repeat1] = STATE(951), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(189), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(185), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(193), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym_string_start] = ACTIONS(161), }, - [9] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5099), - [sym_expression] = STATE(729), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1144), - [sym_primary_expression] = STATE(726), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(1921), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2056), - [sym_dictionary] = STATE(2056), - [sym_list_comprehension] = STATE(2056), - [sym_dictionary_comprehension] = STATE(2056), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(87), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(193), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_lambda] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_in] = ACTIONS(191), + [10] = { + [sym__simple_statements] = STATE(3462), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5297), + [sym_assignment] = STATE(6415), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_as] = ACTIONS(197), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_in] = ACTIONS(197), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(195), - [anon_sym_not] = ACTIONS(101), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(105), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(107), - [sym_float] = ACTIONS(109), - [sym_true] = ACTIONS(107), - [sym_false] = ACTIONS(107), - [sym_none] = ACTIONS(107), - [sym_undefined] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_STAR_STAR] = ACTIONS(201), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_and] = ACTIONS(197), + [anon_sym_or] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(201), + [anon_sym_SLASH_SLASH] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LT_LT] = ACTIONS(201), + [anon_sym_GT_GT] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(201), + [anon_sym_EQ_EQ] = ACTIONS(201), + [anon_sym_BANG_EQ] = ACTIONS(201), + [anon_sym_GT_EQ] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_is] = ACTIONS(197), + [anon_sym_QMARK_LBRACK] = ACTIONS(201), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym_string_start] = ACTIONS(111), + [sym__newline] = ACTIONS(205), + [sym__indent] = ACTIONS(207), + [sym_string_start] = ACTIONS(55), }, - [10] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5044), - [sym_expression] = STATE(738), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(1129), - [sym_primary_expression] = STATE(724), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(2057), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2086), - [sym_dictionary] = STATE(2086), - [sym_list_comprehension] = STATE(2086), - [sym_dictionary_comprehension] = STATE(2086), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [sym_identifier] = ACTIONS(57), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(197), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), + [11] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5236), + [sym_expression] = STATE(712), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(946), + [sym_primary_expression] = STATE(604), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1335), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(1896), + [sym_dictionary] = STATE(1896), + [sym_list_comprehension] = STATE(1896), + [sym_dictionary_comprehension] = STATE(1896), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(59), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(69), [anon_sym_lambda] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_in] = ACTIONS(191), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(199), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_not] = ACTIONS(75), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), [anon_sym_PLUS] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(79), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_true] = ACTIONS(81), @@ -18769,297 +19178,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__dedent] = ACTIONS(189), + [sym__newline] = ACTIONS(133), [sym_string_start] = ACTIONS(85), }, - [11] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5047), - [sym_expression] = STATE(2084), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2102), - [sym_primary_expression] = STATE(1900), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2104), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2240), - [sym_dictionary] = STATE(2240), - [sym_list_comprehension] = STATE(2240), - [sym_dictionary_comprehension] = STATE(2240), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [aux_sym_selector_expression_repeat1] = STATE(1648), - [sym_identifier] = ACTIONS(201), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_in] = ACTIONS(59), + [12] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5137), + [sym_expression] = STATE(1180), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2191), + [sym_primary_expression] = STATE(1730), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2138), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2269), + [sym_dictionary] = STATE(2269), + [sym_list_comprehension] = STATE(2269), + [sym_dictionary_comprehension] = STATE(2269), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [aux_sym_selector_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(213), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(205), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(217), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(219), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(63), - [sym_string_start] = ACTIONS(179), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(187), }, - [12] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5096), - [sym_expression] = STATE(1518), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(1878), - [sym_primary_expression] = STATE(1125), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2233), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2154), - [sym_dictionary] = STATE(2154), - [sym_list_comprehension] = STATE(2154), - [sym_dictionary_comprehension] = STATE(2154), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [sym_identifier] = ACTIONS(155), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_in] = ACTIONS(191), + [13] = { + [sym__simple_statements] = STATE(3449), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5297), + [sym_assignment] = STATE(6021), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_as] = ACTIONS(197), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_in] = ACTIONS(197), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_not] = ACTIONS(169), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_STAR_STAR] = ACTIONS(201), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_and] = ACTIONS(197), + [anon_sym_or] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(201), + [anon_sym_SLASH_SLASH] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_LT_LT] = ACTIONS(201), + [anon_sym_GT_GT] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(201), + [anon_sym_EQ_EQ] = ACTIONS(201), + [anon_sym_BANG_EQ] = ACTIONS(201), + [anon_sym_GT_EQ] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_is] = ACTIONS(197), + [anon_sym_QMARK_LBRACK] = ACTIONS(201), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(221), + [sym__indent] = ACTIONS(223), + [sym_string_start] = ACTIONS(55), + }, + [14] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5204), + [sym_expression] = STATE(919), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(1662), + [sym_primary_expression] = STATE(993), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2235), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2203), + [sym_dictionary] = STATE(2203), + [sym_list_comprehension] = STATE(2203), + [sym_dictionary_comprehension] = STATE(2203), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(189), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_in] = ACTIONS(129), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(227), + [anon_sym_not] = ACTIONS(193), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(189), - [sym_string_start] = ACTIONS(179), + [sym_string_start] = ACTIONS(161), }, - [13] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5071), - [sym_expression] = STATE(1371), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1897), - [sym_primary_expression] = STATE(1080), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(1921), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2151), - [sym_dictionary] = STATE(2151), - [sym_list_comprehension] = STATE(2151), - [sym_dictionary_comprehension] = STATE(2151), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(193), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), + [15] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5146), + [sym_expression] = STATE(851), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(1322), + [sym_primary_expression] = STATE(1003), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2152), + [sym_dictionary] = STATE(2152), + [sym_list_comprehension] = STATE(2152), + [sym_dictionary_comprehension] = STATE(2152), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [sym_identifier] = ACTIONS(87), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(131), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(93), [anon_sym_LBRACK] = ACTIONS(95), [anon_sym_lambda] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_in] = ACTIONS(191), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(195), - [anon_sym_not] = ACTIONS(125), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(135), + [anon_sym_not] = ACTIONS(101), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(105), [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(105), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(107), [sym_float] = ACTIONS(109), [sym_true] = ACTIONS(107), @@ -19068,96 +19579,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), + [sym__newline] = ACTIONS(133), + [sym__dedent] = ACTIONS(133), [sym_string_start] = ACTIONS(111), }, - [14] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5107), - [sym_expression] = STATE(1501), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(2098), - [sym_primary_expression] = STATE(1127), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(2057), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2155), - [sym_dictionary] = STATE(2155), - [sym_list_comprehension] = STATE(2155), - [sym_dictionary_comprehension] = STATE(2155), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [sym_identifier] = ACTIONS(113), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(197), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), + [16] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5223), + [sym_expression] = STATE(936), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(1443), + [sym_primary_expression] = STATE(866), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1335), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2204), + [sym_dictionary] = STATE(2204), + [sym_list_comprehension] = STATE(2204), + [sym_dictionary_comprehension] = STATE(2204), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(69), [anon_sym_lambda] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_in] = ACTIONS(191), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(199), - [anon_sym_not] = ACTIONS(117), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_not] = ACTIONS(125), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(127), [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_true] = ACTIONS(81), @@ -19166,570 +19680,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__dedent] = ACTIONS(189), + [sym__newline] = ACTIONS(133), [sym_string_start] = ACTIONS(85), }, - [15] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5065), - [sym_expression] = STATE(1493), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(1901), - [sym_primary_expression] = STATE(1064), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2162), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2147), - [sym_dictionary] = STATE(2147), - [sym_list_comprehension] = STATE(2147), - [sym_dictionary_comprehension] = STATE(2147), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(181), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_in] = ACTIONS(191), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(215), - [anon_sym_not] = ACTIONS(185), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), - }, - [16] = { - [sym__simple_statements] = STATE(3385), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_as] = ACTIONS(217), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(217), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_lambda] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_in] = ACTIONS(217), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(217), - [anon_sym_STAR_STAR] = ACTIONS(221), - [anon_sym_type] = ACTIONS(31), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(217), - [anon_sym_or] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(217), - [anon_sym_PERCENT] = ACTIONS(221), - [anon_sym_SLASH_SLASH] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_LT_LT] = ACTIONS(221), - [anon_sym_GT_GT] = ACTIONS(221), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LT_EQ] = ACTIONS(221), - [anon_sym_EQ_EQ] = ACTIONS(221), - [anon_sym_BANG_EQ] = ACTIONS(221), - [anon_sym_GT_EQ] = ACTIONS(221), - [anon_sym_GT] = ACTIONS(217), - [anon_sym_is] = ACTIONS(217), - [anon_sym_QMARK_LBRACK] = ACTIONS(221), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(223), - [sym__indent] = ACTIONS(225), - [sym_string_start] = ACTIONS(55), - }, [17] = { - [sym__simple_statements] = STATE(3408), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_as] = ACTIONS(217), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(217), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_lambda] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_in] = ACTIONS(217), + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5224), + [sym_expression] = STATE(976), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(1278), + [sym_primary_expression] = STATE(994), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2129), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2162), + [sym_dictionary] = STATE(2162), + [sym_list_comprehension] = STATE(2162), + [sym_dictionary_comprehension] = STATE(2162), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [sym_identifier] = ACTIONS(163), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(229), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(217), - [anon_sym_STAR_STAR] = ACTIONS(221), - [anon_sym_type] = ACTIONS(31), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(217), - [anon_sym_or] = ACTIONS(217), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(217), - [anon_sym_PERCENT] = ACTIONS(221), - [anon_sym_SLASH_SLASH] = ACTIONS(221), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_LT_LT] = ACTIONS(221), - [anon_sym_GT_GT] = ACTIONS(221), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LT_EQ] = ACTIONS(221), - [anon_sym_EQ_EQ] = ACTIONS(221), - [anon_sym_BANG_EQ] = ACTIONS(221), - [anon_sym_GT_EQ] = ACTIONS(221), - [anon_sym_GT] = ACTIONS(217), - [anon_sym_is] = ACTIONS(217), - [anon_sym_QMARK_LBRACK] = ACTIONS(221), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(231), + [anon_sym_not] = ACTIONS(177), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(227), - [sym__indent] = ACTIONS(229), - [sym_string_start] = ACTIONS(55), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(187), }, [18] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5104), - [sym_expression] = STATE(2063), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(2204), - [sym_primary_expression] = STATE(1879), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2162), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2236), - [sym_dictionary] = STATE(2236), - [sym_list_comprehension] = STATE(2236), - [sym_dictionary_comprehension] = STATE(2236), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(129), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_in] = ACTIONS(191), + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5137), + [sym_expression] = STATE(1173), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2191), + [sym_primary_expression] = STATE(1730), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2129), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2269), + [sym_dictionary] = STATE(2269), + [sym_list_comprehension] = STATE(2269), + [sym_dictionary_comprehension] = STATE(2269), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [sym_identifier] = ACTIONS(213), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(229), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(215), - [anon_sym_not] = ACTIONS(143), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(231), + [anon_sym_not] = ACTIONS(217), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(219), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(187), }, [19] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5047), - [sym_expression] = STATE(2081), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2102), - [sym_primary_expression] = STATE(1900), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2233), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2240), - [sym_dictionary] = STATE(2240), - [sym_list_comprehension] = STATE(2240), - [sym_dictionary_comprehension] = STATE(2240), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [sym_identifier] = ACTIONS(201), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_in] = ACTIONS(191), + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5196), + [sym_expression] = STATE(1326), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2240), + [sym_primary_expression] = STATE(2008), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2235), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2268), + [sym_dictionary] = STATE(2268), + [sym_list_comprehension] = STATE(2268), + [sym_dictionary_comprehension] = STATE(2268), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(137), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_not] = ACTIONS(205), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(227), + [anon_sym_not] = ACTIONS(151), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(189), - [sym_string_start] = ACTIONS(179), + [sym_string_start] = ACTIONS(161), }, [20] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5868), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6283), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -19737,10 +20055,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -19756,76 +20074,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [21] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6044), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3419), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -19833,10 +20151,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -19852,76 +20170,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [22] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5951), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(5985), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -19929,10 +20247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -19948,76 +20266,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [23] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5845), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4051), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20025,10 +20343,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20044,76 +20362,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [24] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5917), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4022), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20121,10 +20439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20140,76 +20458,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [25] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6451), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20217,10 +20535,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20240,72 +20558,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [26] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5825), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3999), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20313,10 +20631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20332,76 +20650,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [27] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6284), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6356), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20409,10 +20727,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20428,76 +20746,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [28] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5938), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3997), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20505,10 +20823,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20524,76 +20842,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [29] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5946), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6118), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20601,10 +20919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20620,76 +20938,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [30] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5862), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6079), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20697,10 +21015,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20716,76 +21034,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [31] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5967), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6299), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20793,10 +21111,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20812,76 +21130,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [32] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6117), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3460), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20889,10 +21207,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -20908,76 +21226,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [33] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6121), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4032), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -20985,10 +21303,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21004,76 +21322,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [34] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6105), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3475), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21081,10 +21399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21100,76 +21418,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [35] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3391), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21177,10 +21495,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21196,76 +21514,76 @@ 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(247), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [36] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6110), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6282), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21273,10 +21591,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21292,76 +21610,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [37] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6294), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4053), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21369,10 +21687,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21388,76 +21706,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [38] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6186), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4092), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21465,10 +21783,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21484,76 +21802,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [39] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6100), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6122), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21561,10 +21879,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21580,76 +21898,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [40] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6190), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4001), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21657,10 +21975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21676,76 +21994,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [41] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6259), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6008), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21753,10 +22071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21772,76 +22090,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [42] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6266), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4055), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21849,10 +22167,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21868,76 +22186,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [43] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3412), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6195), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -21945,10 +22263,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -21964,76 +22282,76 @@ 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(249), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [44] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(4096), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6018), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22041,10 +22359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22060,76 +22378,76 @@ 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(249), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [45] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(4099), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4086), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22137,10 +22455,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22160,72 +22478,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [46] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(4103), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(90), + [sym__simple_statements] = STATE(90), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(90), + [sym_if_rule_statement] = STATE(90), + [sym_rule_statement] = STATE(90), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(90), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(90), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(90), + [sym_check_statement] = STATE(90), + [sym_decorated_definition] = STATE(90), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6212), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(90), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22233,10 +22551,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22252,76 +22570,76 @@ 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(249), + [sym__dedent] = ACTIONS(253), [sym_string_start] = ACTIONS(55), }, [47] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3387), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6246), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22329,10 +22647,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22348,76 +22666,76 @@ 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(249), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [48] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3860), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6033), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22425,10 +22743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22444,76 +22762,76 @@ 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(249), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [49] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3917), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(91), + [sym__simple_statements] = STATE(91), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(91), + [sym_if_rule_statement] = STATE(91), + [sym_rule_statement] = STATE(91), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(91), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(91), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(91), + [sym_check_statement] = STATE(91), + [sym_decorated_definition] = STATE(91), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3930), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(91), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22521,10 +22839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22540,76 +22858,76 @@ 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(249), + [sym__dedent] = ACTIONS(255), [sym_string_start] = ACTIONS(55), }, [50] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3908), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6335), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22617,10 +22935,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22640,72 +22958,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [51] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3377), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6274), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22713,10 +23031,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22732,76 +23050,76 @@ 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(249), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [52] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6183), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6020), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22809,10 +23127,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22828,76 +23146,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [53] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3924), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4080), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -22905,10 +23223,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -22924,76 +23242,76 @@ 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(249), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [54] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(4054), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6279), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23001,10 +23319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23024,72 +23342,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [55] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3901), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6491), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23097,10 +23415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23120,168 +23438,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [56] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3685), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), - [anon_sym_lambda] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5114), + [sym_expression] = STATE(2331), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2456), + [sym_primary_expression] = STATE(2365), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2459), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2708), + [sym_dictionary] = STATE(2708), + [sym_list_comprehension] = STATE(2708), + [sym_dictionary_comprehension] = STATE(2708), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [aux_sym_selector_expression_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(257), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_else] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(249), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(57), + [sym__indent] = ACTIONS(57), + [sym_string_start] = ACTIONS(281), }, [57] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(4058), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4016), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23289,10 +23607,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23308,76 +23626,76 @@ 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(247), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [58] = { - [sym__statement] = STATE(83), - [sym__simple_statements] = STATE(83), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(83), - [sym_if_rule_statement] = STATE(83), - [sym_rule_statement] = STATE(83), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(83), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(83), - [sym_mixin_statement] = STATE(83), - [sym_protocol_statement] = STATE(83), - [sym_check_statement] = STATE(83), - [sym_decorated_definition] = STATE(83), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3976), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(83), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3470), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23385,10 +23703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23408,72 +23726,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [59] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5918), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6228), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23481,10 +23799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23500,76 +23818,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [60] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6173), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6276), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23577,10 +23895,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23596,76 +23914,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [61] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6338), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(5913), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23673,10 +23991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23692,76 +24010,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [62] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6331), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6066), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23769,10 +24087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23788,76 +24106,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [63] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5943), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6029), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23865,10 +24183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23884,76 +24202,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [64] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3711), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4038), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -23961,10 +24279,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -23980,76 +24298,76 @@ 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(247), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [65] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6314), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6046), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24057,10 +24375,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24076,76 +24394,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [66] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3886), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3798), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24153,10 +24471,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24172,76 +24490,76 @@ 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(247), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [67] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6129), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(5991), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24249,10 +24567,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24268,76 +24586,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [68] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(4090), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6248), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24345,10 +24663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24368,72 +24686,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [69] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6116), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3420), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24441,10 +24759,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24460,76 +24778,172 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [70] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3384), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5246), + [sym_expression] = STATE(2303), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2357), + [sym_primary_expression] = STATE(2294), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2466), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2597), + [sym_dictionary] = STATE(2597), + [sym_list_comprehension] = STATE(2597), + [sym_dictionary_comprehension] = STATE(2597), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [aux_sym_selector_expression_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(283), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_else] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_in] = ACTIONS(61), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_type] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(287), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym__indent] = ACTIONS(57), + [sym_string_start] = ACTIONS(281), + }, + [71] = { + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6317), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24537,10 +24951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24559,73 +24973,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [71] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5854), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [72] = { + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6260), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24633,10 +25047,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24652,76 +25066,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [72] = { - [sym__statement] = STATE(77), - [sym__simple_statements] = STATE(77), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(77), - [sym_if_rule_statement] = STATE(77), - [sym_rule_statement] = STATE(77), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(77), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(77), - [sym_mixin_statement] = STATE(77), - [sym_protocol_statement] = STATE(77), - [sym_check_statement] = STATE(77), - [sym_decorated_definition] = STATE(77), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(3407), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(77), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [73] = { + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(5933), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24729,10 +25143,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24751,73 +25165,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [73] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(5971), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [74] = { + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4068), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24825,10 +25239,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24844,76 +25258,76 @@ 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(245), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [74] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6125), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [75] = { + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4025), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -24921,10 +25335,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -24940,76 +25354,76 @@ 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(245), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, - [75] = { - [sym__statement] = STATE(81), - [sym__simple_statements] = STATE(81), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(81), - [sym_if_rule_statement] = STATE(81), - [sym_rule_statement] = STATE(81), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(81), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(81), - [sym_mixin_statement] = STATE(81), - [sym_protocol_statement] = STATE(81), - [sym_check_statement] = STATE(81), - [sym_decorated_definition] = STATE(81), - [sym_decorator] = STATE(4751), - [sym_block] = STATE(6036), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(81), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [76] = { + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6349), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -25017,10 +25431,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -25036,170 +25450,76 @@ 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(245), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [76] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(4999), - [sym_expression] = STATE(2247), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2329), - [sym_primary_expression] = STATE(2287), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2490), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2558), - [sym_dictionary] = STATE(2558), - [sym_list_comprehension] = STATE(2558), - [sym_dictionary_comprehension] = STATE(2558), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [aux_sym_selector_expression_repeat1] = STATE(2288), - [sym_identifier] = ACTIONS(251), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(253), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(255), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_in] = ACTIONS(59), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(265), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(269), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__indent] = ACTIONS(63), - [sym_string_start] = ACTIONS(275), - }, [77] = { - [sym__statement] = STATE(78), - [sym__simple_statements] = STATE(78), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(78), - [sym_if_rule_statement] = STATE(78), - [sym_rule_statement] = STATE(78), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(78), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(78), - [sym_mixin_statement] = STATE(78), - [sym_protocol_statement] = STATE(78), - [sym_check_statement] = STATE(78), - [sym_decorated_definition] = STATE(78), - [sym_decorator] = STATE(4751), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(78), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6375), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -25207,10 +25527,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -25226,360 +25546,364 @@ 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(277), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, [78] = { - [sym__statement] = STATE(78), - [sym__simple_statements] = STATE(78), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(78), - [sym_if_rule_statement] = STATE(78), - [sym_rule_statement] = STATE(78), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(78), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(78), - [sym_mixin_statement] = STATE(78), - [sym_protocol_statement] = STATE(78), - [sym_check_statement] = STATE(78), - [sym_decorated_definition] = STATE(78), - [sym_decorator] = STATE(4751), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(78), - [aux_sym_decorated_definition_repeat1] = STATE(4751), - [sym_identifier] = ACTIONS(279), - [anon_sym_import] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(285), - [anon_sym_assert] = ACTIONS(288), - [anon_sym_if] = ACTIONS(291), - [anon_sym_rule] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(300), - [anon_sym_lambda] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(306), - [anon_sym_all] = ACTIONS(309), - [anon_sym_any] = ACTIONS(309), - [anon_sym_filter] = ACTIONS(309), - [anon_sym_map] = ACTIONS(309), - [anon_sym_type] = ACTIONS(312), - [anon_sym_schema] = ACTIONS(315), - [anon_sym_mixin] = ACTIONS(318), - [anon_sym_protocol] = ACTIONS(321), - [anon_sym_check] = ACTIONS(324), - [anon_sym_AT] = ACTIONS(327), - [anon_sym_QMARK_DOT] = ACTIONS(330), - [anon_sym_not] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(336), - [sym_integer] = ACTIONS(342), - [sym_float] = ACTIONS(345), - [sym_true] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [sym_none] = ACTIONS(342), - [sym_undefined] = ACTIONS(342), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4074), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(348), - [sym_string_start] = ACTIONS(350), + [sym__dedent] = ACTIONS(249), + [sym_string_start] = ACTIONS(55), }, [79] = { - [sym__statement] = STATE(79), - [sym__simple_statements] = STATE(79), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_if_statement] = STATE(79), - [sym_if_rule_statement] = STATE(79), - [sym_rule_statement] = STATE(79), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(79), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_schema_statement] = STATE(79), - [sym_mixin_statement] = STATE(79), - [sym_protocol_statement] = STATE(79), - [sym_check_statement] = STATE(79), - [sym_decorated_definition] = STATE(79), - [sym_decorator] = STATE(4759), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4986), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3401), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(79), - [aux_sym_decorated_definition_repeat1] = STATE(4759), - [ts_builtin_sym_end] = ACTIONS(348), - [sym_identifier] = ACTIONS(279), - [anon_sym_import] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(285), - [anon_sym_assert] = ACTIONS(288), - [anon_sym_if] = ACTIONS(353), - [anon_sym_rule] = ACTIONS(356), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_lambda] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(306), - [anon_sym_all] = ACTIONS(309), - [anon_sym_any] = ACTIONS(309), - [anon_sym_filter] = ACTIONS(309), - [anon_sym_map] = ACTIONS(309), - [anon_sym_type] = ACTIONS(312), - [anon_sym_schema] = ACTIONS(362), - [anon_sym_mixin] = ACTIONS(365), - [anon_sym_protocol] = ACTIONS(368), - [anon_sym_check] = ACTIONS(371), - [anon_sym_AT] = ACTIONS(327), - [anon_sym_QMARK_DOT] = ACTIONS(330), - [anon_sym_not] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(339), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(336), - [sym_integer] = ACTIONS(342), - [sym_float] = ACTIONS(345), - [sym_true] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [sym_none] = ACTIONS(342), - [sym_undefined] = ACTIONS(342), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6346), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(350), + [sym__dedent] = ACTIONS(247), + [sym_string_start] = ACTIONS(55), }, [80] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(5040), - [sym_expression] = STATE(2381), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2660), - [sym_primary_expression] = STATE(2351), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2649), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2691), - [sym_dictionary] = STATE(2691), - [sym_list_comprehension] = STATE(2691), - [sym_dictionary_comprehension] = STATE(2691), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [aux_sym_selector_expression_repeat1] = STATE(2288), - [sym_identifier] = ACTIONS(374), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(253), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(376), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(94), + [sym__simple_statements] = STATE(94), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(94), + [sym_if_rule_statement] = STATE(94), + [sym_rule_statement] = STATE(94), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(94), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(94), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(94), + [sym_check_statement] = STATE(94), + [sym_decorated_definition] = STATE(94), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(6479), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(94), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_type] = ACTIONS(59), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(378), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__indent] = ACTIONS(63), - [sym_string_start] = ACTIONS(275), + [sym__dedent] = ACTIONS(247), + [sym_string_start] = ACTIONS(55), }, [81] = { - [sym__statement] = STATE(78), - [sym__simple_statements] = STATE(78), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(78), - [sym_if_rule_statement] = STATE(78), - [sym_rule_statement] = STATE(78), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(78), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(78), - [sym_mixin_statement] = STATE(78), - [sym_protocol_statement] = STATE(78), - [sym_check_statement] = STATE(78), - [sym_decorated_definition] = STATE(78), - [sym_decorator] = STATE(4751), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(78), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4172), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -25587,10 +25911,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -25606,170 +25930,172 @@ 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(382), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, [82] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dotted_name] = STATE(5136), - [sym_expression] = STATE(3462), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3558), - [sym_primary_expression] = STATE(3432), - [sym_paren_expression] = STATE(3665), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(3665), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(2606), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), - [sym_list] = STATE(3592), - [sym_dictionary] = STATE(3592), - [sym_list_comprehension] = STATE(3592), - [sym_dictionary_comprehension] = STATE(3592), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(3665), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(386), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(388), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(95), + [sym__simple_statements] = STATE(95), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(95), + [sym_if_rule_statement] = STATE(95), + [sym_rule_statement] = STATE(95), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(95), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(95), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(95), + [sym_check_statement] = STATE(95), + [sym_decorated_definition] = STATE(95), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3859), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(95), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(398), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(404), - [sym_float] = ACTIONS(406), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(408), + [sym__dedent] = ACTIONS(291), + [sym_string_start] = ACTIONS(55), }, [83] = { - [sym__statement] = STATE(78), - [sym__simple_statements] = STATE(78), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_if_statement] = STATE(78), - [sym_if_rule_statement] = STATE(78), - [sym_rule_statement] = STATE(78), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(78), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_schema_statement] = STATE(78), - [sym_mixin_statement] = STATE(78), - [sym_protocol_statement] = STATE(78), - [sym_check_statement] = STATE(78), - [sym_decorated_definition] = STATE(78), - [sym_decorator] = STATE(4751), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4912), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3406), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(78), - [aux_sym_decorated_definition_repeat1] = STATE(4751), + [sym__statement] = STATE(96), + [sym__simple_statements] = STATE(96), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(96), + [sym_if_rule_statement] = STATE(96), + [sym_rule_statement] = STATE(96), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(96), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(96), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(96), + [sym_check_statement] = STATE(96), + [sym_decorated_definition] = STATE(96), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(3753), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(96), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(231), - [anon_sym_rule] = ACTIONS(233), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -25777,10 +26103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(237), - [anon_sym_mixin] = ACTIONS(239), - [anon_sym_protocol] = ACTIONS(241), - [anon_sym_check] = ACTIONS(243), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -25796,171 +26122,171 @@ 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(410), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(55), }, [84] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5063), - [sym_expression] = STATE(2272), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(2338), - [sym_primary_expression] = STATE(2314), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(2475), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(2536), - [sym_dictionary] = STATE(2536), - [sym_list_comprehension] = STATE(2536), - [sym_dictionary_comprehension] = STATE(2536), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(412), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(386), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(85), + [sym__simple_statements] = STATE(85), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(85), + [sym_if_rule_statement] = STATE(85), + [sym_rule_statement] = STATE(85), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(85), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(85), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(85), + [sym_check_statement] = STATE(85), + [sym_decorated_definition] = STATE(85), + [sym_decorator] = STATE(4851), + [sym_block] = STATE(4077), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(85), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(424), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), + [sym__dedent] = ACTIONS(249), + [sym_string_start] = ACTIONS(55), }, [85] = { - [sym__statement] = STATE(79), - [sym__simple_statements] = STATE(79), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_if_statement] = STATE(79), - [sym_if_rule_statement] = STATE(79), - [sym_rule_statement] = STATE(79), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_schema_index_signature] = STATE(79), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_schema_statement] = STATE(79), - [sym_mixin_statement] = STATE(79), - [sym_protocol_statement] = STATE(79), - [sym_check_statement] = STATE(79), - [sym_decorated_definition] = STATE(79), - [sym_decorator] = STATE(4759), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(4986), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(3401), - [sym_string] = STATE(4401), - [aux_sym_module_repeat1] = STATE(79), - [aux_sym_decorated_definition_repeat1] = STATE(4759), - [ts_builtin_sym_end] = ACTIONS(436), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_rule] = ACTIONS(19), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(237), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -25968,10 +26294,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_schema] = ACTIONS(33), - [anon_sym_mixin] = ACTIONS(35), - [anon_sym_protocol] = ACTIONS(37), - [anon_sym_check] = ACTIONS(39), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -25987,1294 +26313,1232 @@ 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(293), [sym_string_start] = ACTIONS(55), }, [86] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(4999), - [sym_expression] = STATE(2289), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2329), - [sym_primary_expression] = STATE(2287), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2517), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2558), - [sym_dictionary] = STATE(2558), - [sym_list_comprehension] = STATE(2558), - [sym_dictionary_comprehension] = STATE(2558), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [sym_identifier] = ACTIONS(251), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(438), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_in] = ACTIONS(191), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_not] = ACTIONS(265), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(269), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(295), + [anon_sym_import] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(301), + [anon_sym_assert] = ACTIONS(304), + [anon_sym_if] = ACTIONS(307), + [anon_sym_rule] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_lambda] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_all] = ACTIONS(325), + [anon_sym_any] = ACTIONS(325), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_map] = ACTIONS(325), + [anon_sym_type] = ACTIONS(328), + [anon_sym_schema] = ACTIONS(331), + [anon_sym_mixin] = ACTIONS(334), + [anon_sym_protocol] = ACTIONS(337), + [anon_sym_check] = ACTIONS(340), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_QMARK_DOT] = ACTIONS(346), + [anon_sym_not] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_TILDE] = ACTIONS(352), + [sym_integer] = ACTIONS(358), + [sym_float] = ACTIONS(361), + [sym_true] = ACTIONS(358), + [sym_false] = ACTIONS(358), + [sym_none] = ACTIONS(358), + [sym_undefined] = ACTIONS(358), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__indent] = ACTIONS(189), - [sym_string_start] = ACTIONS(275), + [sym__dedent] = ACTIONS(364), + [sym_string_start] = ACTIONS(366), }, [87] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5063), - [sym_expression] = STATE(2322), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(2338), - [sym_primary_expression] = STATE(2314), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(2463), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(2536), - [sym_dictionary] = STATE(2536), - [sym_list_comprehension] = STATE(2536), - [sym_dictionary_comprehension] = STATE(2536), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [sym_identifier] = ACTIONS(412), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_in] = ACTIONS(191), + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dotted_name] = STATE(5239), + [sym_expression] = STATE(3517), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3613), + [sym_primary_expression] = STATE(3544), + [sym_paren_expression] = STATE(3706), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3706), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(2709), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), + [sym_list] = STATE(3748), + [sym_dictionary] = STATE(3748), + [sym_list_comprehension] = STATE(3748), + [sym_dictionary_comprehension] = STATE(3748), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3706), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(61), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(444), - [anon_sym_not] = ACTIONS(424), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(383), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(389), + [sym_float] = ACTIONS(391), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), + [sym_string_start] = ACTIONS(393), }, [88] = { - [sym_schema_expr] = STATE(2819), - [sym_schema_instantiation] = STATE(2819), - [sym_lambda_expr] = STATE(2819), - [sym_quant_expr] = STATE(2819), - [sym_quant_op] = STATE(5958), - [sym_dotted_name] = STATE(5072), - [sym_expression] = STATE(2620), - [sym_as_expression] = STATE(2820), - [sym_selector_expression] = STATE(2680), - [sym_primary_expression] = STATE(2672), - [sym_paren_expression] = STATE(2819), - [sym_braces_expression] = STATE(2819), - [sym_not_operator] = STATE(2820), - [sym_boolean_operator] = STATE(2820), - [sym_long_expression] = STATE(2820), - [sym_string_literal_expr] = STATE(2819), - [sym_config_expr] = STATE(2819), - [sym_binary_operator] = STATE(2826), - [sym_unary_operator] = STATE(2819), - [sym_sequence_operation] = STATE(2820), - [sym_in_operation] = STATE(2832), - [sym_not_in_operation] = STATE(2832), - [sym_comparison_operator] = STATE(2820), - [sym_select_suffix] = STATE(2836), - [sym_attribute] = STATE(2819), - [sym_optional_attribute] = STATE(2819), - [sym_optional_attribute_declaration] = STATE(2819), - [sym_optional_item] = STATE(2819), - [sym_null_coalesce] = STATE(2819), - [sym_subscript] = STATE(2826), - [sym_call] = STATE(2707), - [sym_list] = STATE(2839), - [sym_dictionary] = STATE(2839), - [sym_list_comprehension] = STATE(2839), - [sym_dictionary_comprehension] = STATE(2839), - [sym_conditional_expression] = STATE(2820), - [sym_string] = STATE(2819), - [aux_sym_selector_expression_repeat1] = STATE(2532), - [sym_identifier] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_in] = ACTIONS(59), + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5246), + [sym_expression] = STATE(2296), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2357), + [sym_primary_expression] = STATE(2294), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2596), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2597), + [sym_dictionary] = STATE(2597), + [sym_list_comprehension] = STATE(2597), + [sym_dictionary_comprehension] = STATE(2597), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [sym_identifier] = ACTIONS(283), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(462), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(468), - [sym_float] = ACTIONS(470), - [sym_true] = ACTIONS(468), - [sym_false] = ACTIONS(468), - [sym_none] = ACTIONS(468), - [sym_undefined] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_QMARK_DOT] = ACTIONS(397), + [anon_sym_not] = ACTIONS(287), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(472), + [sym__newline] = ACTIONS(133), + [sym__indent] = ACTIONS(133), + [sym_string_start] = ACTIONS(281), }, [89] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dotted_name] = STATE(5136), - [sym_expression] = STATE(3463), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3558), - [sym_primary_expression] = STATE(3432), - [sym_paren_expression] = STATE(3665), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(3665), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), - [sym_list] = STATE(3592), - [sym_dictionary] = STATE(3592), - [sym_list_comprehension] = STATE(3592), - [sym_dictionary_comprehension] = STATE(3592), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(3665), - [sym_identifier] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_in] = ACTIONS(191), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(476), - [anon_sym_not] = ACTIONS(398), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(404), - [sym_float] = ACTIONS(406), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [sym__statement] = STATE(89), + [sym__simple_statements] = STATE(89), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_if_statement] = STATE(89), + [sym_if_rule_statement] = STATE(89), + [sym_rule_statement] = STATE(89), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(89), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_schema_statement] = STATE(89), + [sym_mixin_statement] = STATE(3971), + [sym_protocol_statement] = STATE(89), + [sym_check_statement] = STATE(89), + [sym_decorated_definition] = STATE(89), + [sym_decorator] = STATE(4848), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5053), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6472), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3427), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(89), + [aux_sym_decorated_definition_repeat1] = STATE(4848), + [ts_builtin_sym_end] = ACTIONS(364), + [sym_identifier] = ACTIONS(295), + [anon_sym_import] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(301), + [anon_sym_assert] = ACTIONS(304), + [anon_sym_if] = ACTIONS(399), + [anon_sym_rule] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_lambda] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(322), + [anon_sym_all] = ACTIONS(325), + [anon_sym_any] = ACTIONS(325), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_map] = ACTIONS(325), + [anon_sym_type] = ACTIONS(328), + [anon_sym_schema] = ACTIONS(408), + [anon_sym_mixin] = ACTIONS(411), + [anon_sym_protocol] = ACTIONS(414), + [anon_sym_check] = ACTIONS(417), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_QMARK_DOT] = ACTIONS(346), + [anon_sym_not] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_TILDE] = ACTIONS(352), + [sym_integer] = ACTIONS(358), + [sym_float] = ACTIONS(361), + [sym_true] = ACTIONS(358), + [sym_false] = ACTIONS(358), + [sym_none] = ACTIONS(358), + [sym_undefined] = ACTIONS(358), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(366), }, [90] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(5040), - [sym_expression] = STATE(2383), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2660), - [sym_primary_expression] = STATE(2351), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2517), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2691), - [sym_dictionary] = STATE(2691), - [sym_list_comprehension] = STATE(2691), - [sym_dictionary_comprehension] = STATE(2691), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [sym_identifier] = ACTIONS(374), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(438), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_in] = ACTIONS(191), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_type] = ACTIONS(191), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_not] = ACTIONS(378), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__indent] = ACTIONS(189), - [sym_string_start] = ACTIONS(275), + [sym__dedent] = ACTIONS(420), + [sym_string_start] = ACTIONS(55), }, [91] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5122), - [sym_expression] = STATE(3624), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3832), - [sym_primary_expression] = STATE(3608), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(2896), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(4009), - [sym_dictionary] = STATE(4009), - [sym_list_comprehension] = STATE(4009), - [sym_dictionary_comprehension] = STATE(4009), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(482), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(494), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_then] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym__dedent] = ACTIONS(422), + [sym_string_start] = ACTIONS(55), }, [92] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5056), - [sym_expression] = STATE(2607), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(2681), - [sym_primary_expression] = STATE(2669), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2526), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(2849), - [sym_dictionary] = STATE(2849), - [sym_list_comprehension] = STATE(2849), - [sym_dictionary_comprehension] = STATE(2849), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(482), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_in] = ACTIONS(59), + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5158), + [sym_expression] = STATE(2348), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(2458), + [sym_primary_expression] = STATE(2369), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(2607), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(2707), + [sym_dictionary] = STATE(2707), + [sym_list_comprehension] = STATE(2707), + [sym_dictionary_comprehension] = STATE(2707), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(61), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(518), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_then] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(436), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(446), }, [93] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5121), - [sym_expression] = STATE(3614), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3835), - [sym_primary_expression] = STATE(3717), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(2798), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(4019), - [sym_dictionary] = STATE(4019), - [sym_list_comprehension] = STATE(4019), - [sym_dictionary_comprehension] = STATE(4019), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [aux_sym_selector_expression_repeat1] = STATE(2532), - [sym_identifier] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(89), + [sym__simple_statements] = STATE(89), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_if_statement] = STATE(89), + [sym_if_rule_statement] = STATE(89), + [sym_rule_statement] = STATE(89), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(89), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_schema_statement] = STATE(89), + [sym_mixin_statement] = STATE(3971), + [sym_protocol_statement] = STATE(89), + [sym_check_statement] = STATE(89), + [sym_decorated_definition] = STATE(89), + [sym_decorator] = STATE(4848), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5053), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6472), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3427), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(89), + [aux_sym_decorated_definition_repeat1] = STATE(4848), + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_rule] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(542), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(33), + [anon_sym_mixin] = ACTIONS(35), + [anon_sym_protocol] = ACTIONS(37), + [anon_sym_check] = ACTIONS(39), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(55), }, [94] = { - [sym_schema_expr] = STATE(4160), - [sym_schema_instantiation] = STATE(4160), - [sym_lambda_expr] = STATE(4160), - [sym_quant_expr] = STATE(4160), - [sym_quant_op] = STATE(5996), - [sym_dotted_name] = STATE(5108), - [sym_expression] = STATE(3811), - [sym_as_expression] = STATE(4192), - [sym_selector_expression] = STATE(4000), - [sym_primary_expression] = STATE(3841), - [sym_paren_expression] = STATE(4160), - [sym_braces_expression] = STATE(4160), - [sym_not_operator] = STATE(4192), - [sym_boolean_operator] = STATE(4192), - [sym_long_expression] = STATE(4192), - [sym_string_literal_expr] = STATE(4160), - [sym_config_expr] = STATE(4160), - [sym_binary_operator] = STATE(4239), - [sym_unary_operator] = STATE(4160), - [sym_sequence_operation] = STATE(4192), - [sym_in_operation] = STATE(4220), - [sym_not_in_operation] = STATE(4220), - [sym_comparison_operator] = STATE(4192), - [sym_select_suffix] = STATE(3068), - [sym_attribute] = STATE(4160), - [sym_optional_attribute] = STATE(4160), - [sym_optional_attribute_declaration] = STATE(4160), - [sym_optional_item] = STATE(4160), - [sym_null_coalesce] = STATE(4160), - [sym_subscript] = STATE(4239), - [sym_call] = STATE(3807), - [sym_list] = STATE(4229), - [sym_dictionary] = STATE(4229), - [sym_list_comprehension] = STATE(4229), - [sym_dictionary_comprehension] = STATE(4229), - [sym_conditional_expression] = STATE(4192), - [sym_string] = STATE(4160), - [aux_sym_selector_expression_repeat1] = STATE(2754), - [sym_identifier] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(59), - [anon_sym_else] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_lambda] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(59), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(59), - [anon_sym_QMARK_DOT] = ACTIONS(59), - [anon_sym_not] = ACTIONS(568), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(570), - [anon_sym_LF] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(59), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_PIPE] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LT_LT] = ACTIONS(59), - [anon_sym_GT_GT] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(59), - [anon_sym_EQ_EQ] = ACTIONS(59), - [anon_sym_BANG_EQ] = ACTIONS(59), - [anon_sym_GT_EQ] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(59), - [sym_integer] = ACTIONS(574), - [sym_float] = ACTIONS(574), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_none] = ACTIONS(574), - [sym_undefined] = ACTIONS(574), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(576), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(450), + [sym_string_start] = ACTIONS(55), }, [95] = { - [sym_schema_expr] = STATE(3051), - [sym_schema_instantiation] = STATE(3051), - [sym_lambda_expr] = STATE(3051), - [sym_quant_expr] = STATE(3051), - [sym_quant_op] = STATE(5934), - [sym_dotted_name] = STATE(5051), - [sym_expression] = STATE(2689), - [sym_as_expression] = STATE(3063), - [sym_selector_expression] = STATE(2837), - [sym_primary_expression] = STATE(2678), - [sym_paren_expression] = STATE(3051), - [sym_braces_expression] = STATE(3051), - [sym_not_operator] = STATE(3063), - [sym_boolean_operator] = STATE(3063), - [sym_long_expression] = STATE(3063), - [sym_string_literal_expr] = STATE(3051), - [sym_config_expr] = STATE(3051), - [sym_binary_operator] = STATE(3055), - [sym_unary_operator] = STATE(3051), - [sym_sequence_operation] = STATE(3063), - [sym_in_operation] = STATE(3056), - [sym_not_in_operation] = STATE(3056), - [sym_comparison_operator] = STATE(3063), - [sym_select_suffix] = STATE(3000), - [sym_attribute] = STATE(3051), - [sym_optional_attribute] = STATE(3051), - [sym_optional_attribute_declaration] = STATE(3051), - [sym_optional_item] = STATE(3051), - [sym_null_coalesce] = STATE(3051), - [sym_subscript] = STATE(3055), - [sym_call] = STATE(2870), - [sym_list] = STATE(3009), - [sym_dictionary] = STATE(3009), - [sym_list_comprehension] = STATE(3009), - [sym_dictionary_comprehension] = STATE(3009), - [sym_conditional_expression] = STATE(3063), - [sym_string] = STATE(3051), - [aux_sym_selector_expression_repeat1] = STATE(2754), - [sym_identifier] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(59), - [anon_sym_else] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_lambda] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(59), - [anon_sym_in] = ACTIONS(59), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(59), - [anon_sym_QMARK_DOT] = ACTIONS(59), - [anon_sym_not] = ACTIONS(590), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_LF] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(59), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_PIPE] = ACTIONS(59), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_LT_LT] = ACTIONS(59), - [anon_sym_GT_GT] = ACTIONS(59), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(59), - [anon_sym_EQ_EQ] = ACTIONS(59), - [anon_sym_BANG_EQ] = ACTIONS(59), - [anon_sym_GT_EQ] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(59), - [sym_integer] = ACTIONS(596), - [sym_float] = ACTIONS(596), - [sym_true] = ACTIONS(596), - [sym_false] = ACTIONS(596), - [sym_none] = ACTIONS(596), - [sym_undefined] = ACTIONS(596), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(598), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(452), + [sym_string_start] = ACTIONS(55), }, [96] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5056), - [sym_expression] = STATE(2605), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(2681), - [sym_primary_expression] = STATE(2669), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2614), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(2849), - [sym_dictionary] = STATE(2849), - [sym_list_comprehension] = STATE(2849), - [sym_dictionary_comprehension] = STATE(2849), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [sym_identifier] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_in] = ACTIONS(191), + [sym__statement] = STATE(86), + [sym__simple_statements] = STATE(86), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_if_statement] = STATE(86), + [sym_if_rule_statement] = STATE(86), + [sym_rule_statement] = STATE(86), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_schema_index_signature] = STATE(86), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_schema_statement] = STATE(86), + [sym_mixin_statement] = STATE(3843), + [sym_protocol_statement] = STATE(86), + [sym_check_statement] = STATE(86), + [sym_decorated_definition] = STATE(86), + [sym_decorator] = STATE(4851), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5067), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_assignment] = STATE(6446), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(3452), + [sym_string] = STATE(4257), + [aux_sym_module_repeat1] = STATE(86), + [aux_sym_decorated_definition_repeat1] = STATE(4851), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(233), + [anon_sym_rule] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(602), - [anon_sym_not] = ACTIONS(518), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_then] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_type] = ACTIONS(31), + [anon_sym_schema] = ACTIONS(239), + [anon_sym_mixin] = ACTIONS(241), + [anon_sym_protocol] = ACTIONS(243), + [anon_sym_check] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym__dedent] = ACTIONS(454), + [sym_string_start] = ACTIONS(55), }, [97] = { - [sym_schema_expr] = STATE(2819), - [sym_schema_instantiation] = STATE(2819), - [sym_lambda_expr] = STATE(2819), - [sym_quant_expr] = STATE(2819), - [sym_quant_op] = STATE(5958), - [sym_dotted_name] = STATE(5072), - [sym_expression] = STATE(2619), - [sym_as_expression] = STATE(2820), - [sym_selector_expression] = STATE(2680), - [sym_primary_expression] = STATE(2672), - [sym_paren_expression] = STATE(2819), - [sym_braces_expression] = STATE(2819), - [sym_not_operator] = STATE(2820), - [sym_boolean_operator] = STATE(2820), - [sym_long_expression] = STATE(2820), - [sym_string_literal_expr] = STATE(2819), - [sym_config_expr] = STATE(2819), - [sym_binary_operator] = STATE(2826), - [sym_unary_operator] = STATE(2819), - [sym_sequence_operation] = STATE(2820), - [sym_in_operation] = STATE(2832), - [sym_not_in_operation] = STATE(2832), - [sym_comparison_operator] = STATE(2820), - [sym_select_suffix] = STATE(2819), - [sym_attribute] = STATE(2819), - [sym_optional_attribute] = STATE(2819), - [sym_optional_attribute_declaration] = STATE(2819), - [sym_optional_item] = STATE(2819), - [sym_null_coalesce] = STATE(2819), - [sym_subscript] = STATE(2826), - [sym_call] = STATE(2707), - [sym_list] = STATE(2839), - [sym_dictionary] = STATE(2839), - [sym_list_comprehension] = STATE(2839), - [sym_dictionary_comprehension] = STATE(2839), - [sym_conditional_expression] = STATE(2820), - [sym_string] = STATE(2819), - [sym_identifier] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_in] = ACTIONS(191), + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5214), + [sym_expression] = STATE(3596), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3756), + [sym_primary_expression] = STATE(3583), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(2836), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3845), + [sym_dictionary] = STATE(3845), + [sym_list_comprehension] = STATE(3845), + [sym_dictionary_comprehension] = STATE(3845), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(458), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(61), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(608), - [anon_sym_not] = ACTIONS(462), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DQUOTE] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(468), - [sym_float] = ACTIONS(470), - [sym_true] = ACTIONS(468), - [sym_false] = ACTIONS(468), - [sym_none] = ACTIONS(468), - [sym_undefined] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(470), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_then] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(472), + [sym_string_start] = ACTIONS(480), }, [98] = { - [sym_schema_expr] = STATE(3051), - [sym_schema_instantiation] = STATE(3051), - [sym_lambda_expr] = STATE(3051), - [sym_quant_expr] = STATE(3051), - [sym_quant_op] = STATE(5934), - [sym_dotted_name] = STATE(5051), - [sym_expression] = STATE(2690), - [sym_as_expression] = STATE(3063), - [sym_selector_expression] = STATE(2837), - [sym_primary_expression] = STATE(2678), - [sym_paren_expression] = STATE(3051), - [sym_braces_expression] = STATE(3051), - [sym_not_operator] = STATE(3063), - [sym_boolean_operator] = STATE(3063), - [sym_long_expression] = STATE(3063), - [sym_string_literal_expr] = STATE(3051), - [sym_config_expr] = STATE(3051), - [sym_binary_operator] = STATE(3055), - [sym_unary_operator] = STATE(3051), - [sym_sequence_operation] = STATE(3063), - [sym_in_operation] = STATE(3056), - [sym_not_in_operation] = STATE(3056), - [sym_comparison_operator] = STATE(3063), - [sym_select_suffix] = STATE(3051), - [sym_attribute] = STATE(3051), - [sym_optional_attribute] = STATE(3051), - [sym_optional_attribute_declaration] = STATE(3051), - [sym_optional_item] = STATE(3051), - [sym_null_coalesce] = STATE(3051), - [sym_subscript] = STATE(3055), - [sym_call] = STATE(2870), - [sym_list] = STATE(3009), - [sym_dictionary] = STATE(3009), - [sym_list_comprehension] = STATE(3009), - [sym_dictionary_comprehension] = STATE(3009), - [sym_conditional_expression] = STATE(3063), - [sym_string] = STATE(3051), - [sym_identifier] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_lambda] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_in] = ACTIONS(191), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(191), - [anon_sym_QMARK_DOT] = ACTIONS(610), - [anon_sym_not] = ACTIONS(590), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_LF] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(191), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(191), - [anon_sym_GT_EQ] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(191), - [sym_integer] = ACTIONS(596), - [sym_float] = ACTIONS(596), - [sym_true] = ACTIONS(596), - [sym_false] = ACTIONS(596), - [sym_none] = ACTIONS(596), - [sym_undefined] = ACTIONS(596), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(598), - }, - [99] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5069), - [sym_expression] = STATE(3732), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(4027), - [sym_primary_expression] = STATE(3729), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3164), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(4111), - [sym_list] = STATE(4142), - [sym_dictionary] = STATE(4142), - [sym_list_comprehension] = STATE(4142), - [sym_dictionary_comprehension] = STATE(4142), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(616), + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5152), + [sym_expression] = STATE(2421), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(2704), + [sym_primary_expression] = STATE(2453), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2556), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(2801), + [sym_dictionary] = STATE(2801), + [sym_list_comprehension] = STATE(2801), + [sym_dictionary_comprehension] = STATE(2801), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(458), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(486), [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(61), [anon_sym_lambda] = ACTIONS(490), - [anon_sym_DASH_GT] = ACTIONS(63), [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_in] = ACTIONS(59), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(618), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(494), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_then] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), [sym_integer] = ACTIONS(500), [sym_float] = ACTIONS(502), [sym_true] = ACTIONS(500), @@ -27285,451 +27549,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, - [100] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5121), - [sym_expression] = STATE(3615), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3835), - [sym_primary_expression] = STATE(3717), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(4019), - [sym_dictionary] = STATE(4019), - [sym_list_comprehension] = STATE(4019), - [sym_dictionary_comprehension] = STATE(4019), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_in] = ACTIONS(191), + [99] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5158), + [sym_expression] = STATE(2349), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(2458), + [sym_primary_expression] = STATE(2369), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(2606), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(2707), + [sym_dictionary] = STATE(2707), + [sym_list_comprehension] = STATE(2707), + [sym_dictionary_comprehension] = STATE(2707), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [sym_identifier] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(129), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(542), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(508), + [anon_sym_not] = ACTIONS(436), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(446), }, - [101] = { - [sym_schema_expr] = STATE(3203), - [sym_schema_instantiation] = STATE(3203), - [sym_lambda_expr] = STATE(3203), - [sym_quant_expr] = STATE(3203), - [sym_quant_op] = STATE(5965), - [sym_dotted_name] = STATE(5079), - [sym_expression] = STATE(2939), - [sym_as_expression] = STATE(3207), - [sym_selector_expression] = STATE(3040), - [sym_primary_expression] = STATE(2793), - [sym_paren_expression] = STATE(3203), - [sym_braces_expression] = STATE(3203), - [sym_not_operator] = STATE(3207), - [sym_boolean_operator] = STATE(3207), - [sym_long_expression] = STATE(3207), - [sym_string_literal_expr] = STATE(3203), - [sym_config_expr] = STATE(3203), - [sym_binary_operator] = STATE(3210), - [sym_unary_operator] = STATE(3203), - [sym_sequence_operation] = STATE(3207), - [sym_in_operation] = STATE(3211), - [sym_not_in_operation] = STATE(3211), - [sym_comparison_operator] = STATE(3207), - [sym_select_suffix] = STATE(3114), - [sym_attribute] = STATE(3203), - [sym_optional_attribute] = STATE(3203), - [sym_optional_attribute_declaration] = STATE(3203), - [sym_optional_item] = STATE(3203), - [sym_null_coalesce] = STATE(3203), - [sym_subscript] = STATE(3210), - [sym_call] = STATE(3027), - [sym_list] = STATE(3169), - [sym_dictionary] = STATE(3169), - [sym_list_comprehension] = STATE(3169), - [sym_dictionary_comprehension] = STATE(3169), - [sym_conditional_expression] = STATE(3207), - [sym_string] = STATE(3203), - [aux_sym_selector_expression_repeat1] = STATE(2815), - [sym_identifier] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_lambda] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_in] = ACTIONS(59), + [100] = { + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5114), + [sym_expression] = STATE(2368), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2456), + [sym_primary_expression] = STATE(2365), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2596), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2708), + [sym_dictionary] = STATE(2708), + [sym_list_comprehension] = STATE(2708), + [sym_dictionary_comprehension] = STATE(2708), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [sym_identifier] = ACTIONS(257), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(642), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(648), - [sym_float] = ACTIONS(650), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_none] = ACTIONS(648), - [sym_undefined] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_type] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_QMARK_DOT] = ACTIONS(397), + [anon_sym_not] = ACTIONS(271), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(652), + [sym__newline] = ACTIONS(133), + [sym__indent] = ACTIONS(133), + [sym_string_start] = ACTIONS(281), }, - [102] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5087), - [sym_expression] = STATE(2866), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(3017), - [sym_primary_expression] = STATE(2850), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2526), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(3124), - [sym_dictionary] = STATE(3124), - [sym_list_comprehension] = STATE(3124), - [sym_dictionary_comprehension] = STATE(3124), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_DASH_GT] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_in] = ACTIONS(59), + [101] = { + [sym_schema_expr] = STATE(2981), + [sym_schema_instantiation] = STATE(2981), + [sym_lambda_expr] = STATE(2981), + [sym_quant_expr] = STATE(2981), + [sym_quant_op] = STATE(6038), + [sym_dotted_name] = STATE(5171), + [sym_expression] = STATE(2638), + [sym_as_expression] = STATE(2983), + [sym_selector_expression] = STATE(2736), + [sym_primary_expression] = STATE(2719), + [sym_paren_expression] = STATE(2981), + [sym_braces_expression] = STATE(2981), + [sym_not_operator] = STATE(2983), + [sym_boolean_operator] = STATE(2983), + [sym_long_expression] = STATE(2983), + [sym_string_literal_expr] = STATE(2981), + [sym_config_expr] = STATE(2981), + [sym_binary_operator] = STATE(2986), + [sym_unary_operator] = STATE(2981), + [sym_sequence_operation] = STATE(2983), + [sym_in_operation] = STATE(2995), + [sym_not_in_operation] = STATE(2995), + [sym_comparison_operator] = STATE(2983), + [sym_select_suffix] = STATE(2859), + [sym_attribute] = STATE(2981), + [sym_optional_attribute] = STATE(2981), + [sym_optional_attribute_declaration] = STATE(2981), + [sym_optional_item] = STATE(2981), + [sym_null_coalesce] = STATE(2981), + [sym_subscript] = STATE(2986), + [sym_call] = STATE(2751), + [sym_list] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_conditional_expression] = STATE(2983), + [sym_string] = STATE(2981), + [aux_sym_selector_expression_repeat1] = STATE(2716), + [sym_identifier] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_RBRACK] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(526), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(532), + [sym_float] = ACTIONS(534), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_none] = ACTIONS(532), + [sym_undefined] = ACTIONS(532), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(536), }, - [103] = { - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_dotted_name] = STATE(4990), - [sym_expression] = STATE(3991), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4224), - [sym_primary_expression] = STATE(4043), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_select_suffix] = STATE(3212), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4339), - [sym_dictionary] = STATE(4339), - [sym_list_comprehension] = STATE(4339), - [sym_dictionary_comprehension] = STATE(4339), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [aux_sym_selector_expression_repeat1] = STATE(2871), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_lambda] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_in] = ACTIONS(59), + [102] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5099), + [sym_expression] = STATE(3715), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3871), + [sym_primary_expression] = STATE(3800), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(2873), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4177), + [sym_dictionary] = STATE(4177), + [sym_list_comprehension] = STATE(4177), + [sym_dictionary_comprehension] = STATE(4177), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [aux_sym_selector_expression_repeat1] = STATE(2716), + [sym_identifier] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(550), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(560), }, - [104] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5122), - [sym_expression] = STATE(3626), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3832), - [sym_primary_expression] = STATE(3608), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(4009), - [sym_dictionary] = STATE(4009), - [sym_list_comprehension] = STATE(4009), - [sym_dictionary_comprehension] = STATE(4009), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), + [103] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5152), + [sym_expression] = STATE(2426), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(2704), + [sym_primary_expression] = STATE(2453), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2430), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(2801), + [sym_dictionary] = STATE(2801), + [sym_list_comprehension] = STATE(2801), + [sym_dictionary_comprehension] = STATE(2801), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [sym_identifier] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(486), [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(129), [anon_sym_lambda] = ACTIONS(490), [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_in] = ACTIONS(191), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(564), [anon_sym_not] = ACTIONS(494), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(566), [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_then] = ACTIONS(191), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_then] = ACTIONS(129), [anon_sym_DASH] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(500), [sym_float] = ACTIONS(502), [sym_true] = ACTIONS(500), @@ -27740,718 +28016,1278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, + [104] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dotted_name] = STATE(5239), + [sym_expression] = STATE(3516), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3613), + [sym_primary_expression] = STATE(3544), + [sym_paren_expression] = STATE(3706), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3706), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), + [sym_list] = STATE(3748), + [sym_dictionary] = STATE(3748), + [sym_list_comprehension] = STATE(3748), + [sym_dictionary_comprehension] = STATE(3748), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3706), + [sym_identifier] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(129), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_in] = ACTIONS(129), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(570), + [anon_sym_not] = ACTIONS(383), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(389), + [sym_float] = ACTIONS(391), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(393), + }, [105] = { - [sym_schema_expr] = STATE(3227), - [sym_schema_instantiation] = STATE(3227), - [sym_lambda_expr] = STATE(3227), - [sym_quant_expr] = STATE(3227), - [sym_quant_op] = STATE(5976), - [sym_dotted_name] = STATE(5059), - [sym_expression] = STATE(2869), - [sym_as_expression] = STATE(3226), - [sym_selector_expression] = STATE(3042), - [sym_primary_expression] = STATE(2766), - [sym_paren_expression] = STATE(3227), - [sym_braces_expression] = STATE(3227), - [sym_not_operator] = STATE(3226), - [sym_boolean_operator] = STATE(3226), - [sym_long_expression] = STATE(3226), - [sym_string_literal_expr] = STATE(3227), - [sym_config_expr] = STATE(3227), - [sym_binary_operator] = STATE(3223), - [sym_unary_operator] = STATE(3227), - [sym_sequence_operation] = STATE(3226), - [sym_in_operation] = STATE(3221), - [sym_not_in_operation] = STATE(3221), - [sym_comparison_operator] = STATE(3226), - [sym_select_suffix] = STATE(3181), - [sym_attribute] = STATE(3227), - [sym_optional_attribute] = STATE(3227), - [sym_optional_attribute_declaration] = STATE(3227), - [sym_optional_item] = STATE(3227), - [sym_null_coalesce] = STATE(3227), - [sym_subscript] = STATE(3223), - [sym_call] = STATE(2993), - [sym_list] = STATE(3144), - [sym_dictionary] = STATE(3144), - [sym_list_comprehension] = STATE(3144), - [sym_dictionary_comprehension] = STATE(3144), - [sym_conditional_expression] = STATE(3226), - [sym_string] = STATE(3227), - [aux_sym_selector_expression_repeat1] = STATE(2871), - [sym_identifier] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_lambda] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_in] = ACTIONS(59), + [sym_schema_expr] = STATE(2981), + [sym_schema_instantiation] = STATE(2981), + [sym_lambda_expr] = STATE(2981), + [sym_quant_expr] = STATE(2981), + [sym_quant_op] = STATE(6038), + [sym_dotted_name] = STATE(5171), + [sym_expression] = STATE(2644), + [sym_as_expression] = STATE(2983), + [sym_selector_expression] = STATE(2736), + [sym_primary_expression] = STATE(2719), + [sym_paren_expression] = STATE(2981), + [sym_braces_expression] = STATE(2981), + [sym_not_operator] = STATE(2983), + [sym_boolean_operator] = STATE(2983), + [sym_long_expression] = STATE(2983), + [sym_string_literal_expr] = STATE(2981), + [sym_config_expr] = STATE(2981), + [sym_binary_operator] = STATE(2986), + [sym_unary_operator] = STATE(2981), + [sym_sequence_operation] = STATE(2983), + [sym_in_operation] = STATE(2995), + [sym_not_in_operation] = STATE(2995), + [sym_comparison_operator] = STATE(2983), + [sym_select_suffix] = STATE(2981), + [sym_attribute] = STATE(2981), + [sym_optional_attribute] = STATE(2981), + [sym_optional_attribute_declaration] = STATE(2981), + [sym_optional_item] = STATE(2981), + [sym_null_coalesce] = STATE(2981), + [sym_subscript] = STATE(2986), + [sym_call] = STATE(2751), + [sym_list] = STATE(2885), + [sym_dictionary] = STATE(2885), + [sym_list_comprehension] = STATE(2885), + [sym_dictionary_comprehension] = STATE(2885), + [sym_conditional_expression] = STATE(2983), + [sym_string] = STATE(2981), + [sym_identifier] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(690), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(698), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(576), + [anon_sym_not] = ACTIONS(526), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(532), + [sym_float] = ACTIONS(534), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_none] = ACTIONS(532), + [sym_undefined] = ACTIONS(532), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(700), + [sym_string_start] = ACTIONS(536), }, [106] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5095), - [sym_expression] = STATE(2995), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(3224), - [sym_primary_expression] = STATE(3010), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(3182), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(3233), - [sym_dictionary] = STATE(3233), - [sym_list_comprehension] = STATE(3233), - [sym_dictionary_comprehension] = STATE(3233), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(702), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(386), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(704), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_in] = ACTIONS(59), + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5214), + [sym_expression] = STATE(3590), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3756), + [sym_primary_expression] = STATE(3583), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3845), + [sym_dictionary] = STATE(3845), + [sym_list_comprehension] = STATE(3845), + [sym_dictionary_comprehension] = STATE(3845), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(129), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(706), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(470), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_then] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), + [sym_string_start] = ACTIONS(480), }, [107] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5026), - [sym_expression] = STATE(3944), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4242), - [sym_primary_expression] = STATE(3872), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(3206), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_list] = STATE(4249), - [sym_dictionary] = STATE(4249), - [sym_list_comprehension] = STATE(4249), - [sym_dictionary_comprehension] = STATE(4249), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [aux_sym_selector_expression_repeat1] = STATE(2815), - [sym_identifier] = ACTIONS(710), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_in] = ACTIONS(59), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_dotted_name] = STATE(5139), + [sym_expression] = STATE(3869), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4250), + [sym_primary_expression] = STATE(3936), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_select_suffix] = STATE(3163), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4268), + [sym_dictionary] = STATE(4268), + [sym_list_comprehension] = STATE(4268), + [sym_dictionary_comprehension] = STATE(4268), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [aux_sym_selector_expression_repeat1] = STATE(2840), + [sym_identifier] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(722), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(590), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym__newline] = ACTIONS(57), + [sym_string_start] = ACTIONS(55), }, [108] = { - [sym_schema_expr] = STATE(4160), - [sym_schema_instantiation] = STATE(4160), - [sym_lambda_expr] = STATE(4160), - [sym_quant_expr] = STATE(4160), - [sym_quant_op] = STATE(5996), - [sym_dotted_name] = STATE(5108), - [sym_expression] = STATE(3819), - [sym_as_expression] = STATE(4192), - [sym_selector_expression] = STATE(4000), - [sym_primary_expression] = STATE(3841), - [sym_paren_expression] = STATE(4160), - [sym_braces_expression] = STATE(4160), - [sym_not_operator] = STATE(4192), - [sym_boolean_operator] = STATE(4192), - [sym_long_expression] = STATE(4192), - [sym_string_literal_expr] = STATE(4160), - [sym_config_expr] = STATE(4160), - [sym_binary_operator] = STATE(4239), - [sym_unary_operator] = STATE(4160), - [sym_sequence_operation] = STATE(4192), - [sym_in_operation] = STATE(4220), - [sym_not_in_operation] = STATE(4220), - [sym_comparison_operator] = STATE(4192), - [sym_select_suffix] = STATE(4160), - [sym_attribute] = STATE(4160), - [sym_optional_attribute] = STATE(4160), - [sym_optional_attribute_declaration] = STATE(4160), - [sym_optional_item] = STATE(4160), - [sym_null_coalesce] = STATE(4160), - [sym_subscript] = STATE(4239), - [sym_call] = STATE(3807), - [sym_list] = STATE(4229), - [sym_dictionary] = STATE(4229), - [sym_list_comprehension] = STATE(4229), - [sym_dictionary_comprehension] = STATE(4229), - [sym_conditional_expression] = STATE(4192), - [sym_string] = STATE(4160), - [sym_identifier] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(734), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_lambda] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_in] = ACTIONS(191), + [sym_schema_expr] = STATE(3038), + [sym_schema_instantiation] = STATE(3038), + [sym_lambda_expr] = STATE(3038), + [sym_quant_expr] = STATE(3038), + [sym_quant_op] = STATE(6050), + [sym_dotted_name] = STATE(5191), + [sym_expression] = STATE(2780), + [sym_as_expression] = STATE(3041), + [sym_selector_expression] = STATE(2879), + [sym_primary_expression] = STATE(2845), + [sym_paren_expression] = STATE(3038), + [sym_braces_expression] = STATE(3038), + [sym_not_operator] = STATE(3041), + [sym_boolean_operator] = STATE(3041), + [sym_long_expression] = STATE(3041), + [sym_string_literal_expr] = STATE(3038), + [sym_config_expr] = STATE(3038), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3038), + [sym_sequence_operation] = STATE(3041), + [sym_in_operation] = STATE(3046), + [sym_not_in_operation] = STATE(3046), + [sym_comparison_operator] = STATE(3041), + [sym_select_suffix] = STATE(3179), + [sym_attribute] = STATE(3038), + [sym_optional_attribute] = STATE(3038), + [sym_optional_attribute_declaration] = STATE(3038), + [sym_optional_item] = STATE(3038), + [sym_null_coalesce] = STATE(3038), + [sym_subscript] = STATE(3045), + [sym_call] = STATE(2850), + [sym_list] = STATE(3037), + [sym_dictionary] = STATE(3037), + [sym_list_comprehension] = STATE(3037), + [sym_dictionary_comprehension] = STATE(3037), + [sym_conditional_expression] = STATE(3041), + [sym_string] = STATE(3038), + [aux_sym_selector_expression_repeat1] = STATE(2840), + [sym_identifier] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_lambda] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(191), - [anon_sym_QMARK_DOT] = ACTIONS(734), - [anon_sym_not] = ACTIONS(568), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [anon_sym_LF] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(191), - [anon_sym_SLASH_SLASH] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_TILDE] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(191), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(191), - [anon_sym_GT_EQ] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(191), - [sym_integer] = ACTIONS(574), - [sym_float] = ACTIONS(574), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_none] = ACTIONS(574), - [sym_undefined] = ACTIONS(574), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(604), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(610), + [sym_float] = ACTIONS(612), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_none] = ACTIONS(610), + [sym_undefined] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym_string_start] = ACTIONS(614), + }, + [109] = { + [sym_schema_expr] = STATE(3195), + [sym_schema_instantiation] = STATE(3195), + [sym_lambda_expr] = STATE(3195), + [sym_quant_expr] = STATE(3195), + [sym_quant_op] = STATE(5959), + [sym_dotted_name] = STATE(5140), + [sym_expression] = STATE(2808), + [sym_as_expression] = STATE(3197), + [sym_selector_expression] = STATE(2884), + [sym_primary_expression] = STATE(2838), + [sym_paren_expression] = STATE(3195), + [sym_braces_expression] = STATE(3195), + [sym_not_operator] = STATE(3197), + [sym_boolean_operator] = STATE(3197), + [sym_long_expression] = STATE(3197), + [sym_string_literal_expr] = STATE(3195), + [sym_config_expr] = STATE(3195), + [sym_binary_operator] = STATE(3194), + [sym_unary_operator] = STATE(3195), + [sym_sequence_operation] = STATE(3197), + [sym_in_operation] = STATE(3198), + [sym_not_in_operation] = STATE(3198), + [sym_comparison_operator] = STATE(3197), + [sym_select_suffix] = STATE(3040), + [sym_attribute] = STATE(3195), + [sym_optional_attribute] = STATE(3195), + [sym_optional_attribute_declaration] = STATE(3195), + [sym_optional_item] = STATE(3195), + [sym_null_coalesce] = STATE(3195), + [sym_subscript] = STATE(3194), + [sym_call] = STATE(2877), + [sym_list] = STATE(3050), + [sym_dictionary] = STATE(3050), + [sym_list_comprehension] = STATE(3050), + [sym_dictionary_comprehension] = STATE(3050), + [sym_conditional_expression] = STATE(3197), + [sym_string] = STATE(3195), + [aux_sym_selector_expression_repeat1] = STATE(2804), + [sym_identifier] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_else] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_lambda] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(61), + [anon_sym_in] = ACTIONS(61), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_QMARK_DOT] = ACTIONS(61), + [anon_sym_not] = ACTIONS(630), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(61), + [anon_sym_SLASH_SLASH] = ACTIONS(61), + [anon_sym_PIPE] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LT_LT] = ACTIONS(61), + [anon_sym_GT_GT] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(61), + [sym_integer] = ACTIONS(636), + [sym_float] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_none] = ACTIONS(636), + [sym_undefined] = ACTIONS(636), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(576), + [sym_string_start] = ACTIONS(638), }, - [109] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5087), - [sym_expression] = STATE(2867), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(3017), - [sym_primary_expression] = STATE(2850), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2614), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(3124), - [sym_dictionary] = STATE(3124), - [sym_list_comprehension] = STATE(3124), - [sym_dictionary_comprehension] = STATE(3124), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [sym_identifier] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_DASH_GT] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_in] = ACTIONS(191), + [110] = { + [sym_schema_expr] = STATE(4338), + [sym_schema_instantiation] = STATE(4338), + [sym_lambda_expr] = STATE(4338), + [sym_quant_expr] = STATE(4338), + [sym_quant_op] = STATE(6173), + [sym_dotted_name] = STATE(5203), + [sym_expression] = STATE(3961), + [sym_as_expression] = STATE(4327), + [sym_selector_expression] = STATE(4252), + [sym_primary_expression] = STATE(3919), + [sym_paren_expression] = STATE(4338), + [sym_braces_expression] = STATE(4338), + [sym_not_operator] = STATE(4327), + [sym_boolean_operator] = STATE(4327), + [sym_long_expression] = STATE(4327), + [sym_string_literal_expr] = STATE(4338), + [sym_config_expr] = STATE(4338), + [sym_binary_operator] = STATE(4339), + [sym_unary_operator] = STATE(4338), + [sym_sequence_operation] = STATE(4327), + [sym_in_operation] = STATE(4328), + [sym_not_in_operation] = STATE(4328), + [sym_comparison_operator] = STATE(4327), + [sym_select_suffix] = STATE(3036), + [sym_attribute] = STATE(4338), + [sym_optional_attribute] = STATE(4338), + [sym_optional_attribute_declaration] = STATE(4338), + [sym_optional_item] = STATE(4338), + [sym_null_coalesce] = STATE(4338), + [sym_subscript] = STATE(4339), + [sym_call] = STATE(3948), + [sym_list] = STATE(4326), + [sym_dictionary] = STATE(4326), + [sym_list_comprehension] = STATE(4326), + [sym_dictionary_comprehension] = STATE(4326), + [sym_conditional_expression] = STATE(4327), + [sym_string] = STATE(4338), + [aux_sym_selector_expression_repeat1] = STATE(2804), + [sym_identifier] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_else] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_lambda] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(61), + [anon_sym_in] = ACTIONS(61), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_QMARK_DOT] = ACTIONS(61), + [anon_sym_not] = ACTIONS(652), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(61), + [anon_sym_SLASH_SLASH] = ACTIONS(61), + [anon_sym_PIPE] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_CARET] = ACTIONS(61), + [anon_sym_LT_LT] = ACTIONS(61), + [anon_sym_GT_GT] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(61), + [sym_integer] = ACTIONS(658), + [sym_float] = ACTIONS(658), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_none] = ACTIONS(658), + [sym_undefined] = ACTIONS(658), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(660), + }, + [111] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5164), + [sym_expression] = STATE(3864), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3975), + [sym_primary_expression] = STATE(3901), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3226), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(4216), + [sym_list] = STATE(4307), + [sym_dictionary] = STATE(4307), + [sym_list_comprehension] = STATE(4307), + [sym_dictionary_comprehension] = STATE(4307), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(602), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(668), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(480), }, - [110] = { - [sym_schema_expr] = STATE(3227), - [sym_schema_instantiation] = STATE(3227), - [sym_lambda_expr] = STATE(3227), - [sym_quant_expr] = STATE(3227), - [sym_quant_op] = STATE(5976), - [sym_dotted_name] = STATE(5059), - [sym_expression] = STATE(2877), - [sym_as_expression] = STATE(3226), - [sym_selector_expression] = STATE(3042), - [sym_primary_expression] = STATE(2766), - [sym_paren_expression] = STATE(3227), - [sym_braces_expression] = STATE(3227), - [sym_not_operator] = STATE(3226), - [sym_boolean_operator] = STATE(3226), - [sym_long_expression] = STATE(3226), - [sym_string_literal_expr] = STATE(3227), - [sym_config_expr] = STATE(3227), - [sym_binary_operator] = STATE(3223), - [sym_unary_operator] = STATE(3227), - [sym_sequence_operation] = STATE(3226), - [sym_in_operation] = STATE(3221), - [sym_not_in_operation] = STATE(3221), - [sym_comparison_operator] = STATE(3226), - [sym_select_suffix] = STATE(3227), - [sym_attribute] = STATE(3227), - [sym_optional_attribute] = STATE(3227), - [sym_optional_attribute_declaration] = STATE(3227), - [sym_optional_item] = STATE(3227), - [sym_null_coalesce] = STATE(3227), - [sym_subscript] = STATE(3223), - [sym_call] = STATE(2993), - [sym_list] = STATE(3144), - [sym_dictionary] = STATE(3144), - [sym_list_comprehension] = STATE(3144), - [sym_dictionary_comprehension] = STATE(3144), - [sym_conditional_expression] = STATE(3226), - [sym_string] = STATE(3227), - [sym_identifier] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(736), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_lambda] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_in] = ACTIONS(191), + [112] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5102), + [sym_expression] = STATE(4226), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4321), + [sym_primary_expression] = STATE(4242), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(3209), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_list] = STATE(4410), + [sym_dictionary] = STATE(4410), + [sym_list_comprehension] = STATE(4410), + [sym_dictionary_comprehension] = STATE(4410), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [aux_sym_selector_expression_repeat1] = STATE(2892), + [sym_identifier] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(738), - [anon_sym_not] = ACTIONS(690), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(698), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(688), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym_string_start] = ACTIONS(700), + [sym_string_start] = ACTIONS(698), }, - [111] = { - [sym_schema_expr] = STATE(3203), - [sym_schema_instantiation] = STATE(3203), - [sym_lambda_expr] = STATE(3203), - [sym_quant_expr] = STATE(3203), - [sym_quant_op] = STATE(5965), - [sym_dotted_name] = STATE(5079), - [sym_expression] = STATE(2947), - [sym_as_expression] = STATE(3207), - [sym_selector_expression] = STATE(3040), - [sym_primary_expression] = STATE(2793), - [sym_paren_expression] = STATE(3203), - [sym_braces_expression] = STATE(3203), - [sym_not_operator] = STATE(3207), - [sym_boolean_operator] = STATE(3207), - [sym_long_expression] = STATE(3207), - [sym_string_literal_expr] = STATE(3203), - [sym_config_expr] = STATE(3203), - [sym_binary_operator] = STATE(3210), - [sym_unary_operator] = STATE(3203), - [sym_sequence_operation] = STATE(3207), - [sym_in_operation] = STATE(3211), - [sym_not_in_operation] = STATE(3211), - [sym_comparison_operator] = STATE(3207), - [sym_select_suffix] = STATE(3203), - [sym_attribute] = STATE(3203), - [sym_optional_attribute] = STATE(3203), - [sym_optional_attribute_declaration] = STATE(3203), - [sym_optional_item] = STATE(3203), - [sym_null_coalesce] = STATE(3203), - [sym_subscript] = STATE(3210), - [sym_call] = STATE(3027), - [sym_list] = STATE(3169), - [sym_dictionary] = STATE(3169), - [sym_list_comprehension] = STATE(3169), - [sym_dictionary_comprehension] = STATE(3169), - [sym_conditional_expression] = STATE(3207), - [sym_string] = STATE(3203), - [sym_identifier] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_lambda] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_in] = ACTIONS(191), + [113] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5244), + [sym_expression] = STATE(3138), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(3215), + [sym_primary_expression] = STATE(3196), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(3207), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(3289), + [sym_dictionary] = STATE(3289), + [sym_list_comprehension] = STATE(3289), + [sym_dictionary_comprehension] = STATE(3289), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(702), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(742), - [anon_sym_not] = ACTIONS(642), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(648), - [sym_float] = ACTIONS(650), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_none] = ACTIONS(648), - [sym_undefined] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(704), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(652), + [sym_string_start] = ACTIONS(446), }, - [112] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5041), - [sym_expression] = STATE(4359), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(4414), - [sym_primary_expression] = STATE(4283), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(2896), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(4416), - [sym_dictionary] = STATE(4416), - [sym_list_comprehension] = STATE(4416), - [sym_dictionary_comprehension] = STATE(4416), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(482), - [anon_sym_else] = ACTIONS(746), + [114] = { + [sym_schema_expr] = STATE(3228), + [sym_schema_instantiation] = STATE(3228), + [sym_lambda_expr] = STATE(3228), + [sym_quant_expr] = STATE(3228), + [sym_quant_op] = STATE(6041), + [sym_dotted_name] = STATE(5174), + [sym_expression] = STATE(2984), + [sym_as_expression] = STATE(3246), + [sym_selector_expression] = STATE(3034), + [sym_primary_expression] = STATE(2856), + [sym_paren_expression] = STATE(3228), + [sym_braces_expression] = STATE(3228), + [sym_not_operator] = STATE(3246), + [sym_boolean_operator] = STATE(3246), + [sym_long_expression] = STATE(3246), + [sym_string_literal_expr] = STATE(3228), + [sym_config_expr] = STATE(3228), + [sym_binary_operator] = STATE(3232), + [sym_unary_operator] = STATE(3228), + [sym_sequence_operation] = STATE(3246), + [sym_in_operation] = STATE(3242), + [sym_not_in_operation] = STATE(3242), + [sym_comparison_operator] = STATE(3246), + [sym_select_suffix] = STATE(3204), + [sym_attribute] = STATE(3228), + [sym_optional_attribute] = STATE(3228), + [sym_optional_attribute_declaration] = STATE(3228), + [sym_optional_item] = STATE(3228), + [sym_null_coalesce] = STATE(3228), + [sym_subscript] = STATE(3232), + [sym_call] = STATE(3115), + [sym_list] = STATE(3208), + [sym_dictionary] = STATE(3208), + [sym_list_comprehension] = STATE(3208), + [sym_dictionary_comprehension] = STATE(3208), + [sym_conditional_expression] = STATE(3246), + [sym_string] = STATE(3228), + [aux_sym_selector_expression_repeat1] = STATE(2892), + [sym_identifier] = ACTIONS(708), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_lambda] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_in] = ACTIONS(61), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(720), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(728), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), + [sym_undefined] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(730), + }, + [115] = { + [sym_schema_expr] = STATE(3195), + [sym_schema_instantiation] = STATE(3195), + [sym_lambda_expr] = STATE(3195), + [sym_quant_expr] = STATE(3195), + [sym_quant_op] = STATE(5959), + [sym_dotted_name] = STATE(5140), + [sym_expression] = STATE(2813), + [sym_as_expression] = STATE(3197), + [sym_selector_expression] = STATE(2884), + [sym_primary_expression] = STATE(2838), + [sym_paren_expression] = STATE(3195), + [sym_braces_expression] = STATE(3195), + [sym_not_operator] = STATE(3197), + [sym_boolean_operator] = STATE(3197), + [sym_long_expression] = STATE(3197), + [sym_string_literal_expr] = STATE(3195), + [sym_config_expr] = STATE(3195), + [sym_binary_operator] = STATE(3194), + [sym_unary_operator] = STATE(3195), + [sym_sequence_operation] = STATE(3197), + [sym_in_operation] = STATE(3198), + [sym_not_in_operation] = STATE(3198), + [sym_comparison_operator] = STATE(3197), + [sym_select_suffix] = STATE(3195), + [sym_attribute] = STATE(3195), + [sym_optional_attribute] = STATE(3195), + [sym_optional_attribute_declaration] = STATE(3195), + [sym_optional_item] = STATE(3195), + [sym_null_coalesce] = STATE(3195), + [sym_subscript] = STATE(3194), + [sym_call] = STATE(2877), + [sym_list] = STATE(3050), + [sym_dictionary] = STATE(3050), + [sym_list_comprehension] = STATE(3050), + [sym_dictionary_comprehension] = STATE(3050), + [sym_conditional_expression] = STATE(3197), + [sym_string] = STATE(3195), + [sym_identifier] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(732), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_lambda] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_in] = ACTIONS(129), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(129), + [anon_sym_QMARK_DOT] = ACTIONS(732), + [anon_sym_not] = ACTIONS(630), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(129), + [anon_sym_SLASH_SLASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_CARET] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(129), + [anon_sym_EQ_EQ] = ACTIONS(129), + [anon_sym_BANG_EQ] = ACTIONS(129), + [anon_sym_GT_EQ] = ACTIONS(129), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(129), + [sym_integer] = ACTIONS(636), + [sym_float] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_none] = ACTIONS(636), + [sym_undefined] = ACTIONS(636), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(638), + }, + [116] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5099), + [sym_expression] = STATE(3713), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3871), + [sym_primary_expression] = STATE(3800), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4177), + [sym_dictionary] = STATE(4177), + [sym_list_comprehension] = STATE(4177), + [sym_dictionary_comprehension] = STATE(4177), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_in] = ACTIONS(129), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(550), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(560), + }, + [117] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5229), + [sym_expression] = STATE(2972), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(3054), + [sym_primary_expression] = STATE(3006), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2556), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(3220), + [sym_dictionary] = STATE(3220), + [sym_list_comprehension] = STATE(3220), + [sym_dictionary_comprehension] = STATE(3220), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(740), [anon_sym_LPAREN] = ACTIONS(486), [anon_sym_LBRACK] = ACTIONS(488), [anon_sym_lambda] = ACTIONS(490), + [anon_sym_DASH_GT] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_in] = ACTIONS(59), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(748), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(742), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_PERCENT] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(63), - [anon_sym_PIPE] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(63), - [anon_sym_CARET] = ACTIONS(63), - [anon_sym_LT_LT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(63), - [anon_sym_TILDE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_EQ_EQ] = ACTIONS(63), - [anon_sym_BANG_EQ] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_is] = ACTIONS(59), - [anon_sym_QMARK_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), [sym_integer] = ACTIONS(500), [sym_float] = ACTIONS(502), [sym_true] = ACTIONS(500), @@ -28462,84 +29298,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, - [113] = { - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_dotted_name] = STATE(4990), - [sym_expression] = STATE(3985), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4224), - [sym_primary_expression] = STATE(4043), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4339), - [sym_dictionary] = STATE(4339), - [sym_list_comprehension] = STATE(4339), - [sym_dictionary_comprehension] = STATE(4339), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [sym_identifier] = ACTIONS(664), + [118] = { + [sym_schema_expr] = STATE(3038), + [sym_schema_instantiation] = STATE(3038), + [sym_lambda_expr] = STATE(3038), + [sym_quant_expr] = STATE(3038), + [sym_quant_op] = STATE(6050), + [sym_dotted_name] = STATE(5191), + [sym_expression] = STATE(2771), + [sym_as_expression] = STATE(3041), + [sym_selector_expression] = STATE(2879), + [sym_primary_expression] = STATE(2845), + [sym_paren_expression] = STATE(3038), + [sym_braces_expression] = STATE(3038), + [sym_not_operator] = STATE(3041), + [sym_boolean_operator] = STATE(3041), + [sym_long_expression] = STATE(3041), + [sym_string_literal_expr] = STATE(3038), + [sym_config_expr] = STATE(3038), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3038), + [sym_sequence_operation] = STATE(3041), + [sym_in_operation] = STATE(3046), + [sym_not_in_operation] = STATE(3046), + [sym_comparison_operator] = STATE(3041), + [sym_select_suffix] = STATE(3038), + [sym_attribute] = STATE(3038), + [sym_optional_attribute] = STATE(3038), + [sym_optional_attribute_declaration] = STATE(3038), + [sym_optional_item] = STATE(3038), + [sym_null_coalesce] = STATE(3038), + [sym_subscript] = STATE(3045), + [sym_call] = STATE(2850), + [sym_list] = STATE(3037), + [sym_dictionary] = STATE(3037), + [sym_list_comprehension] = STATE(3037), + [sym_dictionary_comprehension] = STATE(3037), + [sym_conditional_expression] = STATE(3041), + [sym_string] = STATE(3038), + [sym_identifier] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(748), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_lambda] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_in] = ACTIONS(129), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(750), + [anon_sym_not] = ACTIONS(604), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(610), + [sym_float] = ACTIONS(612), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_none] = ACTIONS(610), + [sym_undefined] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(133), + [sym_string_start] = ACTIONS(614), + }, + [119] = { + [sym_schema_expr] = STATE(3228), + [sym_schema_instantiation] = STATE(3228), + [sym_lambda_expr] = STATE(3228), + [sym_quant_expr] = STATE(3228), + [sym_quant_op] = STATE(6041), + [sym_dotted_name] = STATE(5174), + [sym_expression] = STATE(2978), + [sym_as_expression] = STATE(3246), + [sym_selector_expression] = STATE(3034), + [sym_primary_expression] = STATE(2856), + [sym_paren_expression] = STATE(3228), + [sym_braces_expression] = STATE(3228), + [sym_not_operator] = STATE(3246), + [sym_boolean_operator] = STATE(3246), + [sym_long_expression] = STATE(3246), + [sym_string_literal_expr] = STATE(3228), + [sym_config_expr] = STATE(3228), + [sym_binary_operator] = STATE(3232), + [sym_unary_operator] = STATE(3228), + [sym_sequence_operation] = STATE(3246), + [sym_in_operation] = STATE(3242), + [sym_not_in_operation] = STATE(3242), + [sym_comparison_operator] = STATE(3246), + [sym_select_suffix] = STATE(3228), + [sym_attribute] = STATE(3228), + [sym_optional_attribute] = STATE(3228), + [sym_optional_attribute_declaration] = STATE(3228), + [sym_optional_item] = STATE(3228), + [sym_null_coalesce] = STATE(3228), + [sym_subscript] = STATE(3232), + [sym_call] = STATE(3115), + [sym_list] = STATE(3208), + [sym_dictionary] = STATE(3208), + [sym_list_comprehension] = STATE(3208), + [sym_dictionary_comprehension] = STATE(3208), + [sym_conditional_expression] = STATE(3246), + [sym_string] = STATE(3228), + [sym_identifier] = ACTIONS(708), + [anon_sym_DOT] = ACTIONS(752), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_lambda] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_in] = ACTIONS(129), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(754), + [anon_sym_not] = ACTIONS(720), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(728), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), + [sym_undefined] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(730), + }, + [120] = { + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_dotted_name] = STATE(5139), + [sym_expression] = STATE(3872), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4250), + [sym_primary_expression] = STATE(3936), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4268), + [sym_dictionary] = STATE(4268), + [sym_list_comprehension] = STATE(4268), + [sym_dictionary_comprehension] = STATE(4268), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(584), [anon_sym_DOT] = ACTIONS(13), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_in] = ACTIONS(191), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), + [anon_sym_not] = ACTIONS(590), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_DQUOTE] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(51), [sym_float] = ACTIONS(53), [sym_true] = ACTIONS(51), @@ -28548,177 +29566,179 @@ 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(189), + [sym__newline] = ACTIONS(133), [sym_string_start] = ACTIONS(55), }, - [114] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5095), - [sym_expression] = STATE(2998), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(3224), - [sym_primary_expression] = STATE(3010), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(2463), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(3233), - [sym_dictionary] = STATE(3233), - [sym_list_comprehension] = STATE(3233), - [sym_dictionary_comprehension] = STATE(3233), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [sym_identifier] = ACTIONS(702), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_in] = ACTIONS(191), + [121] = { + [sym_schema_expr] = STATE(4338), + [sym_schema_instantiation] = STATE(4338), + [sym_lambda_expr] = STATE(4338), + [sym_quant_expr] = STATE(4338), + [sym_quant_op] = STATE(6173), + [sym_dotted_name] = STATE(5203), + [sym_expression] = STATE(3970), + [sym_as_expression] = STATE(4327), + [sym_selector_expression] = STATE(4252), + [sym_primary_expression] = STATE(3919), + [sym_paren_expression] = STATE(4338), + [sym_braces_expression] = STATE(4338), + [sym_not_operator] = STATE(4327), + [sym_boolean_operator] = STATE(4327), + [sym_long_expression] = STATE(4327), + [sym_string_literal_expr] = STATE(4338), + [sym_config_expr] = STATE(4338), + [sym_binary_operator] = STATE(4339), + [sym_unary_operator] = STATE(4338), + [sym_sequence_operation] = STATE(4327), + [sym_in_operation] = STATE(4328), + [sym_not_in_operation] = STATE(4328), + [sym_comparison_operator] = STATE(4327), + [sym_select_suffix] = STATE(4338), + [sym_attribute] = STATE(4338), + [sym_optional_attribute] = STATE(4338), + [sym_optional_attribute_declaration] = STATE(4338), + [sym_optional_item] = STATE(4338), + [sym_null_coalesce] = STATE(4338), + [sym_subscript] = STATE(4339), + [sym_call] = STATE(3948), + [sym_list] = STATE(4326), + [sym_dictionary] = STATE(4326), + [sym_list_comprehension] = STATE(4326), + [sym_dictionary_comprehension] = STATE(4326), + [sym_conditional_expression] = STATE(4327), + [sym_string] = STATE(4338), + [sym_identifier] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_lambda] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(444), - [anon_sym_not] = ACTIONS(706), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(129), + [anon_sym_QMARK_DOT] = ACTIONS(756), + [anon_sym_not] = ACTIONS(652), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(129), + [anon_sym_SLASH_SLASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_CARET] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(129), + [anon_sym_EQ_EQ] = ACTIONS(129), + [anon_sym_BANG_EQ] = ACTIONS(129), + [anon_sym_GT_EQ] = ACTIONS(129), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(129), + [sym_integer] = ACTIONS(658), + [sym_float] = ACTIONS(658), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_none] = ACTIONS(658), + [sym_undefined] = ACTIONS(658), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(660), }, - [115] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5069), - [sym_expression] = STATE(3731), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(4027), - [sym_primary_expression] = STATE(3729), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(4111), - [sym_list] = STATE(4142), - [sym_dictionary] = STATE(4142), - [sym_list_comprehension] = STATE(4142), - [sym_dictionary_comprehension] = STATE(4142), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), + [122] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5229), + [sym_expression] = STATE(2973), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(3054), + [sym_primary_expression] = STATE(3006), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2430), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(3220), + [sym_dictionary] = STATE(3220), + [sym_list_comprehension] = STATE(3220), + [sym_dictionary_comprehension] = STATE(3220), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [sym_identifier] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(486), [anon_sym_LBRACK] = ACTIONS(488), [anon_sym_lambda] = ACTIONS(490), - [anon_sym_DASH_GT] = ACTIONS(189), + [anon_sym_DASH_GT] = ACTIONS(133), [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_in] = ACTIONS(191), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(618), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(564), + [anon_sym_not] = ACTIONS(742), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(746), [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), [sym_integer] = ACTIONS(500), [sym_float] = ACTIONS(502), [sym_true] = ACTIONS(500), @@ -28729,565 +29749,589 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, - [116] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5026), - [sym_expression] = STATE(3940), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4242), - [sym_primary_expression] = STATE(3872), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_list] = STATE(4249), - [sym_dictionary] = STATE(4249), - [sym_list_comprehension] = STATE(4249), - [sym_dictionary_comprehension] = STATE(4249), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(710), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_in] = ACTIONS(191), + [123] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5102), + [sym_expression] = STATE(4225), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4321), + [sym_primary_expression] = STATE(4242), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_list] = STATE(4410), + [sym_dictionary] = STATE(4410), + [sym_list_comprehension] = STATE(4410), + [sym_dictionary_comprehension] = STATE(4410), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(722), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(688), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(698), }, - [117] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5041), - [sym_expression] = STATE(4360), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(4414), - [sym_primary_expression] = STATE(4283), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(4416), - [sym_dictionary] = STATE(4416), - [sym_list_comprehension] = STATE(4416), - [sym_dictionary_comprehension] = STATE(4416), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_in] = ACTIONS(191), + [124] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5244), + [sym_expression] = STATE(3162), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(3215), + [sym_primary_expression] = STATE(3196), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(2606), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(3289), + [sym_dictionary] = STATE(3289), + [sym_list_comprehension] = STATE(3289), + [sym_dictionary_comprehension] = STATE(3289), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [sym_identifier] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(748), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_PERCENT] = ACTIONS(189), - [anon_sym_SLASH_SLASH] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(189), - [anon_sym_CARET] = ACTIONS(189), - [anon_sym_LT_LT] = ACTIONS(189), - [anon_sym_GT_GT] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(750), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_LT_EQ] = ACTIONS(189), - [anon_sym_EQ_EQ] = ACTIONS(189), - [anon_sym_BANG_EQ] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(191), - [anon_sym_QMARK_LBRACK] = ACTIONS(189), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(508), + [anon_sym_not] = ACTIONS(704), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(446), }, - [118] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5089), - [sym_expression] = STATE(3337), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(2065), - [sym_primary_expression] = STATE(1365), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(1940), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2209), - [sym_dictionary] = STATE(2209), - [sym_list_comprehension] = STATE(2209), - [sym_dictionary_comprehension] = STATE(2209), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [aux_sym_selector_expression_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(756), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(758), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), + [125] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5234), + [sym_expression] = STATE(4390), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(4504), + [sym_primary_expression] = STATE(4451), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(2836), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(4511), + [sym_dictionary] = STATE(4511), + [sym_list_comprehension] = STATE(4511), + [sym_dictionary_comprehension] = STATE(4511), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(458), + [anon_sym_else] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_in] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(762), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(119), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(81), - [sym_undefined] = ACTIONS(81), + [anon_sym_STAR] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(766), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(61), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH_SLASH] = ACTIONS(57), + [anon_sym_PIPE] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_is] = ACTIONS(61), + [anon_sym_QMARK_LBRACK] = ACTIONS(57), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__dedent] = ACTIONS(63), - [sym_string_start] = ACTIONS(85), + [sym_string_start] = ACTIONS(480), }, - [119] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5053), - [sym_expression] = STATE(3320), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1916), - [sym_primary_expression] = STATE(1426), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(2069), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [aux_sym_selector_expression_repeat1] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(764), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_lambda] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), + [126] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5164), + [sym_expression] = STATE(3851), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3975), + [sym_primary_expression] = STATE(3901), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(4216), + [sym_list] = STATE(4307), + [sym_dictionary] = STATE(4307), + [sym_list_comprehension] = STATE(4307), + [sym_dictionary_comprehension] = STATE(4307), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_DASH_GT] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(770), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [sym_integer] = ACTIONS(107), - [sym_float] = ACTIONS(109), - [sym_true] = ACTIONS(107), - [sym_false] = ACTIONS(107), - [sym_none] = ACTIONS(107), - [sym_undefined] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(668), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(111), + [sym_string_start] = ACTIONS(480), }, - [120] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5130), - [sym_expression] = STATE(3269), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1655), - [sym_primary_expression] = STATE(780), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(1975), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(1980), - [sym_dictionary] = STATE(1980), - [sym_list_comprehension] = STATE(1980), - [sym_dictionary_comprehension] = STATE(1980), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [aux_sym_selector_expression_repeat1] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(772), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_lambda] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), + [127] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5234), + [sym_expression] = STATE(4389), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(4504), + [sym_primary_expression] = STATE(4451), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(4511), + [sym_dictionary] = STATE(4511), + [sym_list_comprehension] = STATE(4511), + [sym_dictionary_comprehension] = STATE(4511), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_in] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(776), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(105), - [sym_integer] = ACTIONS(107), - [sym_float] = ACTIONS(109), - [sym_true] = ACTIONS(107), - [sym_false] = ACTIONS(107), - [sym_none] = ACTIONS(107), - [sym_undefined] = ACTIONS(107), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(766), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(133), + [anon_sym_SLASH_SLASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_AMP] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym_LT_LT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(133), + [anon_sym_EQ_EQ] = ACTIONS(133), + [anon_sym_BANG_EQ] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_is] = ACTIONS(129), + [anon_sym_QMARK_LBRACK] = ACTIONS(133), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(111), + [sym_string_start] = ACTIONS(480), }, - [121] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5089), - [sym_expression] = STATE(3337), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(2065), - [sym_primary_expression] = STATE(1365), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(1940), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2209), - [sym_dictionary] = STATE(2209), - [sym_list_comprehension] = STATE(2209), - [sym_dictionary_comprehension] = STATE(2209), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [aux_sym_selector_expression_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(756), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(758), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), + [128] = { + [sym__simple_statements] = STATE(3447), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5336), + [sym_assignment] = STATE(6301), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(2682), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [aux_sym_selector_expression_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_as] = ACTIONS(770), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(762), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(119), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(81), - [sym_undefined] = ACTIONS(81), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(397), + [anon_sym_not] = ACTIONS(45), + [anon_sym_and] = ACTIONS(776), + [anon_sym_or] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__dedent] = ACTIONS(63), - [sym_string_start] = ACTIONS(85), + [sym__newline] = ACTIONS(782), + [sym__indent] = ACTIONS(784), + [sym_string_start] = ACTIONS(55), }, - [122] = { - [sym__simple_statements] = STATE(3402), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(2739), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [aux_sym_selector_expression_repeat1] = STATE(2288), + [129] = { + [sym__simple_statements] = STATE(3417), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5336), + [sym_assignment] = STATE(6487), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(2682), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [aux_sym_selector_expression_repeat1] = STATE(2313), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(438), - [anon_sym_as] = ACTIONS(778), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_as] = ACTIONS(770), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(780), - [anon_sym_COLON] = ACTIONS(782), + [anon_sym_if] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -29295,11 +30339,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), - [anon_sym_QMARK_DOT] = ACTIONS(440), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(397), [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(784), - [anon_sym_or] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_and] = ACTIONS(776), + [anon_sym_or] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), [anon_sym_DQUOTE] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(47), [anon_sym_TILDE] = ACTIONS(47), @@ -29311,139 +30356,140 @@ 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(790), - [sym__indent] = ACTIONS(792), + [sym__newline] = ACTIONS(788), + [sym__indent] = ACTIONS(790), [sym_string_start] = ACTIONS(55), }, - [123] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5053), - [sym_expression] = STATE(3320), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1916), - [sym_primary_expression] = STATE(1426), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(2069), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [aux_sym_selector_expression_repeat1] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(764), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_lambda] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), + [130] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5221), + [sym_expression] = STATE(3355), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(2224), + [sym_primary_expression] = STATE(1905), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1412), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2264), + [sym_dictionary] = STATE(2264), + [sym_list_comprehension] = STATE(2264), + [sym_dictionary_comprehension] = STATE(2264), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [aux_sym_selector_expression_repeat1] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(792), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(794), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_else] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(69), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(770), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(103), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(798), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(127), [anon_sym_TILDE] = ACTIONS(127), - [sym_integer] = ACTIONS(107), - [sym_float] = ACTIONS(109), - [sym_true] = ACTIONS(107), - [sym_false] = ACTIONS(107), - [sym_none] = ACTIONS(107), - [sym_undefined] = ACTIONS(107), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(81), + [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(111), + [sym__newline] = ACTIONS(57), + [sym_string_start] = ACTIONS(85), }, - [124] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5082), - [sym_expression] = STATE(3274), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(1614), - [sym_primary_expression] = STATE(779), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(2087), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2073), - [sym_dictionary] = STATE(2073), - [sym_list_comprehension] = STATE(2073), - [sym_dictionary_comprehension] = STATE(2073), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [aux_sym_selector_expression_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(794), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(758), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [131] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5221), + [sym_expression] = STATE(3355), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(2224), + [sym_primary_expression] = STATE(1905), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1412), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2264), + [sym_dictionary] = STATE(2264), + [sym_list_comprehension] = STATE(2264), + [sym_dictionary_comprehension] = STATE(2264), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [aux_sym_selector_expression_repeat1] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(792), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(794), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), [anon_sym_else] = ACTIONS(796), [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(69), @@ -29453,20 +30499,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(798), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_true] = ACTIONS(81), @@ -29475,464 +30521,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__dedent] = ACTIONS(63), + [sym__newline] = ACTIONS(57), [sym_string_start] = ACTIONS(85), }, - [125] = { - [sym__simple_statements] = STATE(3414), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(2739), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [aux_sym_selector_expression_repeat1] = STATE(2288), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(438), - [anon_sym_as] = ACTIONS(778), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(780), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_lambda] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [132] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5232), + [sym_expression] = STATE(3373), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(2123), + [sym_primary_expression] = STATE(1899), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1277), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2261), + [sym_dictionary] = STATE(2261), + [sym_list_comprehension] = STATE(2261), + [sym_dictionary_comprehension] = STATE(2261), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [aux_sym_selector_expression_repeat1] = STATE(586), + [sym_identifier] = ACTIONS(800), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(802), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_else] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_lambda] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(31), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(784), - [anon_sym_or] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(806), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(802), - [sym__indent] = ACTIONS(804), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(57), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(111), }, - [126] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5083), - [sym_expression] = STATE(3313), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2035), - [sym_primary_expression] = STATE(1464), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2119), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2210), - [sym_dictionary] = STATE(2210), - [sym_list_comprehension] = STATE(2210), - [sym_dictionary_comprehension] = STATE(2210), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [aux_sym_selector_expression_repeat1] = STATE(1648), - [sym_identifier] = ACTIONS(806), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [133] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5232), + [sym_expression] = STATE(3373), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(2123), + [sym_primary_expression] = STATE(1899), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1277), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2261), + [sym_dictionary] = STATE(2261), + [sym_list_comprehension] = STATE(2261), + [sym_dictionary_comprehension] = STATE(2261), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [aux_sym_selector_expression_repeat1] = STATE(586), + [sym_identifier] = ACTIONS(800), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(802), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_else] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_lambda] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(806), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(105), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_undefined] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(111), + }, + [134] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5217), + [sym_expression] = STATE(3338), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(2056), + [sym_primary_expression] = STATE(958), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(2082), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2189), + [sym_dictionary] = STATE(2189), + [sym_list_comprehension] = STATE(2189), + [sym_dictionary_comprehension] = STATE(2189), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [aux_sym_selector_expression_repeat1] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(808), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(794), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), [anon_sym_else] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(69), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(812), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(173), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(81), + [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(63), - [sym_string_start] = ACTIONS(179), + [sym__newline] = ACTIONS(57), + [sym_string_start] = ACTIONS(85), }, - [127] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5035), - [sym_expression] = STATE(3296), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(1911), - [sym_primary_expression] = STATE(1411), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2105), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2165), - [sym_dictionary] = STATE(2165), - [sym_list_comprehension] = STATE(2165), - [sym_dictionary_comprehension] = STATE(2165), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [aux_sym_selector_expression_repeat1] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(63), + [135] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5179), + [sym_expression] = STATE(3330), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(1752), + [sym_primary_expression] = STATE(847), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(2101), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2150), + [sym_dictionary] = STATE(2150), + [sym_list_comprehension] = STATE(2150), + [sym_dictionary_comprehension] = STATE(2150), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [aux_sym_selector_expression_repeat1] = STATE(586), [sym_identifier] = ACTIONS(814), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), - [anon_sym_else] = ACTIONS(818), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(802), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_else] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_lambda] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(820), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(187), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(818), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(119), + [sym_integer] = ACTIONS(107), + [sym_float] = ACTIONS(109), + [sym_true] = ACTIONS(107), + [sym_false] = ACTIONS(107), + [sym_none] = ACTIONS(107), + [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym__newline] = ACTIONS(57), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(111), }, - [128] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5144), - [sym_expression] = STATE(3345), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(2164), - [sym_primary_expression] = STATE(2033), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2107), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2239), - [sym_dictionary] = STATE(2239), - [sym_list_comprehension] = STATE(2239), - [sym_dictionary_comprehension] = STATE(2239), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [aux_sym_selector_expression_repeat1] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(63), - [sym_identifier] = ACTIONS(822), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [136] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5087), + [sym_expression] = STATE(3380), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2254), + [sym_primary_expression] = STATE(2024), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2141), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2267), + [sym_dictionary] = STATE(2267), + [sym_list_comprehension] = STATE(2267), + [sym_dictionary_comprehension] = STATE(2267), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [aux_sym_selector_expression_repeat1] = STATE(951), + [ts_builtin_sym_end] = ACTIONS(57), + [sym_identifier] = ACTIONS(820), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), [anon_sym_else] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(826), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(195), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym_string_start] = ACTIONS(161), }, - [129] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5092), - [sym_expression] = STATE(3362), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2208), - [sym_primary_expression] = STATE(1943), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2104), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2237), - [sym_dictionary] = STATE(2237), - [sym_list_comprehension] = STATE(2237), - [sym_dictionary_comprehension] = STATE(2237), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [aux_sym_selector_expression_repeat1] = STATE(1648), + [137] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5190), + [sym_expression] = STATE(3401), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2259), + [sym_primary_expression] = STATE(2247), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2159), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2277), + [sym_dictionary] = STATE(2277), + [sym_list_comprehension] = STATE(2277), + [sym_dictionary_comprehension] = STATE(2277), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [aux_sym_selector_expression_repeat1] = STATE(951), + [ts_builtin_sym_end] = ACTIONS(57), [sym_identifier] = ACTIONS(828), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_rule] = ACTIONS(59), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), [anon_sym_else] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_schema] = ACTIONS(59), - [anon_sym_mixin] = ACTIONS(59), - [anon_sym_protocol] = ACTIONS(59), - [anon_sym_check] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(832), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(155), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(63), - [sym_string_start] = ACTIONS(179), + [sym_string_start] = ACTIONS(161), }, - [130] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5130), - [sym_expression] = STATE(3273), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1655), - [sym_primary_expression] = STATE(780), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(1921), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(1980), - [sym_dictionary] = STATE(1980), - [sym_list_comprehension] = STATE(1980), - [sym_dictionary_comprehension] = STATE(1980), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(772), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(193), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), + [138] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5217), + [sym_expression] = STATE(3335), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(2056), + [sym_primary_expression] = STATE(958), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1335), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2189), + [sym_dictionary] = STATE(2189), + [sym_list_comprehension] = STATE(2189), + [sym_dictionary_comprehension] = STATE(2189), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(808), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(69), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_not] = ACTIONS(812), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_none] = ACTIONS(81), + [sym_undefined] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(133), + [sym_string_start] = ACTIONS(85), + }, + [139] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5179), + [sym_expression] = STATE(3317), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(1752), + [sym_primary_expression] = STATE(847), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2150), + [sym_dictionary] = STATE(2150), + [sym_list_comprehension] = STATE(2150), + [sym_dictionary_comprehension] = STATE(2150), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [sym_identifier] = ACTIONS(814), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(131), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(93), [anon_sym_LBRACK] = ACTIONS(95), [anon_sym_lambda] = ACTIONS(97), @@ -29941,20 +31150,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(195), - [anon_sym_not] = ACTIONS(776), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(105), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(135), + [anon_sym_not] = ACTIONS(818), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(119), [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(119), + [anon_sym_TILDE] = ACTIONS(119), [sym_integer] = ACTIONS(107), [sym_float] = ACTIONS(109), [sym_true] = ACTIONS(107), @@ -29963,297 +31172,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), + [sym__newline] = ACTIONS(133), + [sym__dedent] = ACTIONS(133), [sym_string_start] = ACTIONS(111), }, - [131] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5082), - [sym_expression] = STATE(3271), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(1614), - [sym_primary_expression] = STATE(779), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(2057), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2073), - [sym_dictionary] = STATE(2073), - [sym_list_comprehension] = STATE(2073), - [sym_dictionary_comprehension] = STATE(2073), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [sym_identifier] = ACTIONS(794), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(197), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(69), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), + [140] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5241), + [sym_expression] = STATE(3356), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2137), + [sym_primary_expression] = STATE(1962), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2177), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2272), + [sym_dictionary] = STATE(2272), + [sym_list_comprehension] = STATE(2272), + [sym_dictionary_comprehension] = STATE(2272), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [aux_sym_selector_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(834), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_else] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(199), - [anon_sym_not] = ACTIONS(798), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_none] = ACTIONS(81), - [sym_undefined] = ACTIONS(81), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(840), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(181), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__dedent] = ACTIONS(189), - [sym_string_start] = ACTIONS(85), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(187), }, - [132] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5083), - [sym_expression] = STATE(3324), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2035), - [sym_primary_expression] = STATE(1464), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2233), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2210), - [sym_dictionary] = STATE(2210), - [sym_list_comprehension] = STATE(2210), - [sym_dictionary_comprehension] = STATE(2210), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [sym_identifier] = ACTIONS(806), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), + [141] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5185), + [sym_expression] = STATE(3392), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2270), + [sym_primary_expression] = STATE(2225), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2138), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2276), + [sym_dictionary] = STATE(2276), + [sym_list_comprehension] = STATE(2276), + [sym_dictionary_comprehension] = STATE(2276), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [aux_sym_selector_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(842), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_rule] = ACTIONS(61), + [anon_sym_else] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_not] = ACTIONS(812), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_TILDE] = ACTIONS(173), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), + [anon_sym_type] = ACTIONS(61), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_protocol] = ACTIONS(61), + [anon_sym_check] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(846), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(189), - [sym_string_start] = ACTIONS(179), + [sym__dedent] = ACTIONS(57), + [sym_string_start] = ACTIONS(187), }, - [133] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5035), - [sym_expression] = STATE(3315), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(1911), - [sym_primary_expression] = STATE(1411), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2162), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2165), - [sym_dictionary] = STATE(2165), - [sym_list_comprehension] = STATE(2165), - [sym_dictionary_comprehension] = STATE(2165), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(814), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), + [142] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5241), + [sym_expression] = STATE(3354), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2137), + [sym_primary_expression] = STATE(1962), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2129), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2272), + [sym_dictionary] = STATE(2272), + [sym_list_comprehension] = STATE(2272), + [sym_dictionary_comprehension] = STATE(2272), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [sym_identifier] = ACTIONS(834), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(229), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(215), - [anon_sym_not] = ACTIONS(820), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_TILDE] = ACTIONS(187), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(231), + [anon_sym_not] = ACTIONS(840), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(181), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(187), }, - [134] = { - [sym_schema_expr] = STATE(1921), - [sym_schema_instantiation] = STATE(1921), - [sym_lambda_expr] = STATE(1921), - [sym_quant_expr] = STATE(1921), - [sym_quant_op] = STATE(5982), - [sym_dotted_name] = STATE(5053), - [sym_expression] = STATE(3314), - [sym_as_expression] = STATE(1922), - [sym_selector_expression] = STATE(1916), - [sym_primary_expression] = STATE(1426), - [sym_paren_expression] = STATE(1921), - [sym_braces_expression] = STATE(1921), - [sym_not_operator] = STATE(1922), - [sym_boolean_operator] = STATE(1922), - [sym_long_expression] = STATE(1922), - [sym_string_literal_expr] = STATE(1921), - [sym_config_expr] = STATE(1921), - [sym_binary_operator] = STATE(1957), - [sym_unary_operator] = STATE(1921), - [sym_sequence_operation] = STATE(1922), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1922), - [sym_select_suffix] = STATE(1921), - [sym_attribute] = STATE(1921), - [sym_optional_attribute] = STATE(1921), - [sym_optional_attribute_declaration] = STATE(1921), - [sym_optional_item] = STATE(1921), - [sym_null_coalesce] = STATE(1921), - [sym_subscript] = STATE(1957), - [sym_call] = STATE(1659), - [sym_list] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_conditional_expression] = STATE(1922), - [sym_string] = STATE(1921), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(764), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(193), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), + [143] = { + [sym_schema_expr] = STATE(1238), + [sym_schema_instantiation] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(5966), + [sym_dotted_name] = STATE(5232), + [sym_expression] = STATE(3362), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(2123), + [sym_primary_expression] = STATE(1899), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(2001), + [sym_boolean_operator] = STATE(2001), + [sym_long_expression] = STATE(2001), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1241), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(2001), + [sym_in_operation] = STATE(1992), + [sym_not_in_operation] = STATE(1992), + [sym_comparison_operator] = STATE(2001), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_attribute_declaration] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1241), + [sym_call] = STATE(879), + [sym_list] = STATE(2261), + [sym_dictionary] = STATE(2261), + [sym_list_comprehension] = STATE(2261), + [sym_dictionary_comprehension] = STATE(2261), + [sym_conditional_expression] = STATE(2001), + [sym_string] = STATE(1238), + [sym_identifier] = ACTIONS(800), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(131), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(93), [anon_sym_LBRACK] = ACTIONS(95), [anon_sym_lambda] = ACTIONS(97), @@ -30262,20 +31472,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(195), - [anon_sym_not] = ACTIONS(770), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(135), + [anon_sym_not] = ACTIONS(806), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(105), [anon_sym_DQUOTE] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(105), [sym_integer] = ACTIONS(107), [sym_float] = ACTIONS(109), [sym_true] = ACTIONS(107), @@ -30284,55 +31494,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), + [sym__newline] = ACTIONS(133), + [sym__dedent] = ACTIONS(133), [sym_string_start] = ACTIONS(111), }, - [135] = { - [sym_schema_expr] = STATE(2057), - [sym_schema_instantiation] = STATE(2057), - [sym_lambda_expr] = STATE(2057), - [sym_quant_expr] = STATE(2057), - [sym_quant_op] = STATE(5858), - [sym_dotted_name] = STATE(5089), - [sym_expression] = STATE(3331), - [sym_as_expression] = STATE(2062), - [sym_selector_expression] = STATE(2065), - [sym_primary_expression] = STATE(1365), - [sym_paren_expression] = STATE(2057), - [sym_braces_expression] = STATE(2057), - [sym_not_operator] = STATE(2062), - [sym_boolean_operator] = STATE(2062), - [sym_long_expression] = STATE(2062), - [sym_string_literal_expr] = STATE(2057), - [sym_config_expr] = STATE(2057), - [sym_binary_operator] = STATE(2066), - [sym_unary_operator] = STATE(2057), - [sym_sequence_operation] = STATE(2062), - [sym_in_operation] = STATE(2067), - [sym_not_in_operation] = STATE(2067), - [sym_comparison_operator] = STATE(2062), - [sym_select_suffix] = STATE(2057), - [sym_attribute] = STATE(2057), - [sym_optional_attribute] = STATE(2057), - [sym_optional_attribute_declaration] = STATE(2057), - [sym_optional_item] = STATE(2057), - [sym_null_coalesce] = STATE(2057), - [sym_subscript] = STATE(2066), - [sym_call] = STATE(1533), - [sym_list] = STATE(2209), - [sym_dictionary] = STATE(2209), - [sym_list_comprehension] = STATE(2209), - [sym_dictionary_comprehension] = STATE(2209), - [sym_conditional_expression] = STATE(2062), - [sym_string] = STATE(2057), - [sym_identifier] = ACTIONS(756), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(197), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), + [144] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5087), + [sym_expression] = STATE(3374), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2254), + [sym_primary_expression] = STATE(2024), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2235), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2267), + [sym_dictionary] = STATE(2267), + [sym_list_comprehension] = STATE(2267), + [sym_dictionary_comprehension] = STATE(2267), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(820), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(227), + [anon_sym_not] = ACTIONS(826), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_TILDE] = ACTIONS(195), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(161), + }, + [145] = { + [sym_schema_expr] = STATE(1335), + [sym_schema_instantiation] = STATE(1335), + [sym_lambda_expr] = STATE(1335), + [sym_quant_expr] = STATE(1335), + [sym_quant_op] = STATE(6308), + [sym_dotted_name] = STATE(5221), + [sym_expression] = STATE(3351), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(2224), + [sym_primary_expression] = STATE(1905), + [sym_paren_expression] = STATE(1335), + [sym_braces_expression] = STATE(1335), + [sym_not_operator] = STATE(1765), + [sym_boolean_operator] = STATE(1765), + [sym_long_expression] = STATE(1765), + [sym_string_literal_expr] = STATE(1335), + [sym_config_expr] = STATE(1335), + [sym_binary_operator] = STATE(1340), + [sym_unary_operator] = STATE(1335), + [sym_sequence_operation] = STATE(1765), + [sym_in_operation] = STATE(1769), + [sym_not_in_operation] = STATE(1769), + [sym_comparison_operator] = STATE(1765), + [sym_select_suffix] = STATE(1335), + [sym_attribute] = STATE(1335), + [sym_optional_attribute] = STATE(1335), + [sym_optional_attribute_declaration] = STATE(1335), + [sym_optional_item] = STATE(1335), + [sym_null_coalesce] = STATE(1335), + [sym_subscript] = STATE(1340), + [sym_call] = STATE(860), + [sym_list] = STATE(2264), + [sym_dictionary] = STATE(2264), + [sym_list_comprehension] = STATE(2264), + [sym_dictionary_comprehension] = STATE(2264), + [sym_conditional_expression] = STATE(1765), + [sym_string] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(792), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(209), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(69), [anon_sym_lambda] = ACTIONS(71), @@ -30341,20 +31633,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(199), - [anon_sym_not] = ACTIONS(762), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_not] = ACTIONS(798), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(127), [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(119), - [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(127), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [sym_true] = ACTIONS(81), @@ -30363,448 +31655,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__dedent] = ACTIONS(189), + [sym__newline] = ACTIONS(133), [sym_string_start] = ACTIONS(85), }, - [136] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5092), - [sym_expression] = STATE(3361), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2208), - [sym_primary_expression] = STATE(1943), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2233), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2237), - [sym_dictionary] = STATE(2237), - [sym_list_comprehension] = STATE(2237), - [sym_dictionary_comprehension] = STATE(2237), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), + [146] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5190), + [sym_expression] = STATE(3402), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2259), + [sym_primary_expression] = STATE(2247), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2235), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2277), + [sym_dictionary] = STATE(2277), + [sym_list_comprehension] = STATE(2277), + [sym_dictionary_comprehension] = STATE(2277), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(828), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_lambda] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_lambda] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(227), [anon_sym_not] = ACTIONS(832), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [sym_integer] = ACTIONS(175), - [sym_float] = ACTIONS(177), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - [sym_none] = ACTIONS(175), - [sym_undefined] = ACTIONS(175), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(189), - [sym_string_start] = ACTIONS(179), - }, - [137] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5144), - [sym_expression] = STATE(3343), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(2164), - [sym_primary_expression] = STATE(2033), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2162), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2239), - [sym_dictionary] = STATE(2239), - [sym_list_comprehension] = STATE(2239), - [sym_dictionary_comprehension] = STATE(2239), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [ts_builtin_sym_end] = ACTIONS(189), - [sym_identifier] = ACTIONS(822), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(213), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_rule] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(137), - [anon_sym_lambda] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_schema] = ACTIONS(191), - [anon_sym_mixin] = ACTIONS(191), - [anon_sym_protocol] = ACTIONS(191), - [anon_sym_check] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(215), - [anon_sym_not] = ACTIONS(826), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_TILDE] = ACTIONS(147), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(149), - [sym_false] = ACTIONS(149), - [sym_none] = ACTIONS(149), - [sym_undefined] = ACTIONS(149), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(155), + [sym_integer] = ACTIONS(157), + [sym_float] = ACTIONS(159), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_none] = ACTIONS(157), + [sym_undefined] = ACTIONS(157), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(153), + [sym_string_start] = ACTIONS(161), }, - [138] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5145), - [sym_expression] = STATE(3483), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(2402), - [sym_primary_expression] = STATE(2252), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(2475), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(2453), - [sym_dictionary] = STATE(2453), - [sym_list_comprehension] = STATE(2453), - [sym_dictionary_comprehension] = STATE(2453), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(63), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(840), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_TILDE] = ACTIONS(428), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), - }, - [139] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(5000), - [sym_expression] = STATE(3759), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2505), - [sym_primary_expression] = STATE(2399), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2649), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2743), - [sym_dictionary] = STATE(2743), - [sym_list_comprehension] = STATE(2743), - [sym_dictionary_comprehension] = STATE(2743), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [aux_sym_selector_expression_repeat1] = STATE(2288), + [147] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5185), + [sym_expression] = STATE(3393), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2270), + [sym_primary_expression] = STATE(2225), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2129), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2276), + [sym_dictionary] = STATE(2276), + [sym_list_comprehension] = STATE(2276), + [sym_dictionary_comprehension] = STATE(2276), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), [sym_identifier] = ACTIONS(842), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(229), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_rule] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(173), + [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(848), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(380), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), + [anon_sym_type] = ACTIONS(129), + [anon_sym_schema] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_protocol] = ACTIONS(129), + [anon_sym_check] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(231), + [anon_sym_not] = ACTIONS(846), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(219), + [anon_sym_TILDE] = ACTIONS(219), + [sym_integer] = ACTIONS(183), + [sym_float] = ACTIONS(185), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_none] = ACTIONS(183), + [sym_undefined] = ACTIONS(183), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__indent] = ACTIONS(63), - [sym_string_start] = ACTIONS(275), + [sym__dedent] = ACTIONS(133), + [sym_string_start] = ACTIONS(187), }, - [140] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(5009), - [sym_expression] = STATE(3568), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2328), - [sym_primary_expression] = STATE(2313), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2490), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2543), - [sym_dictionary] = STATE(2543), - [sym_list_comprehension] = STATE(2543), - [sym_dictionary_comprehension] = STATE(2543), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [aux_sym_selector_expression_repeat1] = STATE(2288), - [sym_identifier] = ACTIONS(850), - [anon_sym_import] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_if] = ACTIONS(844), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(59), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(854), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(269), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym__indent] = ACTIONS(63), - [sym_string_start] = ACTIONS(275), - }, - [141] = { - [sym__simple_statements] = STATE(6177), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [148] = { + [sym__simple_statements] = STATE(4014), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5311), + [sym_assignment] = STATE(5923), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -30812,6 +31875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -30826,61 +31890,62 @@ 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(856), - [sym__indent] = ACTIONS(858), + [sym__newline] = ACTIONS(848), + [sym__indent] = ACTIONS(850), [sym_string_start] = ACTIONS(55), }, - [142] = { - [sym__simple_statements] = STATE(3856), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [149] = { + [sym__simple_statements] = STATE(5955), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -30888,6 +31953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -30902,137 +31968,62 @@ 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(860), - [sym__indent] = ACTIONS(862), + [sym__newline] = ACTIONS(852), + [sym__indent] = ACTIONS(854), [sym_string_start] = ACTIONS(55), }, - [143] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5144), - [sym_expression] = STATE(3347), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(2164), - [sym_primary_expression] = STATE(2033), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2162), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2239), - [sym_dictionary] = STATE(2239), - [sym_list_comprehension] = STATE(2239), - [sym_dictionary_comprehension] = STATE(2239), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [aux_sym_check_statement_repeat1] = STATE(143), - [ts_builtin_sym_end] = ACTIONS(864), - [sym_identifier] = ACTIONS(866), - [anon_sym_import] = ACTIONS(869), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_rule] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(877), - [anon_sym_lambda] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_all] = ACTIONS(886), - [anon_sym_any] = ACTIONS(886), - [anon_sym_filter] = ACTIONS(886), - [anon_sym_map] = ACTIONS(886), - [anon_sym_type] = ACTIONS(869), - [anon_sym_schema] = ACTIONS(869), - [anon_sym_mixin] = ACTIONS(869), - [anon_sym_protocol] = ACTIONS(869), - [anon_sym_check] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_QMARK_DOT] = ACTIONS(889), - [anon_sym_not] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(895), - [sym_integer] = ACTIONS(901), - [sym_float] = ACTIONS(904), - [sym_true] = ACTIONS(901), - [sym_false] = ACTIONS(901), - [sym_none] = ACTIONS(901), - [sym_undefined] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(907), - }, - [144] = { - [sym__simple_statements] = STATE(6171), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [150] = { + [sym__simple_statements] = STATE(4067), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5305), + [sym_assignment] = STATE(6460), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31040,6 +32031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31054,61 +32046,62 @@ 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(910), - [sym__indent] = ACTIONS(912), + [sym__newline] = ACTIONS(856), + [sym__indent] = ACTIONS(858), [sym_string_start] = ACTIONS(55), }, - [145] = { - [sym__simple_statements] = STATE(3416), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(17), + [151] = { + [sym__simple_statements] = STATE(4079), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5309), + [sym_assignment] = STATE(6450), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31116,6 +32109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31130,61 +32124,62 @@ 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(914), - [sym__indent] = ACTIONS(916), - [sym_string_start] = ACTIONS(275), + [sym__newline] = ACTIONS(860), + [sym__indent] = ACTIONS(862), + [sym_string_start] = ACTIONS(55), }, - [146] = { - [sym__simple_statements] = STATE(3890), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [152] = { + [sym__simple_statements] = STATE(6106), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31192,6 +32187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31206,61 +32202,62 @@ 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(918), - [sym__indent] = ACTIONS(920), + [sym__newline] = ACTIONS(864), + [sym__indent] = ACTIONS(866), [sym_string_start] = ACTIONS(55), }, - [147] = { - [sym__simple_statements] = STATE(6040), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [153] = { + [sym__simple_statements] = STATE(6324), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31268,6 +32265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31282,61 +32280,62 @@ 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(922), - [sym__indent] = ACTIONS(924), + [sym__newline] = ACTIONS(868), + [sym__indent] = ACTIONS(870), [sym_string_start] = ACTIONS(55), }, - [148] = { - [sym__simple_statements] = STATE(6148), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [154] = { + [sym__simple_statements] = STATE(3752), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5307), + [sym_assignment] = STATE(5936), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31344,6 +32343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31358,61 +32358,62 @@ 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(926), - [sym__indent] = ACTIONS(928), + [sym__newline] = ACTIONS(872), + [sym__indent] = ACTIONS(874), [sym_string_start] = ACTIONS(55), }, - [149] = { - [sym__simple_statements] = STATE(6124), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [155] = { + [sym__simple_statements] = STATE(6121), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31420,6 +32421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31434,137 +32436,62 @@ 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(930), - [sym__indent] = ACTIONS(932), + [sym__newline] = ACTIONS(876), + [sym__indent] = ACTIONS(878), [sym_string_start] = ACTIONS(55), }, - [150] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5092), - [sym_expression] = STATE(3351), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2208), - [sym_primary_expression] = STATE(1943), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2233), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2237), - [sym_dictionary] = STATE(2237), - [sym_list_comprehension] = STATE(2237), - [sym_dictionary_comprehension] = STATE(2237), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [aux_sym_check_statement_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(934), - [anon_sym_import] = ACTIONS(869), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_assert] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_rule] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_lambda] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_all] = ACTIONS(886), - [anon_sym_any] = ACTIONS(886), - [anon_sym_filter] = ACTIONS(886), - [anon_sym_map] = ACTIONS(886), - [anon_sym_type] = ACTIONS(869), - [anon_sym_schema] = ACTIONS(869), - [anon_sym_mixin] = ACTIONS(869), - [anon_sym_protocol] = ACTIONS(869), - [anon_sym_check] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_QMARK_DOT] = ACTIONS(952), - [anon_sym_not] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(958), - [sym_integer] = ACTIONS(964), - [sym_float] = ACTIONS(967), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_none] = ACTIONS(964), - [sym_undefined] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(864), - [sym_string_start] = ACTIONS(970), - }, - [151] = { - [sym__simple_statements] = STATE(6033), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [156] = { + [sym__simple_statements] = STATE(3477), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5290), + [sym_assignment] = STATE(6397), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(10), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31572,6 +32499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31586,61 +32514,62 @@ 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(973), - [sym__indent] = ACTIONS(975), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(880), + [sym__indent] = ACTIONS(882), + [sym_string_start] = ACTIONS(281), }, - [152] = { - [sym__simple_statements] = STATE(4102), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [157] = { + [sym__simple_statements] = STATE(4066), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5311), + [sym_assignment] = STATE(6409), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31648,6 +32577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31662,61 +32592,62 @@ 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(977), - [sym__indent] = ACTIONS(979), + [sym__newline] = ACTIONS(884), + [sym__indent] = ACTIONS(886), [sym_string_start] = ACTIONS(55), }, - [153] = { - [sym__simple_statements] = STATE(4067), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [158] = { + [sym__simple_statements] = STATE(4048), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5316), + [sym_assignment] = STATE(6427), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31724,6 +32655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31738,61 +32670,62 @@ 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(981), - [sym__indent] = ACTIONS(983), + [sym__newline] = ACTIONS(888), + [sym__indent] = ACTIONS(890), [sym_string_start] = ACTIONS(55), }, - [154] = { - [sym__simple_statements] = STATE(6275), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [159] = { + [sym__simple_statements] = STATE(6262), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31800,6 +32733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31814,61 +32748,62 @@ 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(985), - [sym__indent] = ACTIONS(987), + [sym__newline] = ACTIONS(892), + [sym__indent] = ACTIONS(894), [sym_string_start] = ACTIONS(55), }, - [155] = { - [sym__simple_statements] = STATE(4046), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [160] = { + [sym__simple_statements] = STATE(5976), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31876,6 +32811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31890,61 +32826,62 @@ 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(989), - [sym__indent] = ACTIONS(991), + [sym__newline] = ACTIONS(896), + [sym__indent] = ACTIONS(898), [sym_string_start] = ACTIONS(55), }, - [156] = { - [sym__simple_statements] = STATE(6262), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [161] = { + [sym__simple_statements] = STATE(3469), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5290), + [sym_assignment] = STATE(6208), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(13), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -31952,6 +32889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -31966,61 +32904,62 @@ 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(993), - [sym__indent] = ACTIONS(995), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(900), + [sym__indent] = ACTIONS(902), + [sym_string_start] = ACTIONS(281), }, - [157] = { - [sym__simple_statements] = STATE(5948), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [162] = { + [sym__simple_statements] = STATE(4064), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5295), + [sym_assignment] = STATE(6468), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32028,6 +32967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32042,61 +32982,62 @@ 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(997), - [sym__indent] = ACTIONS(999), + [sym__newline] = ACTIONS(904), + [sym__indent] = ACTIONS(906), [sym_string_start] = ACTIONS(55), }, - [158] = { - [sym__simple_statements] = STATE(3405), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(16), + [163] = { + [sym__simple_statements] = STATE(6053), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32104,6 +33045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32118,61 +33060,62 @@ 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(1001), - [sym__indent] = ACTIONS(1003), - [sym_string_start] = ACTIONS(275), + [sym__newline] = ACTIONS(908), + [sym__indent] = ACTIONS(910), + [sym_string_start] = ACTIONS(55), }, - [159] = { - [sym__simple_statements] = STATE(4072), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [164] = { + [sym__simple_statements] = STATE(6463), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32180,6 +33123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32194,61 +33138,62 @@ 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(1005), - [sym__indent] = ACTIONS(1007), + [sym__newline] = ACTIONS(912), + [sym__indent] = ACTIONS(914), [sym_string_start] = ACTIONS(55), }, - [160] = { - [sym__simple_statements] = STATE(4074), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [165] = { + [sym__simple_statements] = STATE(6241), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32256,6 +33201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32270,137 +33216,62 @@ 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(1009), - [sym__indent] = ACTIONS(1011), + [sym__newline] = ACTIONS(916), + [sym__indent] = ACTIONS(918), [sym_string_start] = ACTIONS(55), }, - [161] = { - [sym_schema_expr] = STATE(2233), - [sym_schema_instantiation] = STATE(2233), - [sym_lambda_expr] = STATE(2233), - [sym_quant_expr] = STATE(2233), - [sym_quant_op] = STATE(5909), - [sym_dotted_name] = STATE(5092), - [sym_expression] = STATE(3351), - [sym_as_expression] = STATE(2227), - [sym_selector_expression] = STATE(2208), - [sym_primary_expression] = STATE(1943), - [sym_paren_expression] = STATE(2233), - [sym_braces_expression] = STATE(2233), - [sym_not_operator] = STATE(2227), - [sym_boolean_operator] = STATE(2227), - [sym_long_expression] = STATE(2227), - [sym_string_literal_expr] = STATE(2233), - [sym_config_expr] = STATE(2233), - [sym_binary_operator] = STATE(2150), - [sym_unary_operator] = STATE(2233), - [sym_sequence_operation] = STATE(2227), - [sym_in_operation] = STATE(2149), - [sym_not_in_operation] = STATE(2149), - [sym_comparison_operator] = STATE(2227), - [sym_select_suffix] = STATE(2233), - [sym_attribute] = STATE(2233), - [sym_optional_attribute] = STATE(2233), - [sym_optional_attribute_declaration] = STATE(2233), - [sym_optional_item] = STATE(2233), - [sym_null_coalesce] = STATE(2233), - [sym_subscript] = STATE(2150), - [sym_call] = STATE(2072), - [sym_list] = STATE(2237), - [sym_dictionary] = STATE(2237), - [sym_list_comprehension] = STATE(2237), - [sym_dictionary_comprehension] = STATE(2237), - [sym_conditional_expression] = STATE(2227), - [sym_string] = STATE(2233), - [aux_sym_check_statement_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(1013), - [anon_sym_import] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1013), - [anon_sym_assert] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_rule] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_lambda] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_all] = ACTIONS(1013), - [anon_sym_any] = ACTIONS(1013), - [anon_sym_filter] = ACTIONS(1013), - [anon_sym_map] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_schema] = ACTIONS(1013), - [anon_sym_mixin] = ACTIONS(1013), - [anon_sym_protocol] = ACTIONS(1013), - [anon_sym_check] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym_QMARK_DOT] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1015), - [sym_integer] = ACTIONS(1013), - [sym_float] = ACTIONS(1015), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_none] = ACTIONS(1013), - [sym_undefined] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(1015), - [sym_string_start] = ACTIONS(1015), - }, - [162] = { - [sym__simple_statements] = STATE(4083), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [166] = { + [sym__simple_statements] = STATE(3990), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5296), + [sym_assignment] = STATE(6198), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32408,6 +33279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32422,61 +33294,62 @@ 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(1017), - [sym__indent] = ACTIONS(1019), + [sym__newline] = ACTIONS(920), + [sym__indent] = ACTIONS(922), [sym_string_start] = ACTIONS(55), }, - [163] = { - [sym__simple_statements] = STATE(3996), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [167] = { + [sym__simple_statements] = STATE(6311), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32484,6 +33357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32498,61 +33372,62 @@ 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(1021), - [sym__indent] = ACTIONS(1023), + [sym__newline] = ACTIONS(924), + [sym__indent] = ACTIONS(926), [sym_string_start] = ACTIONS(55), }, - [164] = { - [sym__simple_statements] = STATE(5925), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [168] = { + [sym__simple_statements] = STATE(4058), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5289), + [sym_assignment] = STATE(6469), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32560,6 +33435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32574,61 +33450,62 @@ 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(1025), - [sym__indent] = ACTIONS(1027), + [sym__newline] = ACTIONS(928), + [sym__indent] = ACTIONS(930), [sym_string_start] = ACTIONS(55), }, - [165] = { - [sym__simple_statements] = STATE(6199), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [169] = { + [sym__simple_statements] = STATE(6182), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32636,6 +33513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32650,61 +33528,62 @@ 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(1029), - [sym__indent] = ACTIONS(1031), + [sym__newline] = ACTIONS(932), + [sym__indent] = ACTIONS(934), [sym_string_start] = ACTIONS(55), }, - [166] = { - [sym__simple_statements] = STATE(3928), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [170] = { + [sym__simple_statements] = STATE(6133), + [sym_import_statement] = STATE(6273), + [sym_assert_statement] = STATE(6273), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6273), + [sym_mixin_statement] = STATE(6273), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5093), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5305), + [sym_assignment] = STATE(6280), + [sym_augmented_assignment] = STATE(6273), + [sym_unification] = STATE(6273), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32712,6 +33591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32726,61 +33606,62 @@ 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(1033), - [sym__indent] = ACTIONS(1035), + [sym__newline] = ACTIONS(936), + [sym__indent] = ACTIONS(938), [sym_string_start] = ACTIONS(55), }, - [167] = { - [sym__simple_statements] = STATE(6249), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [171] = { + [sym__simple_statements] = STATE(6200), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32788,6 +33669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32802,137 +33684,62 @@ 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(1037), - [sym__indent] = ACTIONS(1039), + [sym__newline] = ACTIONS(940), + [sym__indent] = ACTIONS(942), [sym_string_start] = ACTIONS(55), }, - [168] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5145), - [sym_expression] = STATE(3484), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(2402), - [sym_primary_expression] = STATE(2252), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(2463), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(2453), - [sym_dictionary] = STATE(2453), - [sym_list_comprehension] = STATE(2453), - [sym_dictionary_comprehension] = STATE(2453), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [sym_identifier] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(444), - [anon_sym_not] = ACTIONS(840), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_TILDE] = ACTIONS(428), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), - }, - [169] = { - [sym__simple_statements] = STATE(4007), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [172] = { + [sym__simple_statements] = STATE(6026), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -32940,6 +33747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -32954,61 +33762,62 @@ 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(1041), - [sym__indent] = ACTIONS(1043), + [sym__newline] = ACTIONS(944), + [sym__indent] = ACTIONS(946), [sym_string_start] = ACTIONS(55), }, - [170] = { - [sym__simple_statements] = STATE(6188), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [173] = { + [sym__simple_statements] = STATE(6240), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33016,6 +33825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33030,61 +33840,62 @@ 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(1045), - [sym__indent] = ACTIONS(1047), + [sym__newline] = ACTIONS(948), + [sym__indent] = ACTIONS(950), [sym_string_start] = ACTIONS(55), }, - [171] = { - [sym__simple_statements] = STATE(5852), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [174] = { + [sym__simple_statements] = STATE(4090), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5326), + [sym_assignment] = STATE(6437), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33092,6 +33903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33106,61 +33918,62 @@ 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(1049), - [sym__indent] = ACTIONS(1051), + [sym__newline] = ACTIONS(952), + [sym__indent] = ACTIONS(954), [sym_string_start] = ACTIONS(55), }, - [172] = { - [sym__simple_statements] = STATE(5986), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [175] = { + [sym__simple_statements] = STATE(6163), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33168,6 +33981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33182,61 +33996,62 @@ 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(1053), - [sym__indent] = ACTIONS(1055), + [sym__newline] = ACTIONS(956), + [sym__indent] = ACTIONS(958), [sym_string_start] = ACTIONS(55), }, - [173] = { - [sym__simple_statements] = STATE(6180), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [176] = { + [sym__simple_statements] = STATE(5989), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33244,6 +34059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33258,61 +34074,62 @@ 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(1057), - [sym__indent] = ACTIONS(1059), + [sym__newline] = ACTIONS(960), + [sym__indent] = ACTIONS(962), [sym_string_start] = ACTIONS(55), }, - [174] = { - [sym__simple_statements] = STATE(6130), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [177] = { + [sym__simple_statements] = STATE(6265), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33320,6 +34137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33334,61 +34152,62 @@ 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(1061), - [sym__indent] = ACTIONS(1063), + [sym__newline] = ACTIONS(964), + [sym__indent] = ACTIONS(966), [sym_string_start] = ACTIONS(55), }, - [175] = { - [sym__simple_statements] = STATE(6274), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [178] = { + [sym__simple_statements] = STATE(6381), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33396,6 +34215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33410,61 +34230,62 @@ 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(1065), - [sym__indent] = ACTIONS(1067), + [sym__newline] = ACTIONS(968), + [sym__indent] = ACTIONS(970), [sym_string_start] = ACTIONS(55), }, - [176] = { - [sym__simple_statements] = STATE(6131), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [179] = { + [sym__simple_statements] = STATE(6270), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33472,6 +34293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33486,61 +34308,62 @@ 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(1069), - [sym__indent] = ACTIONS(1071), + [sym__newline] = ACTIONS(972), + [sym__indent] = ACTIONS(974), [sym_string_start] = ACTIONS(55), }, - [177] = { - [sym__simple_statements] = STATE(6290), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [180] = { + [sym__simple_statements] = STATE(5932), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33548,6 +34371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33562,61 +34386,62 @@ 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(1073), - [sym__indent] = ACTIONS(1075), + [sym__newline] = ACTIONS(976), + [sym__indent] = ACTIONS(978), [sym_string_start] = ACTIONS(55), }, - [178] = { - [sym__simple_statements] = STATE(6107), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [181] = { + [sym__simple_statements] = STATE(4045), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5296), + [sym_assignment] = STATE(6388), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33624,6 +34449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33638,61 +34464,62 @@ 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(1077), - [sym__indent] = ACTIONS(1079), + [sym__newline] = ACTIONS(980), + [sym__indent] = ACTIONS(982), [sym_string_start] = ACTIONS(55), }, - [179] = { - [sym__simple_statements] = STATE(5973), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [182] = { + [sym__simple_statements] = STATE(6180), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33700,6 +34527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33714,61 +34542,62 @@ 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(1081), - [sym__indent] = ACTIONS(1083), + [sym__newline] = ACTIONS(984), + [sym__indent] = ACTIONS(986), [sym_string_start] = ACTIONS(55), }, - [180] = { - [sym__simple_statements] = STATE(3977), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [183] = { + [sym__simple_statements] = STATE(6278), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33776,6 +34605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33790,61 +34620,62 @@ 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(1085), - [sym__indent] = ACTIONS(1087), + [sym__newline] = ACTIONS(988), + [sym__indent] = ACTIONS(990), [sym_string_start] = ACTIONS(55), }, - [181] = { - [sym__simple_statements] = STATE(5991), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [184] = { + [sym__simple_statements] = STATE(3795), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5307), + [sym_assignment] = STATE(6458), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33852,6 +34683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33866,61 +34698,62 @@ 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(1089), - [sym__indent] = ACTIONS(1091), + [sym__newline] = ACTIONS(992), + [sym__indent] = ACTIONS(994), [sym_string_start] = ACTIONS(55), }, - [182] = { - [sym__simple_statements] = STATE(5842), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [185] = { + [sym__simple_statements] = STATE(6039), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -33928,6 +34761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -33942,137 +34776,140 @@ 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(1093), - [sym__indent] = ACTIONS(1095), + [sym__newline] = ACTIONS(996), + [sym__indent] = ACTIONS(998), [sym_string_start] = ACTIONS(55), }, - [183] = { - [sym_schema_expr] = STATE(2162), - [sym_schema_instantiation] = STATE(2162), - [sym_lambda_expr] = STATE(2162), - [sym_quant_expr] = STATE(2162), - [sym_quant_op] = STATE(5990), - [sym_dotted_name] = STATE(5144), - [sym_expression] = STATE(3347), - [sym_as_expression] = STATE(2163), - [sym_selector_expression] = STATE(2164), - [sym_primary_expression] = STATE(2033), - [sym_paren_expression] = STATE(2162), - [sym_braces_expression] = STATE(2162), - [sym_not_operator] = STATE(2163), - [sym_boolean_operator] = STATE(2163), - [sym_long_expression] = STATE(2163), - [sym_string_literal_expr] = STATE(2162), - [sym_config_expr] = STATE(2162), - [sym_binary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2162), - [sym_sequence_operation] = STATE(2163), - [sym_in_operation] = STATE(2168), - [sym_not_in_operation] = STATE(2168), - [sym_comparison_operator] = STATE(2163), - [sym_select_suffix] = STATE(2162), - [sym_attribute] = STATE(2162), - [sym_optional_attribute] = STATE(2162), - [sym_optional_attribute_declaration] = STATE(2162), - [sym_optional_item] = STATE(2162), - [sym_null_coalesce] = STATE(2162), - [sym_subscript] = STATE(2167), - [sym_call] = STATE(2027), - [sym_list] = STATE(2239), - [sym_dictionary] = STATE(2239), - [sym_list_comprehension] = STATE(2239), - [sym_dictionary_comprehension] = STATE(2239), - [sym_conditional_expression] = STATE(2163), - [sym_string] = STATE(2162), - [aux_sym_check_statement_repeat1] = STATE(143), - [ts_builtin_sym_end] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1013), - [anon_sym_import] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1013), - [anon_sym_assert] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_rule] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_lambda] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_all] = ACTIONS(1013), - [anon_sym_any] = ACTIONS(1013), - [anon_sym_filter] = ACTIONS(1013), - [anon_sym_map] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_schema] = ACTIONS(1013), - [anon_sym_mixin] = ACTIONS(1013), - [anon_sym_protocol] = ACTIONS(1013), - [anon_sym_check] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym_QMARK_DOT] = ACTIONS(1015), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1015), - [sym_integer] = ACTIONS(1013), - [sym_float] = ACTIONS(1015), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_none] = ACTIONS(1013), - [sym_undefined] = ACTIONS(1013), + [186] = { + [sym__simple_statements] = STATE(6113), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(1015), + [sym__newline] = ACTIONS(1000), + [sym__indent] = ACTIONS(1002), + [sym_string_start] = ACTIONS(55), }, - [184] = { - [sym__simple_statements] = STATE(6323), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [187] = { + [sym__simple_statements] = STATE(4006), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5289), + [sym_assignment] = STATE(5952), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34080,6 +34917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34094,61 +34932,62 @@ 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(1097), - [sym__indent] = ACTIONS(1099), + [sym__newline] = ACTIONS(1004), + [sym__indent] = ACTIONS(1006), [sym_string_start] = ACTIONS(55), }, - [185] = { - [sym__simple_statements] = STATE(3578), - [sym_import_statement] = STATE(5881), - [sym_assert_statement] = STATE(5881), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(5881), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5085), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(5881), - [sym_augmented_assignment] = STATE(5881), - [sym_unification] = STATE(5881), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [188] = { + [sym__simple_statements] = STATE(3993), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5334), + [sym_assignment] = STATE(6076), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34156,6 +34995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34170,137 +35010,218 @@ 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(1101), - [sym__indent] = ACTIONS(1103), + [sym__newline] = ACTIONS(1008), + [sym__indent] = ACTIONS(1010), [sym_string_start] = ACTIONS(55), }, - [186] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dotted_name] = STATE(5018), - [sym_expression] = STATE(4746), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(3665), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(3665), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(2606), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), - [sym_list] = STATE(3701), - [sym_dictionary] = STATE(3701), - [sym_list_comprehension] = STATE(3701), - [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(3665), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(63), + [189] = { + [sym__simple_statements] = STATE(6030), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1012), + [sym__indent] = ACTIONS(1014), + [sym_string_start] = ACTIONS(55), + }, + [190] = { + [sym__simple_statements] = STATE(4012), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5295), + [sym_assignment] = STATE(5943), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(402), - [sym_integer] = ACTIONS(404), - [sym_float] = ACTIONS(406), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(408), + [sym__newline] = ACTIONS(1016), + [sym__indent] = ACTIONS(1018), + [sym_string_start] = ACTIONS(55), }, - [187] = { - [sym__simple_statements] = STATE(5866), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [191] = { + [sym__simple_statements] = STATE(6161), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34308,6 +35229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34322,61 +35244,62 @@ 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(1111), - [sym__indent] = ACTIONS(1113), + [sym__newline] = ACTIONS(1020), + [sym__indent] = ACTIONS(1022), [sym_string_start] = ACTIONS(55), }, - [188] = { - [sym__simple_statements] = STATE(4120), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [192] = { + [sym__simple_statements] = STATE(4171), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5305), + [sym_assignment] = STATE(6327), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34384,6 +35307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34398,61 +35322,62 @@ 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(1115), - [sym__indent] = ACTIONS(1117), + [sym__newline] = ACTIONS(1024), + [sym__indent] = ACTIONS(1026), [sym_string_start] = ACTIONS(55), }, - [189] = { - [sym__simple_statements] = STATE(6119), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [193] = { + [sym__simple_statements] = STATE(4036), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5326), + [sym_assignment] = STATE(5969), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34460,6 +35385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34474,61 +35400,62 @@ 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(1119), - [sym__indent] = ACTIONS(1121), + [sym__newline] = ACTIONS(1028), + [sym__indent] = ACTIONS(1030), [sym_string_start] = ACTIONS(55), }, - [190] = { - [sym__simple_statements] = STATE(5877), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [194] = { + [sym__simple_statements] = STATE(6441), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34536,6 +35463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34550,61 +35478,62 @@ 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(1123), - [sym__indent] = ACTIONS(1125), + [sym__newline] = ACTIONS(1032), + [sym__indent] = ACTIONS(1034), [sym_string_start] = ACTIONS(55), }, - [191] = { - [sym__simple_statements] = STATE(5840), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [195] = { + [sym__simple_statements] = STATE(6281), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34612,6 +35541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34626,61 +35556,62 @@ 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(1127), - [sym__indent] = ACTIONS(1129), + [sym__newline] = ACTIONS(1036), + [sym__indent] = ACTIONS(1038), [sym_string_start] = ACTIONS(55), }, - [192] = { - [sym__simple_statements] = STATE(4118), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [196] = { + [sym__simple_statements] = STATE(6289), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34688,6 +35619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34702,61 +35634,62 @@ 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(1131), - [sym__indent] = ACTIONS(1133), + [sym__newline] = ACTIONS(1040), + [sym__indent] = ACTIONS(1042), [sym_string_start] = ACTIONS(55), }, - [193] = { - [sym__simple_statements] = STATE(6009), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [197] = { + [sym__simple_statements] = STATE(6344), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34764,6 +35697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34778,61 +35712,62 @@ 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(1135), - [sym__indent] = ACTIONS(1137), + [sym__newline] = ACTIONS(1044), + [sym__indent] = ACTIONS(1046), [sym_string_start] = ACTIONS(55), }, - [194] = { - [sym__simple_statements] = STATE(6268), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [198] = { + [sym__simple_statements] = STATE(6343), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5315), + [sym_assignment] = STATE(6178), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34840,6 +35775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34854,61 +35790,62 @@ 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(1139), - [sym__indent] = ACTIONS(1141), + [sym__newline] = ACTIONS(1048), + [sym__indent] = ACTIONS(1050), [sym_string_start] = ACTIONS(55), }, - [195] = { - [sym__simple_statements] = STATE(5860), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [199] = { + [sym__simple_statements] = STATE(3846), + [sym_import_statement] = STATE(6221), + [sym_assert_statement] = STATE(6221), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6221), + [sym_mixin_statement] = STATE(6221), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5126), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5305), + [sym_assignment] = STATE(5919), + [sym_augmented_assignment] = STATE(6221), + [sym_unification] = STATE(6221), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34916,6 +35853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -34930,61 +35868,62 @@ 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(1143), - [sym__indent] = ACTIONS(1145), + [sym__newline] = ACTIONS(1052), + [sym__indent] = ACTIONS(1054), [sym_string_start] = ACTIONS(55), }, - [196] = { - [sym__simple_statements] = STATE(5949), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [200] = { + [sym__simple_statements] = STATE(4027), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5309), + [sym_assignment] = STATE(5953), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -34992,6 +35931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -35006,61 +35946,62 @@ 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(1147), - [sym__indent] = ACTIONS(1149), + [sym__newline] = ACTIONS(1056), + [sym__indent] = ACTIONS(1058), [sym_string_start] = ACTIONS(55), }, - [197] = { - [sym__simple_statements] = STATE(6242), - [sym_import_statement] = STATE(6324), - [sym_assert_statement] = STATE(6324), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6324), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5090), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6324), - [sym_augmented_assignment] = STATE(6324), - [sym_unification] = STATE(6324), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [201] = { + [sym__simple_statements] = STATE(3991), + [sym_import_statement] = STATE(6472), + [sym_assert_statement] = STATE(6472), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6472), + [sym_mixin_statement] = STATE(6472), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5213), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5316), + [sym_assignment] = STATE(6064), + [sym_augmented_assignment] = STATE(6472), + [sym_unification] = STATE(6472), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -35068,6 +36009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -35082,61 +36024,62 @@ 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(1151), - [sym__indent] = ACTIONS(1153), + [sym__newline] = ACTIONS(1060), + [sym__indent] = ACTIONS(1062), [sym_string_start] = ACTIONS(55), }, - [198] = { - [sym__simple_statements] = STATE(3714), - [sym_import_statement] = STATE(6289), - [sym_assert_statement] = STATE(6289), - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_type_alias_statement] = STATE(6289), - [sym_dotted_name] = STATE(4548), - [sym_expression] = STATE(5005), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_assignment] = STATE(6289), - [sym_augmented_assignment] = STATE(6289), - [sym_unification] = STATE(6289), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [202] = { + [sym__simple_statements] = STATE(6348), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -35144,6 +36087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -35158,1571 +36102,2870 @@ 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(1155), - [sym__indent] = ACTIONS(1157), + [sym__newline] = ACTIONS(1064), + [sym__indent] = ACTIONS(1066), [sym_string_start] = ACTIONS(55), }, - [199] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5411), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4801), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5844), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [203] = { + [sym__simple_statements] = STATE(3915), + [sym_import_statement] = STATE(6474), + [sym_assert_statement] = STATE(6474), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6474), + [sym_mixin_statement] = STATE(6474), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5212), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5305), + [sym_assignment] = STATE(6024), + [sym_augmented_assignment] = STATE(6474), + [sym_unification] = STATE(6474), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1068), + [sym__indent] = ACTIONS(1070), + [sym_string_start] = ACTIONS(55), + }, + [204] = { + [sym__simple_statements] = STATE(6320), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1072), + [sym__indent] = ACTIONS(1074), + [sym_string_start] = ACTIONS(55), + }, + [205] = { + [sym__simple_statements] = STATE(6426), + [sym_import_statement] = STATE(6396), + [sym_assert_statement] = STATE(6396), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6396), + [sym_mixin_statement] = STATE(6396), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5143), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5302), + [sym_assignment] = STATE(5930), + [sym_augmented_assignment] = STATE(6396), + [sym_unification] = STATE(6396), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1076), + [sym__indent] = ACTIONS(1078), + [sym_string_start] = ACTIONS(55), + }, + [206] = { + [sym__simple_statements] = STATE(4047), + [sym_import_statement] = STATE(6446), + [sym_assert_statement] = STATE(6446), + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_type_alias_statement] = STATE(6446), + [sym_mixin_statement] = STATE(6446), + [sym_dotted_name] = STATE(4639), + [sym_expression] = STATE(5130), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(5334), + [sym_assignment] = STATE(6362), + [sym_augmented_assignment] = STATE(6446), + [sym_unification] = STATE(6446), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(203), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1080), + [sym__indent] = ACTIONS(1082), + [sym_string_start] = ACTIONS(55), + }, + [207] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5215), + [sym_expression] = STATE(3587), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(2594), + [sym_primary_expression] = STATE(2373), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(2607), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(2613), + [sym_dictionary] = STATE(2613), + [sym_list_comprehension] = STATE(2613), + [sym_dictionary_comprehension] = STATE(2613), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_TILDE] = ACTIONS(440), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(446), + }, + [208] = { + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5145), + [sym_expression] = STATE(3615), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2361), + [sym_primary_expression] = STATE(2314), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2466), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2600), + [sym_dictionary] = STATE(2600), + [sym_list_comprehension] = STATE(2600), + [sym_dictionary_comprehension] = STATE(2600), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [aux_sym_selector_expression_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1098), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(289), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym__indent] = ACTIONS(57), + [sym_string_start] = ACTIONS(281), + }, + [209] = { + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5095), + [sym_expression] = STATE(3787), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2593), + [sym_primary_expression] = STATE(2405), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2459), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2614), + [sym_dictionary] = STATE(2614), + [sym_list_comprehension] = STATE(2614), + [sym_dictionary_comprehension] = STATE(2614), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [aux_sym_selector_expression_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_assert] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(61), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1104), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(275), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(57), + [sym__indent] = ACTIONS(57), + [sym_string_start] = ACTIONS(281), + }, + [210] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5190), + [sym_expression] = STATE(3396), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2259), + [sym_primary_expression] = STATE(2247), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2235), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2277), + [sym_dictionary] = STATE(2277), + [sym_list_comprehension] = STATE(2277), + [sym_dictionary_comprehension] = STATE(2277), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [aux_sym_check_statement_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_assert] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1111), + [anon_sym_rule] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_lambda] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_all] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1128), + [anon_sym_filter] = ACTIONS(1128), + [anon_sym_map] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1111), + [anon_sym_schema] = ACTIONS(1111), + [anon_sym_mixin] = ACTIONS(1111), + [anon_sym_protocol] = ACTIONS(1111), + [anon_sym_check] = ACTIONS(1111), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_QMARK_DOT] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [sym_integer] = ACTIONS(1143), + [sym_float] = ACTIONS(1146), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [sym_none] = ACTIONS(1143), + [sym_undefined] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1149), + }, + [211] = { + [sym_schema_expr] = STATE(2235), + [sym_schema_instantiation] = STATE(2235), + [sym_lambda_expr] = STATE(2235), + [sym_quant_expr] = STATE(2235), + [sym_quant_op] = STATE(6093), + [sym_dotted_name] = STATE(5190), + [sym_expression] = STATE(3396), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2259), + [sym_primary_expression] = STATE(2247), + [sym_paren_expression] = STATE(2235), + [sym_braces_expression] = STATE(2235), + [sym_not_operator] = STATE(2248), + [sym_boolean_operator] = STATE(2248), + [sym_long_expression] = STATE(2248), + [sym_string_literal_expr] = STATE(2235), + [sym_config_expr] = STATE(2235), + [sym_binary_operator] = STATE(2233), + [sym_unary_operator] = STATE(2235), + [sym_sequence_operation] = STATE(2248), + [sym_in_operation] = STATE(2246), + [sym_not_in_operation] = STATE(2246), + [sym_comparison_operator] = STATE(2248), + [sym_select_suffix] = STATE(2235), + [sym_attribute] = STATE(2235), + [sym_optional_attribute] = STATE(2235), + [sym_optional_attribute_declaration] = STATE(2235), + [sym_optional_item] = STATE(2235), + [sym_null_coalesce] = STATE(2235), + [sym_subscript] = STATE(2233), + [sym_call] = STATE(1770), + [sym_list] = STATE(2277), + [sym_dictionary] = STATE(2277), + [sym_list_comprehension] = STATE(2277), + [sym_dictionary_comprehension] = STATE(2277), + [sym_conditional_expression] = STATE(2248), + [sym_string] = STATE(2235), + [aux_sym_check_statement_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1154), + [anon_sym_import] = ACTIONS(1154), + [anon_sym_DOT] = ACTIONS(1154), + [anon_sym_assert] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_rule] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_lambda] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_all] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_filter] = ACTIONS(1154), + [anon_sym_map] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_schema] = ACTIONS(1154), + [anon_sym_mixin] = ACTIONS(1154), + [anon_sym_protocol] = ACTIONS(1154), + [anon_sym_check] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_QMARK_DOT] = ACTIONS(1152), + [anon_sym_not] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [sym_integer] = ACTIONS(1154), + [sym_float] = ACTIONS(1152), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_none] = ACTIONS(1154), + [sym_undefined] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1152), + }, + [212] = { + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5145), + [sym_expression] = STATE(3620), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2361), + [sym_primary_expression] = STATE(2314), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2596), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2600), + [sym_dictionary] = STATE(2600), + [sym_list_comprehension] = STATE(2600), + [sym_dictionary_comprehension] = STATE(2600), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [sym_identifier] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_QMARK_DOT] = ACTIONS(397), + [anon_sym_not] = ACTIONS(1098), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(289), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(133), + [sym__indent] = ACTIONS(133), + [sym_string_start] = ACTIONS(281), + }, + [213] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5185), + [sym_expression] = STATE(3403), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2270), + [sym_primary_expression] = STATE(2225), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2129), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2276), + [sym_dictionary] = STATE(2276), + [sym_list_comprehension] = STATE(2276), + [sym_dictionary_comprehension] = STATE(2276), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [aux_sym_check_statement_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1154), + [anon_sym_import] = ACTIONS(1154), + [anon_sym_DOT] = ACTIONS(1154), + [anon_sym_assert] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_rule] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_lambda] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_all] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_filter] = ACTIONS(1154), + [anon_sym_map] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_schema] = ACTIONS(1154), + [anon_sym_mixin] = ACTIONS(1154), + [anon_sym_protocol] = ACTIONS(1154), + [anon_sym_check] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_QMARK_DOT] = ACTIONS(1152), + [anon_sym_not] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DQUOTE] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1152), + [sym_integer] = ACTIONS(1154), + [sym_float] = ACTIONS(1152), + [sym_true] = ACTIONS(1154), + [sym_false] = ACTIONS(1154), + [sym_none] = ACTIONS(1154), + [sym_undefined] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1152), + [sym_string_start] = ACTIONS(1152), + }, + [214] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dotted_name] = STATE(5192), + [sym_expression] = STATE(4862), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3706), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3706), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(2709), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5270), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1171), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3706), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [sym_integer] = ACTIONS(389), + [sym_float] = ACTIONS(391), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(393), }, - [200] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5421), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4792), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6328), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [215] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5215), + [sym_expression] = STATE(3612), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(2594), + [sym_primary_expression] = STATE(2373), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(2606), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(2613), + [sym_dictionary] = STATE(2613), + [sym_list_comprehension] = STATE(2613), + [sym_dictionary_comprehension] = STATE(2613), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [sym_identifier] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(508), + [anon_sym_not] = ACTIONS(1090), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_TILDE] = ACTIONS(440), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(446), + }, + [216] = { + [sym_schema_expr] = STATE(2129), + [sym_schema_instantiation] = STATE(2129), + [sym_lambda_expr] = STATE(2129), + [sym_quant_expr] = STATE(2129), + [sym_quant_op] = STATE(5941), + [sym_dotted_name] = STATE(5185), + [sym_expression] = STATE(3403), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2270), + [sym_primary_expression] = STATE(2225), + [sym_paren_expression] = STATE(2129), + [sym_braces_expression] = STATE(2129), + [sym_not_operator] = STATE(2226), + [sym_boolean_operator] = STATE(2226), + [sym_long_expression] = STATE(2226), + [sym_string_literal_expr] = STATE(2129), + [sym_config_expr] = STATE(2129), + [sym_binary_operator] = STATE(2132), + [sym_unary_operator] = STATE(2129), + [sym_sequence_operation] = STATE(2226), + [sym_in_operation] = STATE(2223), + [sym_not_in_operation] = STATE(2223), + [sym_comparison_operator] = STATE(2226), + [sym_select_suffix] = STATE(2129), + [sym_attribute] = STATE(2129), + [sym_optional_attribute] = STATE(2129), + [sym_optional_attribute_declaration] = STATE(2129), + [sym_optional_item] = STATE(2129), + [sym_null_coalesce] = STATE(2129), + [sym_subscript] = STATE(2132), + [sym_call] = STATE(1411), + [sym_list] = STATE(2276), + [sym_dictionary] = STATE(2276), + [sym_list_comprehension] = STATE(2276), + [sym_dictionary_comprehension] = STATE(2276), + [sym_conditional_expression] = STATE(2226), + [sym_string] = STATE(2129), + [aux_sym_check_statement_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1162), + [anon_sym_import] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_assert] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1111), + [anon_sym_rule] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_lambda] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_all] = ACTIONS(1128), + [anon_sym_any] = ACTIONS(1128), + [anon_sym_filter] = ACTIONS(1128), + [anon_sym_map] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1111), + [anon_sym_schema] = ACTIONS(1111), + [anon_sym_mixin] = ACTIONS(1111), + [anon_sym_protocol] = ACTIONS(1111), + [anon_sym_check] = ACTIONS(1111), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_QMARK_DOT] = ACTIONS(1180), + [anon_sym_not] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1186), + [sym_integer] = ACTIONS(1192), + [sym_float] = ACTIONS(1195), + [sym_true] = ACTIONS(1192), + [sym_false] = ACTIONS(1192), + [sym_none] = ACTIONS(1192), + [sym_undefined] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1106), + [sym_string_start] = ACTIONS(1198), + }, + [217] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5478), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4898), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6237), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5268), + [sym_pair] = STATE(5396), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1183), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1213), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [201] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5395), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4814), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5923), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [218] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5514), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4881), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6350), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5277), + [sym_pair] = STATE(5364), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1189), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1225), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [202] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5383), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4793), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5831), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [219] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5467), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4910), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6151), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5289), + [sym_pair] = STATE(5432), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1195), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1231), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [203] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5412), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4811), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5822), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [220] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5482), + [sym_dotted_name] = STATE(4884), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(4298), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(4298), + [sym_config_entries] = STATE(6036), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5398), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(4298), + [sym_identifier] = ACTIONS(1235), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(578), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [sym_integer] = ACTIONS(1253), + [sym_float] = ACTIONS(1253), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(480), + }, + [221] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4849), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(2836), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_then] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(480), + }, + [222] = { + [sym_schema_expr] = STATE(2596), + [sym_schema_instantiation] = STATE(2596), + [sym_lambda_expr] = STATE(2596), + [sym_quant_expr] = STATE(2596), + [sym_quant_op] = STATE(6368), + [sym_dotted_name] = STATE(5095), + [sym_expression] = STATE(3783), + [sym_as_expression] = STATE(2595), + [sym_selector_expression] = STATE(2593), + [sym_primary_expression] = STATE(2405), + [sym_paren_expression] = STATE(2596), + [sym_braces_expression] = STATE(2596), + [sym_not_operator] = STATE(2595), + [sym_boolean_operator] = STATE(2595), + [sym_long_expression] = STATE(2595), + [sym_string_literal_expr] = STATE(2596), + [sym_config_expr] = STATE(2596), + [sym_binary_operator] = STATE(2592), + [sym_unary_operator] = STATE(2596), + [sym_sequence_operation] = STATE(2595), + [sym_in_operation] = STATE(2590), + [sym_not_in_operation] = STATE(2590), + [sym_comparison_operator] = STATE(2595), + [sym_select_suffix] = STATE(2596), + [sym_attribute] = STATE(2596), + [sym_optional_attribute] = STATE(2596), + [sym_optional_attribute_declaration] = STATE(2596), + [sym_optional_item] = STATE(2596), + [sym_null_coalesce] = STATE(2596), + [sym_subscript] = STATE(2592), + [sym_call] = STATE(2406), + [sym_list] = STATE(2614), + [sym_dictionary] = STATE(2614), + [sym_list_comprehension] = STATE(2614), + [sym_dictionary_comprehension] = STATE(2614), + [sym_conditional_expression] = STATE(2595), + [sym_string] = STATE(2596), + [sym_identifier] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(395), + [anon_sym_as] = ACTIONS(129), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(269), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_type] = ACTIONS(129), + [anon_sym_mixin] = ACTIONS(129), + [anon_sym_QMARK_DOT] = ACTIONS(397), + [anon_sym_not] = ACTIONS(1104), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(275), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(279), + [sym_true] = ACTIONS(277), + [sym_false] = ACTIONS(277), + [sym_none] = ACTIONS(277), + [sym_undefined] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(133), + [sym__indent] = ACTIONS(133), + [sym_string_start] = ACTIONS(281), + }, + [223] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5511), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4905), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6154), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5325), + [sym_pair] = STATE(5424), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1201), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1263), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [204] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5428), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4803), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5928), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [224] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5496), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4893), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6342), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5305), + [sym_pair] = STATE(5362), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1207), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1269), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [205] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5401), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4806), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5997), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [225] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5499), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4914), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(5964), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5321), + [sym_pair] = STATE(5406), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1213), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1275), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [206] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5413), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4820), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6316), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [226] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5480), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4904), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6162), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5274), + [sym_pair] = STATE(5375), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1219), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1281), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [207] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5384), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4802), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6077), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [227] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5482), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4876), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6036), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5338), + [sym_pair] = STATE(5398), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1225), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [208] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5424), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4797), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6160), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [228] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5516), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4873), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6377), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5298), + [sym_pair] = STATE(5420), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1231), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1287), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [209] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5419), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4808), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6101), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [229] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5502), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4899), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6054), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5265), + [sym_pair] = STATE(5412), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1237), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1293), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [210] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(5009), - [sym_expression] = STATE(3625), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2328), - [sym_primary_expression] = STATE(2313), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2517), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2543), - [sym_dictionary] = STATE(2543), - [sym_list_comprehension] = STATE(2543), - [sym_dictionary_comprehension] = STATE(2543), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [sym_identifier] = ACTIONS(850), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(438), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), + [230] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5493), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4889), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6436), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5355), + [sym_list_comprehension] = STATE(3701), + [sym_dictionary_comprehension] = STATE(3701), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1299), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_not] = ACTIONS(854), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(269), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__indent] = ACTIONS(189), - [sym_string_start] = ACTIONS(275), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(393), }, - [211] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5398), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4780), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5924), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [231] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5486), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4880), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(5928), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5336), + [sym_pair] = STATE(5387), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1243), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1305), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [212] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5397), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4800), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6097), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [232] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5506), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4894), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(5929), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5341), + [sym_pair] = STATE(5382), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1249), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1311), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [213] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5394), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4795), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6267), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [233] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5504), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4883), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6407), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5284), + [sym_pair] = STATE(5400), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1255), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1317), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [214] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5376), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4805), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6213), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [234] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5515), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4887), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6209), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5290), + [sym_pair] = STATE(5397), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1261), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1323), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [215] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5419), - [sym_dotted_name] = STATE(4779), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(4136), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(4136), - [sym_config_entries] = STATE(6101), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5265), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(4136), - [sym_identifier] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(1269), + [235] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5231), + [sym_expression] = STATE(3801), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(2720), + [sym_primary_expression] = STATE(2433), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2556), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(2757), + [sym_dictionary] = STATE(2757), + [sym_list_comprehension] = STATE(2757), + [sym_dictionary_comprehension] = STATE(2757), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(57), [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(492), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(672), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DQUOTE] = ACTIONS(1275), - [anon_sym_LF] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(676), - [sym_integer] = ACTIONS(1277), - [sym_float] = ACTIONS(1277), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1331), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_then] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [sym_integer] = ACTIONS(500), + [sym_float] = ACTIONS(502), [sym_true] = ACTIONS(500), [sym_false] = ACTIONS(500), [sym_none] = ACTIONS(500), [sym_undefined] = ACTIONS(500), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, - [216] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5386), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4822), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(6229), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [236] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5510), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4912), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6296), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5332), + [sym_pair] = STATE(5361), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1281), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1335), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [217] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dictionary_splat] = STATE(5385), - [sym_dotted_name] = STATE(4799), - [sym_expression] = STATE(4815), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(4057), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(4057), - [sym_config_entries] = STATE(5872), - [sym_config_entry] = STATE(5420), - [sym_test] = STATE(5692), - [sym_if_entry] = STATE(5693), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [237] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dictionary_splat] = STATE(5476), + [sym_dotted_name] = STATE(4885), + [sym_expression] = STATE(4882), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3978), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3978), + [sym_config_entries] = STATE(6459), + [sym_config_entry] = STATE(5508), + [sym_test] = STATE(5774), + [sym_if_entry] = STATE(5773), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), - [sym_pair] = STATE(5292), + [sym_pair] = STATE(5431), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(4057), - [sym_identifier] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1287), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3978), + [sym_identifier] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1341), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1173), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(1175), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [sym_integer] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_QMARK_DOT] = ACTIONS(568), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_LF] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [sym_integer] = ACTIONS(1221), + [sym_float] = ACTIONS(1221), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [218] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5127), - [sym_expression] = STATE(3965), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(2738), - [sym_primary_expression] = STATE(2590), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2526), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(2856), - [sym_dictionary] = STATE(2856), - [sym_list_comprehension] = STATE(2856), - [sym_dictionary_comprehension] = STATE(2856), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(1291), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(516), + [238] = { + [sym_schema_expr] = STATE(2981), + [sym_schema_instantiation] = STATE(2981), + [sym_lambda_expr] = STATE(2981), + [sym_quant_expr] = STATE(2981), + [sym_quant_op] = STATE(6038), + [sym_dotted_name] = STATE(5210), + [sym_expression] = STATE(4214), + [sym_as_expression] = STATE(2983), + [sym_selector_expression] = STATE(2755), + [sym_primary_expression] = STATE(2656), + [sym_paren_expression] = STATE(2981), + [sym_braces_expression] = STATE(2981), + [sym_not_operator] = STATE(2983), + [sym_boolean_operator] = STATE(2983), + [sym_long_expression] = STATE(2983), + [sym_string_literal_expr] = STATE(2981), + [sym_config_expr] = STATE(2981), + [sym_binary_operator] = STATE(2986), + [sym_unary_operator] = STATE(2981), + [sym_sequence_operation] = STATE(2983), + [sym_in_operation] = STATE(2995), + [sym_not_in_operation] = STATE(2995), + [sym_comparison_operator] = STATE(2983), + [sym_select_suffix] = STATE(2859), + [sym_attribute] = STATE(2981), + [sym_optional_attribute] = STATE(2981), + [sym_optional_attribute_declaration] = STATE(2981), + [sym_optional_item] = STATE(2981), + [sym_null_coalesce] = STATE(2981), + [sym_subscript] = STATE(2986), + [sym_call] = STATE(2751), + [sym_list] = STATE(2997), + [sym_dictionary] = STATE(2997), + [sym_list_comprehension] = STATE(2997), + [sym_dictionary_comprehension] = STATE(2997), + [sym_conditional_expression] = STATE(2983), + [sym_string] = STATE(2981), + [aux_sym_selector_expression_repeat1] = STATE(2716), + [sym_identifier] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_RBRACK] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(524), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1297), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_then] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(522), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1351), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [sym_integer] = ACTIONS(532), + [sym_float] = ACTIONS(534), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_none] = ACTIONS(532), + [sym_undefined] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(536), + }, + [239] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4871), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_basic_type] = STATE(6142), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6366), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1353), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1355), + [anon_sym_RBRACK] = ACTIONS(1357), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_int] = ACTIONS(1365), + [anon_sym_float] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(560), }, - [219] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4772), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(2896), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1301), + [240] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5231), + [sym_expression] = STATE(3827), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(2720), + [sym_primary_expression] = STATE(2433), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2430), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(2757), + [sym_dictionary] = STATE(2757), + [sym_list_comprehension] = STATE(2757), + [sym_dictionary_comprehension] = STATE(2757), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [sym_identifier] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), [anon_sym_LPAREN] = ACTIONS(486), [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(133), [anon_sym_lambda] = ACTIONS(490), [anon_sym_LBRACE] = ACTIONS(492), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_QMARK_DOT] = ACTIONS(564), + [anon_sym_not] = ACTIONS(1331), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(566), [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [anon_sym_then] = ACTIONS(59), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_then] = ACTIONS(129), [anon_sym_DASH] = ACTIONS(498), [anon_sym_TILDE] = ACTIONS(498), [sym_integer] = ACTIONS(500), @@ -36735,1093 +38978,1015 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, - [220] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4781), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(2798), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [aux_sym_selector_expression_repeat1] = STATE(2532), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [241] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4871), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_basic_type] = STATE(6367), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6366), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1357), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), + [anon_sym_any] = ACTIONS(1359), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_int] = ACTIONS(1365), + [anon_sym_float] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [221] = { - [sym_schema_expr] = STATE(2819), - [sym_schema_instantiation] = STATE(2819), - [sym_lambda_expr] = STATE(2819), - [sym_quant_expr] = STATE(2819), - [sym_quant_op] = STATE(5958), - [sym_dotted_name] = STATE(5068), - [sym_expression] = STATE(3887), - [sym_as_expression] = STATE(2820), - [sym_selector_expression] = STATE(2706), - [sym_primary_expression] = STATE(2538), - [sym_paren_expression] = STATE(2819), - [sym_braces_expression] = STATE(2819), - [sym_not_operator] = STATE(2820), - [sym_boolean_operator] = STATE(2820), - [sym_long_expression] = STATE(2820), - [sym_string_literal_expr] = STATE(2819), - [sym_config_expr] = STATE(2819), - [sym_binary_operator] = STATE(2826), - [sym_unary_operator] = STATE(2819), - [sym_sequence_operation] = STATE(2820), - [sym_in_operation] = STATE(2832), - [sym_not_in_operation] = STATE(2832), - [sym_comparison_operator] = STATE(2820), - [sym_select_suffix] = STATE(2836), - [sym_attribute] = STATE(2819), - [sym_optional_attribute] = STATE(2819), - [sym_optional_attribute_declaration] = STATE(2819), - [sym_optional_item] = STATE(2819), - [sym_null_coalesce] = STATE(2819), - [sym_subscript] = STATE(2826), - [sym_call] = STATE(2707), - [sym_list] = STATE(2838), - [sym_dictionary] = STATE(2838), - [sym_list_comprehension] = STATE(2838), - [sym_dictionary_comprehension] = STATE(2838), - [sym_conditional_expression] = STATE(2820), - [sym_string] = STATE(2819), - [aux_sym_selector_expression_repeat1] = STATE(2532), - [sym_identifier] = ACTIONS(1311), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_for] = ACTIONS(59), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_lambda] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(460), + [242] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dotted_name] = STATE(5192), + [sym_expression] = STATE(4865), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3706), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3706), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(3706), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_list_comprehension] = STATE(3701), + [sym_dictionary_comprehension] = STATE(3701), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3706), + [sym_identifier] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1315), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_TILDE] = ACTIONS(466), - [sym_integer] = ACTIONS(468), - [sym_float] = ACTIONS(470), - [sym_true] = ACTIONS(468), - [sym_false] = ACTIONS(468), - [sym_none] = ACTIONS(468), - [sym_undefined] = ACTIONS(468), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(472), - }, - [222] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4764), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_basic_type] = STATE(6143), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6142), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1317), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(1323), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_int] = ACTIONS(1327), - [anon_sym_float] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(570), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [sym_integer] = ACTIONS(389), + [sym_float] = ACTIONS(391), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(393), }, - [223] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4764), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_basic_type] = STATE(6085), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6142), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [243] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4872), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(2873), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [aux_sym_selector_expression_repeat1] = STATE(2716), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(57), + [anon_sym_for] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(57), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(1323), + [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_int] = ACTIONS(1327), - [anon_sym_float] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [224] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dotted_name] = STATE(5018), - [sym_expression] = STATE(4743), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(3665), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(3665), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(3665), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), - [sym_list] = STATE(3701), - [sym_dictionary] = STATE(3701), - [sym_list_comprehension] = STATE(3701), - [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(3665), - [sym_identifier] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(189), + [244] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5117), + [sym_expression] = STATE(4463), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(3212), + [sym_primary_expression] = STATE(3176), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(3207), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(3284), + [sym_dictionary] = STATE(3284), + [sym_list_comprehension] = STATE(3284), + [sym_dictionary_comprehension] = STATE(3284), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(476), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(402), - [sym_integer] = ACTIONS(404), - [sym_float] = ACTIONS(406), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1379), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(446), }, - [225] = { - [sym_schema_expr] = STATE(2517), - [sym_schema_instantiation] = STATE(2517), - [sym_lambda_expr] = STATE(2517), - [sym_quant_expr] = STATE(2517), - [sym_quant_op] = STATE(6187), - [sym_dotted_name] = STATE(5000), - [sym_expression] = STATE(3753), - [sym_as_expression] = STATE(2510), - [sym_selector_expression] = STATE(2505), - [sym_primary_expression] = STATE(2399), - [sym_paren_expression] = STATE(2517), - [sym_braces_expression] = STATE(2517), - [sym_not_operator] = STATE(2510), - [sym_boolean_operator] = STATE(2510), - [sym_long_expression] = STATE(2510), - [sym_string_literal_expr] = STATE(2517), - [sym_config_expr] = STATE(2517), - [sym_binary_operator] = STATE(2458), - [sym_unary_operator] = STATE(2517), - [sym_sequence_operation] = STATE(2510), - [sym_in_operation] = STATE(2456), - [sym_not_in_operation] = STATE(2456), - [sym_comparison_operator] = STATE(2510), - [sym_select_suffix] = STATE(2517), - [sym_attribute] = STATE(2517), - [sym_optional_attribute] = STATE(2517), - [sym_optional_attribute_declaration] = STATE(2517), - [sym_optional_item] = STATE(2517), - [sym_null_coalesce] = STATE(2517), - [sym_subscript] = STATE(2458), - [sym_call] = STATE(2407), - [sym_list] = STATE(2743), - [sym_dictionary] = STATE(2743), - [sym_list_comprehension] = STATE(2743), - [sym_dictionary_comprehension] = STATE(2743), - [sym_conditional_expression] = STATE(2510), - [sym_string] = STATE(2517), - [sym_identifier] = ACTIONS(842), - [anon_sym_import] = ACTIONS(191), - [anon_sym_DOT] = ACTIONS(438), - [anon_sym_as] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(259), - [anon_sym_lambda] = ACTIONS(261), - [anon_sym_LBRACE] = ACTIONS(263), + [245] = { + [sym_schema_expr] = STATE(2981), + [sym_schema_instantiation] = STATE(2981), + [sym_lambda_expr] = STATE(2981), + [sym_quant_expr] = STATE(2981), + [sym_quant_op] = STATE(6038), + [sym_dotted_name] = STATE(5210), + [sym_expression] = STATE(4215), + [sym_as_expression] = STATE(2983), + [sym_selector_expression] = STATE(2755), + [sym_primary_expression] = STATE(2656), + [sym_paren_expression] = STATE(2981), + [sym_braces_expression] = STATE(2981), + [sym_not_operator] = STATE(2983), + [sym_boolean_operator] = STATE(2983), + [sym_long_expression] = STATE(2983), + [sym_string_literal_expr] = STATE(2981), + [sym_config_expr] = STATE(2981), + [sym_binary_operator] = STATE(2986), + [sym_unary_operator] = STATE(2981), + [sym_sequence_operation] = STATE(2983), + [sym_in_operation] = STATE(2995), + [sym_not_in_operation] = STATE(2995), + [sym_comparison_operator] = STATE(2983), + [sym_select_suffix] = STATE(2981), + [sym_attribute] = STATE(2981), + [sym_optional_attribute] = STATE(2981), + [sym_optional_attribute_declaration] = STATE(2981), + [sym_optional_item] = STATE(2981), + [sym_null_coalesce] = STATE(2981), + [sym_subscript] = STATE(2986), + [sym_call] = STATE(2751), + [sym_list] = STATE(2997), + [sym_dictionary] = STATE(2997), + [sym_list_comprehension] = STATE(2997), + [sym_dictionary_comprehension] = STATE(2997), + [sym_conditional_expression] = STATE(2983), + [sym_string] = STATE(2981), + [sym_identifier] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(524), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_type] = ACTIONS(191), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_not] = ACTIONS(848), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(380), - [sym_integer] = ACTIONS(271), - [sym_float] = ACTIONS(273), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_none] = ACTIONS(271), - [sym_undefined] = ACTIONS(271), + [anon_sym_QMARK_DOT] = ACTIONS(576), + [anon_sym_not] = ACTIONS(1351), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [sym_integer] = ACTIONS(532), + [sym_float] = ACTIONS(534), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_none] = ACTIONS(532), + [sym_undefined] = ACTIONS(532), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym__indent] = ACTIONS(189), - [sym_string_start] = ACTIONS(275), + [sym_string_start] = ACTIONS(536), }, - [226] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5127), - [sym_expression] = STATE(4003), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(2738), - [sym_primary_expression] = STATE(2590), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2614), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(2856), - [sym_dictionary] = STATE(2856), - [sym_list_comprehension] = STATE(2856), - [sym_dictionary_comprehension] = STATE(2856), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [sym_identifier] = ACTIONS(1291), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(516), + [246] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4850), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(602), - [anon_sym_not] = ACTIONS(1297), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_then] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(522), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(133), + [anon_sym_then] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(480), }, - [227] = { - [sym_schema_expr] = STATE(3051), - [sym_schema_instantiation] = STATE(3051), - [sym_lambda_expr] = STATE(3051), - [sym_quant_expr] = STATE(3051), - [sym_quant_op] = STATE(5934), - [sym_dotted_name] = STATE(5115), - [sym_expression] = STATE(4213), - [sym_as_expression] = STATE(3063), - [sym_selector_expression] = STATE(2824), - [sym_primary_expression] = STATE(2751), - [sym_paren_expression] = STATE(3051), - [sym_braces_expression] = STATE(3051), - [sym_not_operator] = STATE(3063), - [sym_boolean_operator] = STATE(3063), - [sym_long_expression] = STATE(3063), - [sym_string_literal_expr] = STATE(3051), - [sym_config_expr] = STATE(3051), - [sym_binary_operator] = STATE(3055), - [sym_unary_operator] = STATE(3051), - [sym_sequence_operation] = STATE(3063), - [sym_in_operation] = STATE(3056), - [sym_not_in_operation] = STATE(3056), - [sym_comparison_operator] = STATE(3063), - [sym_select_suffix] = STATE(3000), - [sym_attribute] = STATE(3051), - [sym_optional_attribute] = STATE(3051), - [sym_optional_attribute_declaration] = STATE(3051), - [sym_optional_item] = STATE(3051), - [sym_null_coalesce] = STATE(3051), - [sym_subscript] = STATE(3055), - [sym_call] = STATE(2870), - [sym_list] = STATE(3057), - [sym_dictionary] = STATE(3057), - [sym_list_comprehension] = STATE(3057), - [sym_dictionary_comprehension] = STATE(3057), - [sym_conditional_expression] = STATE(3063), - [sym_string] = STATE(3051), - [aux_sym_selector_expression_repeat1] = STATE(2754), - [sym_identifier] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(59), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_lambda] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(59), + [247] = { + [sym_schema_expr] = STATE(3195), + [sym_schema_instantiation] = STATE(3195), + [sym_lambda_expr] = STATE(3195), + [sym_quant_expr] = STATE(3195), + [sym_quant_op] = STATE(5959), + [sym_dotted_name] = STATE(5208), + [sym_expression] = STATE(4275), + [sym_as_expression] = STATE(3197), + [sym_selector_expression] = STATE(2904), + [sym_primary_expression] = STATE(2756), + [sym_paren_expression] = STATE(3195), + [sym_braces_expression] = STATE(3195), + [sym_not_operator] = STATE(3197), + [sym_boolean_operator] = STATE(3197), + [sym_long_expression] = STATE(3197), + [sym_string_literal_expr] = STATE(3195), + [sym_config_expr] = STATE(3195), + [sym_binary_operator] = STATE(3194), + [sym_unary_operator] = STATE(3195), + [sym_sequence_operation] = STATE(3197), + [sym_in_operation] = STATE(3198), + [sym_not_in_operation] = STATE(3198), + [sym_comparison_operator] = STATE(3197), + [sym_select_suffix] = STATE(3040), + [sym_attribute] = STATE(3195), + [sym_optional_attribute] = STATE(3195), + [sym_optional_attribute_declaration] = STATE(3195), + [sym_optional_item] = STATE(3195), + [sym_null_coalesce] = STATE(3195), + [sym_subscript] = STATE(3194), + [sym_call] = STATE(2877), + [sym_list] = STATE(3101), + [sym_dictionary] = STATE(3101), + [sym_list_comprehension] = STATE(3101), + [sym_dictionary_comprehension] = STATE(3101), + [sym_conditional_expression] = STATE(3197), + [sym_string] = STATE(3195), + [aux_sym_selector_expression_repeat1] = STATE(2804), + [sym_identifier] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_lambda] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(59), - [anon_sym_not] = ACTIONS(1339), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_LF] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [sym_integer] = ACTIONS(596), - [sym_float] = ACTIONS(596), - [sym_true] = ACTIONS(596), - [sym_false] = ACTIONS(596), - [sym_none] = ACTIONS(596), - [sym_undefined] = ACTIONS(596), + [anon_sym_QMARK_DOT] = ACTIONS(61), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(634), + [sym_integer] = ACTIONS(636), + [sym_float] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_none] = ACTIONS(636), + [sym_undefined] = ACTIONS(636), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(598), + [sym_string_start] = ACTIONS(638), }, - [228] = { - [sym_schema_expr] = STATE(2819), - [sym_schema_instantiation] = STATE(2819), - [sym_lambda_expr] = STATE(2819), - [sym_quant_expr] = STATE(2819), - [sym_quant_op] = STATE(5958), - [sym_dotted_name] = STATE(5068), - [sym_expression] = STATE(3864), - [sym_as_expression] = STATE(2820), - [sym_selector_expression] = STATE(2706), - [sym_primary_expression] = STATE(2538), - [sym_paren_expression] = STATE(2819), - [sym_braces_expression] = STATE(2819), - [sym_not_operator] = STATE(2820), - [sym_boolean_operator] = STATE(2820), - [sym_long_expression] = STATE(2820), - [sym_string_literal_expr] = STATE(2819), - [sym_config_expr] = STATE(2819), - [sym_binary_operator] = STATE(2826), - [sym_unary_operator] = STATE(2819), - [sym_sequence_operation] = STATE(2820), - [sym_in_operation] = STATE(2832), - [sym_not_in_operation] = STATE(2832), - [sym_comparison_operator] = STATE(2820), - [sym_select_suffix] = STATE(2819), - [sym_attribute] = STATE(2819), - [sym_optional_attribute] = STATE(2819), - [sym_optional_attribute_declaration] = STATE(2819), - [sym_optional_item] = STATE(2819), - [sym_null_coalesce] = STATE(2819), - [sym_subscript] = STATE(2826), - [sym_call] = STATE(2707), - [sym_list] = STATE(2838), - [sym_dictionary] = STATE(2838), - [sym_list_comprehension] = STATE(2838), - [sym_dictionary_comprehension] = STATE(2838), - [sym_conditional_expression] = STATE(2820), - [sym_string] = STATE(2819), - [sym_identifier] = ACTIONS(1311), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(460), + [248] = { + [sym_schema_expr] = STATE(4338), + [sym_schema_instantiation] = STATE(4338), + [sym_lambda_expr] = STATE(4338), + [sym_quant_expr] = STATE(4338), + [sym_quant_op] = STATE(6173), + [sym_dotted_name] = STATE(5125), + [sym_expression] = STATE(4926), + [sym_as_expression] = STATE(4327), + [sym_selector_expression] = STATE(4181), + [sym_primary_expression] = STATE(3877), + [sym_paren_expression] = STATE(4338), + [sym_braces_expression] = STATE(4338), + [sym_not_operator] = STATE(4327), + [sym_boolean_operator] = STATE(4327), + [sym_long_expression] = STATE(4327), + [sym_string_literal_expr] = STATE(4338), + [sym_config_expr] = STATE(4338), + [sym_binary_operator] = STATE(4339), + [sym_unary_operator] = STATE(4338), + [sym_sequence_operation] = STATE(4327), + [sym_in_operation] = STATE(4328), + [sym_not_in_operation] = STATE(4328), + [sym_comparison_operator] = STATE(4327), + [sym_select_suffix] = STATE(3036), + [sym_attribute] = STATE(4338), + [sym_optional_attribute] = STATE(4338), + [sym_optional_attribute_declaration] = STATE(4338), + [sym_optional_item] = STATE(4338), + [sym_null_coalesce] = STATE(4338), + [sym_subscript] = STATE(4339), + [sym_call] = STATE(3948), + [sym_list] = STATE(4342), + [sym_dictionary] = STATE(4342), + [sym_list_comprehension] = STATE(4342), + [sym_dictionary_comprehension] = STATE(4342), + [sym_conditional_expression] = STATE(4327), + [sym_string] = STATE(4338), + [aux_sym_selector_expression_repeat1] = STATE(2804), + [sym_identifier] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_lambda] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(61), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(608), - [anon_sym_not] = ACTIONS(1315), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DQUOTE] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_TILDE] = ACTIONS(466), - [sym_integer] = ACTIONS(468), - [sym_float] = ACTIONS(470), - [sym_true] = ACTIONS(468), - [sym_false] = ACTIONS(468), - [sym_none] = ACTIONS(468), - [sym_undefined] = ACTIONS(468), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(472), + [anon_sym_QMARK_DOT] = ACTIONS(61), + [anon_sym_not] = ACTIONS(1393), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(57), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_TILDE] = ACTIONS(656), + [sym_integer] = ACTIONS(658), + [sym_float] = ACTIONS(658), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_none] = ACTIONS(658), + [sym_undefined] = ACTIONS(658), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(660), }, - [229] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5058), - [sym_expression] = STATE(4349), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(3219), - [sym_primary_expression] = STATE(3007), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(3182), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(3246), - [sym_dictionary] = STATE(3246), - [sym_list_comprehension] = STATE(3246), - [sym_dictionary_comprehension] = STATE(3246), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(1341), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(63), + [249] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5180), + [sym_expression] = STATE(4920), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(4246), + [sym_primary_expression] = STATE(3820), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3226), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(4216), + [sym_list] = STATE(4256), + [sym_dictionary] = STATE(4256), + [sym_list_comprehension] = STATE(4256), + [sym_dictionary_comprehension] = STATE(4256), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(468), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(708), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_TILDE] = ACTIONS(672), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), + [sym_string_start] = ACTIONS(480), }, - [230] = { - [sym_schema_expr] = STATE(4160), - [sym_schema_instantiation] = STATE(4160), - [sym_lambda_expr] = STATE(4160), - [sym_quant_expr] = STATE(4160), - [sym_quant_op] = STATE(5996), - [sym_dotted_name] = STATE(5150), - [sym_expression] = STATE(4851), - [sym_as_expression] = STATE(4192), - [sym_selector_expression] = STATE(4004), - [sym_primary_expression] = STATE(3825), - [sym_paren_expression] = STATE(4160), - [sym_braces_expression] = STATE(4160), - [sym_not_operator] = STATE(4192), - [sym_boolean_operator] = STATE(4192), - [sym_long_expression] = STATE(4192), - [sym_string_literal_expr] = STATE(4160), - [sym_config_expr] = STATE(4160), - [sym_binary_operator] = STATE(4239), - [sym_unary_operator] = STATE(4160), - [sym_sequence_operation] = STATE(4192), - [sym_in_operation] = STATE(4220), - [sym_not_in_operation] = STATE(4220), - [sym_comparison_operator] = STATE(4192), - [sym_select_suffix] = STATE(3068), - [sym_attribute] = STATE(4160), - [sym_optional_attribute] = STATE(4160), - [sym_optional_attribute_declaration] = STATE(4160), - [sym_optional_item] = STATE(4160), - [sym_null_coalesce] = STATE(4160), - [sym_subscript] = STATE(4239), - [sym_call] = STATE(3807), - [sym_list] = STATE(4208), - [sym_dictionary] = STATE(4208), - [sym_list_comprehension] = STATE(4208), - [sym_dictionary_comprehension] = STATE(4208), - [sym_conditional_expression] = STATE(4192), - [sym_string] = STATE(4160), - [aux_sym_selector_expression_repeat1] = STATE(2754), - [sym_identifier] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(59), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_lambda] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(59), + [250] = { + [sym_schema_expr] = STATE(3195), + [sym_schema_instantiation] = STATE(3195), + [sym_lambda_expr] = STATE(3195), + [sym_quant_expr] = STATE(3195), + [sym_quant_op] = STATE(5959), + [sym_dotted_name] = STATE(5208), + [sym_expression] = STATE(4273), + [sym_as_expression] = STATE(3197), + [sym_selector_expression] = STATE(2904), + [sym_primary_expression] = STATE(2756), + [sym_paren_expression] = STATE(3195), + [sym_braces_expression] = STATE(3195), + [sym_not_operator] = STATE(3197), + [sym_boolean_operator] = STATE(3197), + [sym_long_expression] = STATE(3197), + [sym_string_literal_expr] = STATE(3195), + [sym_config_expr] = STATE(3195), + [sym_binary_operator] = STATE(3194), + [sym_unary_operator] = STATE(3195), + [sym_sequence_operation] = STATE(3197), + [sym_in_operation] = STATE(3198), + [sym_not_in_operation] = STATE(3198), + [sym_comparison_operator] = STATE(3197), + [sym_select_suffix] = STATE(3195), + [sym_attribute] = STATE(3195), + [sym_optional_attribute] = STATE(3195), + [sym_optional_attribute_declaration] = STATE(3195), + [sym_optional_item] = STATE(3195), + [sym_null_coalesce] = STATE(3195), + [sym_subscript] = STATE(3194), + [sym_call] = STATE(2877), + [sym_list] = STATE(3101), + [sym_dictionary] = STATE(3101), + [sym_list_comprehension] = STATE(3101), + [sym_dictionary_comprehension] = STATE(3101), + [sym_conditional_expression] = STATE(3197), + [sym_string] = STATE(3195), + [sym_identifier] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(732), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(129), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_lambda] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(59), - [anon_sym_not] = ACTIONS(1351), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(570), - [anon_sym_LF] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(572), - [sym_integer] = ACTIONS(574), - [sym_float] = ACTIONS(574), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_none] = ACTIONS(574), - [sym_undefined] = ACTIONS(574), + [anon_sym_QMARK_DOT] = ACTIONS(732), + [anon_sym_not] = ACTIONS(1387), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_LF] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(634), + [sym_integer] = ACTIONS(636), + [sym_float] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_none] = ACTIONS(636), + [sym_undefined] = ACTIONS(636), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(576), + [sym_string_start] = ACTIONS(638), }, - [231] = { - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_dotted_name] = STATE(5116), - [sym_expression] = STATE(4942), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_select_suffix] = STATE(3212), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [aux_sym_selector_expression_repeat1] = STATE(2871), - [sym_identifier] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_lambda] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), + [251] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(5055), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(3209), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [aux_sym_selector_expression_repeat1] = STATE(2892), + [sym_identifier] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(698), }, - [232] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5088), - [sym_expression] = STATE(4325), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(3023), - [sym_primary_expression] = STATE(2835), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2526), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(3222), - [sym_dictionary] = STATE(3222), - [sym_list_comprehension] = STATE(3222), - [sym_dictionary_comprehension] = STATE(3222), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_DASH_GT] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(516), + [252] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4913), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_for] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(133), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_QMARK_DOT] = ACTIONS(736), [anon_sym_not] = ACTIONS(1363), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_TILDE] = ACTIONS(662), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(560), }, - [233] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4787), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [253] = { + [sym_schema_expr] = STATE(3228), + [sym_schema_instantiation] = STATE(3228), + [sym_lambda_expr] = STATE(3228), + [sym_quant_expr] = STATE(3228), + [sym_quant_op] = STATE(6041), + [sym_dotted_name] = STATE(5119), + [sym_expression] = STATE(4464), + [sym_as_expression] = STATE(3246), + [sym_selector_expression] = STATE(3102), + [sym_primary_expression] = STATE(2889), + [sym_paren_expression] = STATE(3228), + [sym_braces_expression] = STATE(3228), + [sym_not_operator] = STATE(3246), + [sym_boolean_operator] = STATE(3246), + [sym_long_expression] = STATE(3246), + [sym_string_literal_expr] = STATE(3228), + [sym_config_expr] = STATE(3228), + [sym_binary_operator] = STATE(3232), + [sym_unary_operator] = STATE(3228), + [sym_sequence_operation] = STATE(3246), + [sym_in_operation] = STATE(3242), + [sym_not_in_operation] = STATE(3242), + [sym_comparison_operator] = STATE(3246), + [sym_select_suffix] = STATE(3204), + [sym_attribute] = STATE(3228), + [sym_optional_attribute] = STATE(3228), + [sym_optional_attribute_declaration] = STATE(3228), + [sym_optional_item] = STATE(3228), + [sym_null_coalesce] = STATE(3228), + [sym_subscript] = STATE(3232), + [sym_call] = STATE(3115), + [sym_list] = STATE(3236), + [sym_dictionary] = STATE(3236), + [sym_list_comprehension] = STATE(3236), + [sym_dictionary_comprehension] = STATE(3236), + [sym_conditional_expression] = STATE(3246), + [sym_string] = STATE(3228), + [aux_sym_selector_expression_repeat1] = STATE(2892), + [sym_identifier] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_lambda] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(728), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), + [sym_undefined] = ACTIONS(726), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(730), }, - [234] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(4995), - [sym_expression] = STATE(4864), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3981), - [sym_primary_expression] = STATE(3761), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3164), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(4111), - [sym_list] = STATE(4187), - [sym_dictionary] = STATE(4187), - [sym_list_comprehension] = STATE(4187), - [sym_dictionary_comprehension] = STATE(4187), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1367), + [254] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5201), + [sym_expression] = STATE(4408), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(3044), + [sym_primary_expression] = STATE(2985), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2556), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(3256), + [sym_dictionary] = STATE(3256), + [sym_list_comprehension] = STATE(3256), + [sym_dictionary_comprehension] = STATE(3256), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1419), [anon_sym_LPAREN] = ACTIONS(486), [anon_sym_LBRACK] = ACTIONS(488), [anon_sym_lambda] = ACTIONS(490), - [anon_sym_DASH_GT] = ACTIONS(63), + [anon_sym_DASH_GT] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(492), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(746), [sym_integer] = ACTIONS(500), [sym_float] = ACTIONS(502), [sym_true] = ACTIONS(500), @@ -37832,136 +39997,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(504), }, - [235] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4771), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(189), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), + [255] = { + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_dotted_name] = STATE(5088), + [sym_expression] = STATE(5010), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_select_suffix] = STATE(3163), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [aux_sym_selector_expression_repeat1] = STATE(2840), + [sym_identifier] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(189), - [anon_sym_then] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(45), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym__newline] = ACTIONS(57), + [sym_string_start] = ACTIONS(55), }, - [236] = { - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_dotted_name] = STATE(5116), - [sym_expression] = STATE(4942), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_select_suffix] = STATE(3212), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), - [aux_sym_selector_expression_repeat1] = STATE(2871), + [256] = { + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_dotted_name] = STATE(5088), + [sym_expression] = STATE(5010), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_select_suffix] = STATE(3163), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), + [aux_sym_selector_expression_repeat1] = STATE(2840), [sym_identifier] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1425), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), + [anon_sym_QMARK_DOT] = ACTIONS(57), [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(47), [anon_sym_TILDE] = ACTIONS(47), @@ -37973,839 +40138,623 @@ 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(63), + [sym__newline] = ACTIONS(57), [sym_string_start] = ACTIONS(55), }, - [237] = { - [sym_schema_expr] = STATE(3203), - [sym_schema_instantiation] = STATE(3203), - [sym_lambda_expr] = STATE(3203), - [sym_quant_expr] = STATE(3203), - [sym_quant_op] = STATE(5965), - [sym_dotted_name] = STATE(5014), - [sym_expression] = STATE(4267), - [sym_as_expression] = STATE(3207), - [sym_selector_expression] = STATE(3028), - [sym_primary_expression] = STATE(2840), - [sym_paren_expression] = STATE(3203), - [sym_braces_expression] = STATE(3203), - [sym_not_operator] = STATE(3207), - [sym_boolean_operator] = STATE(3207), - [sym_long_expression] = STATE(3207), - [sym_string_literal_expr] = STATE(3203), - [sym_config_expr] = STATE(3203), - [sym_binary_operator] = STATE(3210), - [sym_unary_operator] = STATE(3203), - [sym_sequence_operation] = STATE(3207), - [sym_in_operation] = STATE(3211), - [sym_not_in_operation] = STATE(3211), - [sym_comparison_operator] = STATE(3207), - [sym_select_suffix] = STATE(3114), - [sym_attribute] = STATE(3203), - [sym_optional_attribute] = STATE(3203), - [sym_optional_attribute_declaration] = STATE(3203), - [sym_optional_item] = STATE(3203), - [sym_null_coalesce] = STATE(3203), - [sym_subscript] = STATE(3210), - [sym_call] = STATE(3027), + [257] = { + [sym_schema_expr] = STATE(3038), + [sym_schema_instantiation] = STATE(3038), + [sym_lambda_expr] = STATE(3038), + [sym_quant_expr] = STATE(3038), + [sym_quant_op] = STATE(6050), + [sym_dotted_name] = STATE(5216), + [sym_expression] = STATE(4423), + [sym_as_expression] = STATE(3041), + [sym_selector_expression] = STATE(3042), + [sym_primary_expression] = STATE(2852), + [sym_paren_expression] = STATE(3038), + [sym_braces_expression] = STATE(3038), + [sym_not_operator] = STATE(3041), + [sym_boolean_operator] = STATE(3041), + [sym_long_expression] = STATE(3041), + [sym_string_literal_expr] = STATE(3038), + [sym_config_expr] = STATE(3038), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3038), + [sym_sequence_operation] = STATE(3041), + [sym_in_operation] = STATE(3046), + [sym_not_in_operation] = STATE(3046), + [sym_comparison_operator] = STATE(3041), + [sym_select_suffix] = STATE(3179), + [sym_attribute] = STATE(3038), + [sym_optional_attribute] = STATE(3038), + [sym_optional_attribute_declaration] = STATE(3038), + [sym_optional_item] = STATE(3038), + [sym_null_coalesce] = STATE(3038), + [sym_subscript] = STATE(3045), + [sym_call] = STATE(2850), [sym_list] = STATE(3213), [sym_dictionary] = STATE(3213), [sym_list_comprehension] = STATE(3213), [sym_dictionary_comprehension] = STATE(3213), - [sym_conditional_expression] = STATE(3207), - [sym_string] = STATE(3203), - [aux_sym_selector_expression_repeat1] = STATE(2815), - [sym_identifier] = ACTIONS(1371), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_lambda] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1377), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_TILDE] = ACTIONS(646), - [sym_integer] = ACTIONS(648), - [sym_float] = ACTIONS(650), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_none] = ACTIONS(648), - [sym_undefined] = ACTIONS(648), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(652), - }, - [238] = { - [sym_schema_expr] = STATE(3051), - [sym_schema_instantiation] = STATE(3051), - [sym_lambda_expr] = STATE(3051), - [sym_quant_expr] = STATE(3051), - [sym_quant_op] = STATE(5934), - [sym_dotted_name] = STATE(5115), - [sym_expression] = STATE(4179), - [sym_as_expression] = STATE(3063), - [sym_selector_expression] = STATE(2824), - [sym_primary_expression] = STATE(2751), - [sym_paren_expression] = STATE(3051), - [sym_braces_expression] = STATE(3051), - [sym_not_operator] = STATE(3063), - [sym_boolean_operator] = STATE(3063), - [sym_long_expression] = STATE(3063), - [sym_string_literal_expr] = STATE(3051), - [sym_config_expr] = STATE(3051), - [sym_binary_operator] = STATE(3055), - [sym_unary_operator] = STATE(3051), - [sym_sequence_operation] = STATE(3063), - [sym_in_operation] = STATE(3056), - [sym_not_in_operation] = STATE(3056), - [sym_comparison_operator] = STATE(3063), - [sym_select_suffix] = STATE(3051), - [sym_attribute] = STATE(3051), - [sym_optional_attribute] = STATE(3051), - [sym_optional_attribute_declaration] = STATE(3051), - [sym_optional_item] = STATE(3051), - [sym_null_coalesce] = STATE(3051), - [sym_subscript] = STATE(3055), - [sym_call] = STATE(2870), - [sym_list] = STATE(3057), - [sym_dictionary] = STATE(3057), - [sym_list_comprehension] = STATE(3057), - [sym_dictionary_comprehension] = STATE(3057), - [sym_conditional_expression] = STATE(3063), - [sym_string] = STATE(3051), - [sym_identifier] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_lambda] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(610), - [anon_sym_not] = ACTIONS(1339), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_LF] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [sym_integer] = ACTIONS(596), - [sym_float] = ACTIONS(596), - [sym_true] = ACTIONS(596), - [sym_false] = ACTIONS(596), - [sym_none] = ACTIONS(596), - [sym_undefined] = ACTIONS(596), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(598), - }, - [239] = { - [sym_schema_expr] = STATE(3227), - [sym_schema_instantiation] = STATE(3227), - [sym_lambda_expr] = STATE(3227), - [sym_quant_expr] = STATE(3227), - [sym_quant_op] = STATE(5976), - [sym_dotted_name] = STATE(5067), - [sym_expression] = STATE(4391), - [sym_as_expression] = STATE(3226), - [sym_selector_expression] = STATE(3005), - [sym_primary_expression] = STATE(2879), - [sym_paren_expression] = STATE(3227), - [sym_braces_expression] = STATE(3227), - [sym_not_operator] = STATE(3226), - [sym_boolean_operator] = STATE(3226), - [sym_long_expression] = STATE(3226), - [sym_string_literal_expr] = STATE(3227), - [sym_config_expr] = STATE(3227), - [sym_binary_operator] = STATE(3223), - [sym_unary_operator] = STATE(3227), - [sym_sequence_operation] = STATE(3226), - [sym_in_operation] = STATE(3221), - [sym_not_in_operation] = STATE(3221), - [sym_comparison_operator] = STATE(3226), - [sym_select_suffix] = STATE(3181), - [sym_attribute] = STATE(3227), - [sym_optional_attribute] = STATE(3227), - [sym_optional_attribute_declaration] = STATE(3227), - [sym_optional_item] = STATE(3227), - [sym_null_coalesce] = STATE(3227), - [sym_subscript] = STATE(3223), - [sym_call] = STATE(2993), - [sym_list] = STATE(3176), - [sym_dictionary] = STATE(3176), - [sym_list_comprehension] = STATE(3176), - [sym_dictionary_comprehension] = STATE(3176), - [sym_conditional_expression] = STATE(3226), - [sym_string] = STATE(3227), - [aux_sym_selector_expression_repeat1] = STATE(2871), - [sym_identifier] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_lambda] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(698), - [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__newline] = ACTIONS(63), - [sym_string_start] = ACTIONS(700), - }, - [240] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4926), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(3206), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [aux_sym_selector_expression_repeat1] = STATE(2815), - [sym_identifier] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [sym_conditional_expression] = STATE(3041), + [sym_string] = STATE(3038), + [aux_sym_selector_expression_repeat1] = STATE(2840), + [sym_identifier] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_lambda] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(602), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_TILDE] = ACTIONS(608), + [sym_integer] = ACTIONS(610), + [sym_float] = ACTIONS(612), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_none] = ACTIONS(610), + [sym_undefined] = ACTIONS(610), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym__newline] = ACTIONS(57), + [sym_string_start] = ACTIONS(614), }, - [241] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dotted_name] = STATE(5018), - [sym_expression] = STATE(4746), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(3665), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(3665), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(2606), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [258] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dotted_name] = STATE(5192), + [sym_expression] = STATE(4862), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3706), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3706), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(2709), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(3665), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(836), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(63), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3706), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(402), - [sym_integer] = ACTIONS(404), - [sym_float] = ACTIONS(406), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [sym_integer] = ACTIONS(389), + [sym_float] = ACTIONS(391), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [242] = { - [sym_schema_expr] = STATE(3227), - [sym_schema_instantiation] = STATE(3227), - [sym_lambda_expr] = STATE(3227), - [sym_quant_expr] = STATE(3227), - [sym_quant_op] = STATE(5976), - [sym_dotted_name] = STATE(5067), - [sym_expression] = STATE(4333), - [sym_as_expression] = STATE(3226), - [sym_selector_expression] = STATE(3005), - [sym_primary_expression] = STATE(2879), - [sym_paren_expression] = STATE(3227), - [sym_braces_expression] = STATE(3227), - [sym_not_operator] = STATE(3226), - [sym_boolean_operator] = STATE(3226), - [sym_long_expression] = STATE(3226), - [sym_string_literal_expr] = STATE(3227), - [sym_config_expr] = STATE(3227), - [sym_binary_operator] = STATE(3223), - [sym_unary_operator] = STATE(3227), - [sym_sequence_operation] = STATE(3226), - [sym_in_operation] = STATE(3221), - [sym_not_in_operation] = STATE(3221), - [sym_comparison_operator] = STATE(3226), - [sym_select_suffix] = STATE(3227), - [sym_attribute] = STATE(3227), - [sym_optional_attribute] = STATE(3227), - [sym_optional_attribute_declaration] = STATE(3227), - [sym_optional_item] = STATE(3227), - [sym_null_coalesce] = STATE(3227), - [sym_subscript] = STATE(3223), - [sym_call] = STATE(2993), - [sym_list] = STATE(3176), - [sym_dictionary] = STATE(3176), - [sym_list_comprehension] = STATE(3176), - [sym_dictionary_comprehension] = STATE(3176), - [sym_conditional_expression] = STATE(3226), - [sym_string] = STATE(3227), - [sym_identifier] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(736), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(684), - [anon_sym_lambda] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), + [259] = { + [sym_schema_expr] = STATE(2430), + [sym_schema_instantiation] = STATE(2430), + [sym_lambda_expr] = STATE(2430), + [sym_quant_expr] = STATE(2430), + [sym_quant_op] = STATE(5987), + [sym_dotted_name] = STATE(5201), + [sym_expression] = STATE(4413), + [sym_as_expression] = STATE(2431), + [sym_selector_expression] = STATE(3044), + [sym_primary_expression] = STATE(2985), + [sym_paren_expression] = STATE(2430), + [sym_braces_expression] = STATE(2430), + [sym_not_operator] = STATE(2431), + [sym_boolean_operator] = STATE(2431), + [sym_long_expression] = STATE(2431), + [sym_string_literal_expr] = STATE(2430), + [sym_config_expr] = STATE(2430), + [sym_binary_operator] = STATE(2434), + [sym_unary_operator] = STATE(2430), + [sym_sequence_operation] = STATE(2431), + [sym_in_operation] = STATE(2435), + [sym_not_in_operation] = STATE(2435), + [sym_comparison_operator] = STATE(2431), + [sym_select_suffix] = STATE(2430), + [sym_attribute] = STATE(2430), + [sym_optional_attribute] = STATE(2430), + [sym_optional_attribute_declaration] = STATE(2430), + [sym_optional_item] = STATE(2430), + [sym_null_coalesce] = STATE(2430), + [sym_subscript] = STATE(2434), + [sym_call] = STATE(2350), + [sym_list] = STATE(3256), + [sym_dictionary] = STATE(3256), + [sym_list_comprehension] = STATE(3256), + [sym_dictionary_comprehension] = STATE(3256), + [sym_conditional_expression] = STATE(2431), + [sym_string] = STATE(2430), + [sym_identifier] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_lambda] = ACTIONS(490), + [anon_sym_DASH_GT] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(492), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(738), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(698), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [anon_sym_QMARK_DOT] = ACTIONS(564), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(746), + [sym_integer] = ACTIONS(500), + [sym_float] = ACTIONS(502), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_none] = ACTIONS(500), + [sym_undefined] = ACTIONS(500), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(189), - [sym_string_start] = ACTIONS(700), + [sym_string_start] = ACTIONS(504), }, - [243] = { - [sym_schema_expr] = STATE(3665), - [sym_schema_instantiation] = STATE(3665), - [sym_lambda_expr] = STATE(3665), - [sym_quant_expr] = STATE(3665), - [sym_quant_op] = STATE(6057), - [sym_dotted_name] = STATE(5018), - [sym_expression] = STATE(4746), - [sym_as_expression] = STATE(3671), - [sym_selector_expression] = STATE(3508), - [sym_primary_expression] = STATE(3464), - [sym_paren_expression] = STATE(3665), - [sym_braces_expression] = STATE(3665), - [sym_not_operator] = STATE(3671), - [sym_boolean_operator] = STATE(3671), - [sym_long_expression] = STATE(3671), - [sym_string_literal_expr] = STATE(3665), - [sym_config_expr] = STATE(3665), - [sym_binary_operator] = STATE(3679), - [sym_unary_operator] = STATE(3665), - [sym_sequence_operation] = STATE(3671), - [sym_in_operation] = STATE(3699), - [sym_not_in_operation] = STATE(3699), - [sym_comparison_operator] = STATE(3671), - [sym_select_suffix] = STATE(2606), - [sym_attribute] = STATE(3665), - [sym_optional_attribute] = STATE(3665), - [sym_optional_attribute_declaration] = STATE(3665), - [sym_optional_item] = STATE(3665), - [sym_null_coalesce] = STATE(3665), - [sym_subscript] = STATE(3679), - [sym_call] = STATE(3460), + [260] = { + [sym_schema_expr] = STATE(3706), + [sym_schema_instantiation] = STATE(3706), + [sym_lambda_expr] = STATE(3706), + [sym_quant_expr] = STATE(3706), + [sym_quant_op] = STATE(6316), + [sym_dotted_name] = STATE(5192), + [sym_expression] = STATE(4862), + [sym_as_expression] = STATE(3704), + [sym_selector_expression] = STATE(3628), + [sym_primary_expression] = STATE(3533), + [sym_paren_expression] = STATE(3706), + [sym_braces_expression] = STATE(3706), + [sym_not_operator] = STATE(3704), + [sym_boolean_operator] = STATE(3704), + [sym_long_expression] = STATE(3704), + [sym_string_literal_expr] = STATE(3706), + [sym_config_expr] = STATE(3706), + [sym_binary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3706), + [sym_sequence_operation] = STATE(3704), + [sym_in_operation] = STATE(3702), + [sym_not_in_operation] = STATE(3702), + [sym_comparison_operator] = STATE(3704), + [sym_select_suffix] = STATE(2709), + [sym_attribute] = STATE(3706), + [sym_optional_attribute] = STATE(3706), + [sym_optional_attribute_declaration] = STATE(3706), + [sym_optional_item] = STATE(3706), + [sym_null_coalesce] = STATE(3706), + [sym_subscript] = STATE(3703), + [sym_call] = STATE(3482), [sym_list] = STATE(3701), [sym_dictionary] = STATE(3701), [sym_list_comprehension] = STATE(3701), [sym_dictionary_comprehension] = STATE(3701), - [sym_conditional_expression] = STATE(3671), - [sym_string] = STATE(3665), - [aux_sym_selector_expression_repeat1] = STATE(2266), - [sym_identifier] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(836), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_lambda] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(63), + [sym_conditional_expression] = STATE(3704), + [sym_string] = STATE(3706), + [aux_sym_selector_expression_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1156), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(377), + [anon_sym_lambda] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1109), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(402), - [sym_integer] = ACTIONS(404), - [sym_float] = ACTIONS(406), - [sym_true] = ACTIONS(404), - [sym_false] = ACTIONS(404), - [sym_none] = ACTIONS(404), - [sym_undefined] = ACTIONS(404), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1160), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(387), + [sym_integer] = ACTIONS(389), + [sym_float] = ACTIONS(391), + [sym_true] = ACTIONS(389), + [sym_false] = ACTIONS(389), + [sym_none] = ACTIONS(389), + [sym_undefined] = ACTIONS(389), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(408), + [sym_string_start] = ACTIONS(393), }, - [244] = { - [sym_schema_expr] = STATE(3203), - [sym_schema_instantiation] = STATE(3203), - [sym_lambda_expr] = STATE(3203), - [sym_quant_expr] = STATE(3203), - [sym_quant_op] = STATE(5965), - [sym_dotted_name] = STATE(5014), - [sym_expression] = STATE(4289), - [sym_as_expression] = STATE(3207), - [sym_selector_expression] = STATE(3028), - [sym_primary_expression] = STATE(2840), - [sym_paren_expression] = STATE(3203), - [sym_braces_expression] = STATE(3203), - [sym_not_operator] = STATE(3207), - [sym_boolean_operator] = STATE(3207), - [sym_long_expression] = STATE(3207), - [sym_string_literal_expr] = STATE(3203), - [sym_config_expr] = STATE(3203), - [sym_binary_operator] = STATE(3210), - [sym_unary_operator] = STATE(3203), - [sym_sequence_operation] = STATE(3207), - [sym_in_operation] = STATE(3211), - [sym_not_in_operation] = STATE(3211), - [sym_comparison_operator] = STATE(3207), - [sym_select_suffix] = STATE(3203), - [sym_attribute] = STATE(3203), - [sym_optional_attribute] = STATE(3203), - [sym_optional_attribute_declaration] = STATE(3203), - [sym_optional_item] = STATE(3203), - [sym_null_coalesce] = STATE(3203), - [sym_subscript] = STATE(3210), - [sym_call] = STATE(3027), + [261] = { + [sym_schema_expr] = STATE(3038), + [sym_schema_instantiation] = STATE(3038), + [sym_lambda_expr] = STATE(3038), + [sym_quant_expr] = STATE(3038), + [sym_quant_op] = STATE(6050), + [sym_dotted_name] = STATE(5216), + [sym_expression] = STATE(4436), + [sym_as_expression] = STATE(3041), + [sym_selector_expression] = STATE(3042), + [sym_primary_expression] = STATE(2852), + [sym_paren_expression] = STATE(3038), + [sym_braces_expression] = STATE(3038), + [sym_not_operator] = STATE(3041), + [sym_boolean_operator] = STATE(3041), + [sym_long_expression] = STATE(3041), + [sym_string_literal_expr] = STATE(3038), + [sym_config_expr] = STATE(3038), + [sym_binary_operator] = STATE(3045), + [sym_unary_operator] = STATE(3038), + [sym_sequence_operation] = STATE(3041), + [sym_in_operation] = STATE(3046), + [sym_not_in_operation] = STATE(3046), + [sym_comparison_operator] = STATE(3041), + [sym_select_suffix] = STATE(3038), + [sym_attribute] = STATE(3038), + [sym_optional_attribute] = STATE(3038), + [sym_optional_attribute_declaration] = STATE(3038), + [sym_optional_item] = STATE(3038), + [sym_null_coalesce] = STATE(3038), + [sym_subscript] = STATE(3045), + [sym_call] = STATE(2850), [sym_list] = STATE(3213), [sym_dictionary] = STATE(3213), [sym_list_comprehension] = STATE(3213), [sym_dictionary_comprehension] = STATE(3213), - [sym_conditional_expression] = STATE(3207), - [sym_string] = STATE(3203), - [sym_identifier] = ACTIONS(1371), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_lambda] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(640), + [sym_conditional_expression] = STATE(3041), + [sym_string] = STATE(3038), + [sym_identifier] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(748), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_lambda] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(602), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(742), - [anon_sym_not] = ACTIONS(1377), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_TILDE] = ACTIONS(646), - [sym_integer] = ACTIONS(648), - [sym_float] = ACTIONS(650), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_none] = ACTIONS(648), - [sym_undefined] = ACTIONS(648), + [anon_sym_QMARK_DOT] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1431), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_TILDE] = ACTIONS(608), + [sym_integer] = ACTIONS(610), + [sym_float] = ACTIONS(612), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_none] = ACTIONS(610), + [sym_undefined] = ACTIONS(610), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(652), + [sym__newline] = ACTIONS(133), + [sym_string_start] = ACTIONS(614), }, - [245] = { - [sym_schema_expr] = STATE(2463), - [sym_schema_instantiation] = STATE(2463), - [sym_lambda_expr] = STATE(2463), - [sym_quant_expr] = STATE(2463), - [sym_quant_op] = STATE(5953), - [sym_dotted_name] = STATE(5058), - [sym_expression] = STATE(4404), - [sym_as_expression] = STATE(2459), - [sym_selector_expression] = STATE(3219), - [sym_primary_expression] = STATE(3007), - [sym_paren_expression] = STATE(2463), - [sym_braces_expression] = STATE(2463), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_long_expression] = STATE(2459), - [sym_string_literal_expr] = STATE(2463), - [sym_config_expr] = STATE(2463), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2463), - [sym_sequence_operation] = STATE(2459), - [sym_in_operation] = STATE(2454), - [sym_not_in_operation] = STATE(2454), - [sym_comparison_operator] = STATE(2459), - [sym_select_suffix] = STATE(2463), - [sym_attribute] = STATE(2463), - [sym_optional_attribute] = STATE(2463), - [sym_optional_attribute_declaration] = STATE(2463), - [sym_optional_item] = STATE(2463), - [sym_null_coalesce] = STATE(2463), - [sym_subscript] = STATE(2455), - [sym_call] = STATE(2365), - [sym_list] = STATE(3246), - [sym_dictionary] = STATE(3246), - [sym_list_comprehension] = STATE(3246), - [sym_dictionary_comprehension] = STATE(3246), - [sym_conditional_expression] = STATE(2459), - [sym_string] = STATE(2463), - [sym_identifier] = ACTIONS(1341), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_lambda] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(189), + [262] = { + [sym_schema_expr] = STATE(3228), + [sym_schema_instantiation] = STATE(3228), + [sym_lambda_expr] = STATE(3228), + [sym_quant_expr] = STATE(3228), + [sym_quant_op] = STATE(6041), + [sym_dotted_name] = STATE(5119), + [sym_expression] = STATE(4485), + [sym_as_expression] = STATE(3246), + [sym_selector_expression] = STATE(3102), + [sym_primary_expression] = STATE(2889), + [sym_paren_expression] = STATE(3228), + [sym_braces_expression] = STATE(3228), + [sym_not_operator] = STATE(3246), + [sym_boolean_operator] = STATE(3246), + [sym_long_expression] = STATE(3246), + [sym_string_literal_expr] = STATE(3228), + [sym_config_expr] = STATE(3228), + [sym_binary_operator] = STATE(3232), + [sym_unary_operator] = STATE(3228), + [sym_sequence_operation] = STATE(3246), + [sym_in_operation] = STATE(3242), + [sym_not_in_operation] = STATE(3242), + [sym_comparison_operator] = STATE(3246), + [sym_select_suffix] = STATE(3228), + [sym_attribute] = STATE(3228), + [sym_optional_attribute] = STATE(3228), + [sym_optional_attribute_declaration] = STATE(3228), + [sym_optional_item] = STATE(3228), + [sym_null_coalesce] = STATE(3228), + [sym_subscript] = STATE(3232), + [sym_call] = STATE(3115), + [sym_list] = STATE(3236), + [sym_dictionary] = STATE(3236), + [sym_list_comprehension] = STATE(3236), + [sym_dictionary_comprehension] = STATE(3236), + [sym_conditional_expression] = STATE(3246), + [sym_string] = STATE(3228), + [sym_identifier] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(752), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_else] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_lambda] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(189), - [anon_sym_QMARK_DOT] = ACTIONS(444), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(708), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(432), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_none] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), + [anon_sym_QMARK_DOT] = ACTIONS(754), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(728), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), + [sym_undefined] = ACTIONS(726), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(434), + [sym_string_start] = ACTIONS(730), }, - [246] = { - [sym_schema_expr] = STATE(4160), - [sym_schema_instantiation] = STATE(4160), - [sym_lambda_expr] = STATE(4160), - [sym_quant_expr] = STATE(4160), - [sym_quant_op] = STATE(5996), - [sym_dotted_name] = STATE(5150), - [sym_expression] = STATE(4871), - [sym_as_expression] = STATE(4192), - [sym_selector_expression] = STATE(4004), - [sym_primary_expression] = STATE(3825), - [sym_paren_expression] = STATE(4160), - [sym_braces_expression] = STATE(4160), - [sym_not_operator] = STATE(4192), - [sym_boolean_operator] = STATE(4192), - [sym_long_expression] = STATE(4192), - [sym_string_literal_expr] = STATE(4160), - [sym_config_expr] = STATE(4160), - [sym_binary_operator] = STATE(4239), - [sym_unary_operator] = STATE(4160), - [sym_sequence_operation] = STATE(4192), - [sym_in_operation] = STATE(4220), - [sym_not_in_operation] = STATE(4220), - [sym_comparison_operator] = STATE(4192), - [sym_select_suffix] = STATE(4160), - [sym_attribute] = STATE(4160), - [sym_optional_attribute] = STATE(4160), - [sym_optional_attribute_declaration] = STATE(4160), - [sym_optional_item] = STATE(4160), - [sym_null_coalesce] = STATE(4160), - [sym_subscript] = STATE(4239), - [sym_call] = STATE(3807), - [sym_list] = STATE(4208), - [sym_dictionary] = STATE(4208), - [sym_list_comprehension] = STATE(4208), - [sym_dictionary_comprehension] = STATE(4208), - [sym_conditional_expression] = STATE(4192), - [sym_string] = STATE(4160), - [sym_identifier] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(734), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_lambda] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(191), + [263] = { + [sym_schema_expr] = STATE(4338), + [sym_schema_instantiation] = STATE(4338), + [sym_lambda_expr] = STATE(4338), + [sym_quant_expr] = STATE(4338), + [sym_quant_op] = STATE(6173), + [sym_dotted_name] = STATE(5125), + [sym_expression] = STATE(4987), + [sym_as_expression] = STATE(4327), + [sym_selector_expression] = STATE(4181), + [sym_primary_expression] = STATE(3877), + [sym_paren_expression] = STATE(4338), + [sym_braces_expression] = STATE(4338), + [sym_not_operator] = STATE(4327), + [sym_boolean_operator] = STATE(4327), + [sym_long_expression] = STATE(4327), + [sym_string_literal_expr] = STATE(4338), + [sym_config_expr] = STATE(4338), + [sym_binary_operator] = STATE(4339), + [sym_unary_operator] = STATE(4338), + [sym_sequence_operation] = STATE(4327), + [sym_in_operation] = STATE(4328), + [sym_not_in_operation] = STATE(4328), + [sym_comparison_operator] = STATE(4327), + [sym_select_suffix] = STATE(4338), + [sym_attribute] = STATE(4338), + [sym_optional_attribute] = STATE(4338), + [sym_optional_attribute_declaration] = STATE(4338), + [sym_optional_item] = STATE(4338), + [sym_null_coalesce] = STATE(4338), + [sym_subscript] = STATE(4339), + [sym_call] = STATE(3948), + [sym_list] = STATE(4342), + [sym_dictionary] = STATE(4342), + [sym_list_comprehension] = STATE(4342), + [sym_dictionary_comprehension] = STATE(4342), + [sym_conditional_expression] = STATE(4327), + [sym_string] = STATE(4338), + [sym_identifier] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_lambda] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(734), - [anon_sym_not] = ACTIONS(1351), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [anon_sym_LF] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(572), - [sym_integer] = ACTIONS(574), - [sym_float] = ACTIONS(574), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_none] = ACTIONS(574), - [sym_undefined] = ACTIONS(574), + [anon_sym_QMARK_DOT] = ACTIONS(756), + [anon_sym_not] = ACTIONS(1393), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(654), + [anon_sym_LF] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_TILDE] = ACTIONS(656), + [sym_integer] = ACTIONS(658), + [sym_float] = ACTIONS(658), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_none] = ACTIONS(658), + [sym_undefined] = ACTIONS(658), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(576), + [sym_string_start] = ACTIONS(660), }, - [247] = { - [sym_schema_expr] = STATE(2614), - [sym_schema_instantiation] = STATE(2614), - [sym_lambda_expr] = STATE(2614), - [sym_quant_expr] = STATE(2614), - [sym_quant_op] = STATE(5947), - [sym_dotted_name] = STATE(5088), - [sym_expression] = STATE(4264), - [sym_as_expression] = STATE(2596), - [sym_selector_expression] = STATE(3023), - [sym_primary_expression] = STATE(2835), - [sym_paren_expression] = STATE(2614), - [sym_braces_expression] = STATE(2614), - [sym_not_operator] = STATE(2596), - [sym_boolean_operator] = STATE(2596), - [sym_long_expression] = STATE(2596), - [sym_string_literal_expr] = STATE(2614), - [sym_config_expr] = STATE(2614), - [sym_binary_operator] = STATE(2588), - [sym_unary_operator] = STATE(2614), - [sym_sequence_operation] = STATE(2596), - [sym_in_operation] = STATE(2580), - [sym_not_in_operation] = STATE(2580), - [sym_comparison_operator] = STATE(2596), - [sym_select_suffix] = STATE(2614), - [sym_attribute] = STATE(2614), - [sym_optional_attribute] = STATE(2614), - [sym_optional_attribute_declaration] = STATE(2614), - [sym_optional_item] = STATE(2614), - [sym_null_coalesce] = STATE(2614), - [sym_subscript] = STATE(2588), - [sym_call] = STATE(2396), - [sym_list] = STATE(3222), - [sym_dictionary] = STATE(3222), - [sym_list_comprehension] = STATE(3222), - [sym_dictionary_comprehension] = STATE(3222), - [sym_conditional_expression] = STATE(2596), - [sym_string] = STATE(2614), - [sym_identifier] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(600), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_else] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_lambda] = ACTIONS(514), - [anon_sym_DASH_GT] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(516), + [264] = { + [sym_schema_expr] = STATE(2606), + [sym_schema_instantiation] = STATE(2606), + [sym_lambda_expr] = STATE(2606), + [sym_quant_expr] = STATE(2606), + [sym_quant_op] = STATE(6027), + [sym_dotted_name] = STATE(5117), + [sym_expression] = STATE(4462), + [sym_as_expression] = STATE(2608), + [sym_selector_expression] = STATE(3212), + [sym_primary_expression] = STATE(3176), + [sym_paren_expression] = STATE(2606), + [sym_braces_expression] = STATE(2606), + [sym_not_operator] = STATE(2608), + [sym_boolean_operator] = STATE(2608), + [sym_long_expression] = STATE(2608), + [sym_string_literal_expr] = STATE(2606), + [sym_config_expr] = STATE(2606), + [sym_binary_operator] = STATE(2609), + [sym_unary_operator] = STATE(2606), + [sym_sequence_operation] = STATE(2608), + [sym_in_operation] = STATE(2610), + [sym_not_in_operation] = STATE(2610), + [sym_comparison_operator] = STATE(2608), + [sym_select_suffix] = STATE(2606), + [sym_attribute] = STATE(2606), + [sym_optional_attribute] = STATE(2606), + [sym_optional_attribute_declaration] = STATE(2606), + [sym_optional_item] = STATE(2606), + [sym_null_coalesce] = STATE(2606), + [sym_subscript] = STATE(2609), + [sym_call] = STATE(2436), + [sym_list] = STATE(3284), + [sym_dictionary] = STATE(3284), + [sym_list_comprehension] = STATE(3284), + [sym_dictionary_comprehension] = STATE(3284), + [sym_conditional_expression] = STATE(2608), + [sym_string] = STATE(2606), + [sym_identifier] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_lambda] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(602), - [anon_sym_not] = ACTIONS(1363), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_TILDE] = ACTIONS(662), - [sym_integer] = ACTIONS(524), - [sym_float] = ACTIONS(526), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_none] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), + [anon_sym_STAR_STAR] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(508), + [anon_sym_not] = ACTIONS(1379), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(444), + [sym_true] = ACTIONS(442), + [sym_false] = ACTIONS(442), + [sym_none] = ACTIONS(442), + [sym_undefined] = ACTIONS(442), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(528), + [sym_string_start] = ACTIONS(446), }, - [248] = { - [sym_schema_expr] = STATE(4401), - [sym_schema_instantiation] = STATE(4401), - [sym_lambda_expr] = STATE(4401), - [sym_quant_expr] = STATE(4401), - [sym_quant_op] = STATE(6288), - [sym_dotted_name] = STATE(5116), - [sym_expression] = STATE(4988), - [sym_as_expression] = STATE(4396), - [sym_selector_expression] = STATE(4139), - [sym_primary_expression] = STATE(3862), - [sym_paren_expression] = STATE(4401), - [sym_braces_expression] = STATE(4401), - [sym_not_operator] = STATE(4396), - [sym_boolean_operator] = STATE(4396), - [sym_long_expression] = STATE(4396), - [sym_string_literal_expr] = STATE(4401), - [sym_config_expr] = STATE(4401), - [sym_binary_operator] = STATE(4390), - [sym_unary_operator] = STATE(4401), - [sym_sequence_operation] = STATE(4396), - [sym_in_operation] = STATE(4382), - [sym_not_in_operation] = STATE(4382), - [sym_comparison_operator] = STATE(4396), - [sym_select_suffix] = STATE(4401), - [sym_attribute] = STATE(4401), - [sym_optional_attribute] = STATE(4401), - [sym_optional_attribute_declaration] = STATE(4401), - [sym_optional_item] = STATE(4401), - [sym_null_coalesce] = STATE(4401), - [sym_subscript] = STATE(4390), - [sym_call] = STATE(3874), - [sym_list] = STATE(4378), - [sym_dictionary] = STATE(4378), - [sym_list_comprehension] = STATE(4378), - [sym_dictionary_comprehension] = STATE(4378), - [sym_conditional_expression] = STATE(4396), - [sym_string] = STATE(4401), + [265] = { + [sym_schema_expr] = STATE(4257), + [sym_schema_instantiation] = STATE(4257), + [sym_lambda_expr] = STATE(4257), + [sym_quant_expr] = STATE(4257), + [sym_quant_op] = STATE(6471), + [sym_dotted_name] = STATE(5088), + [sym_expression] = STATE(5007), + [sym_as_expression] = STATE(4259), + [sym_selector_expression] = STATE(4260), + [sym_primary_expression] = STATE(3976), + [sym_paren_expression] = STATE(4257), + [sym_braces_expression] = STATE(4257), + [sym_not_operator] = STATE(4259), + [sym_boolean_operator] = STATE(4259), + [sym_long_expression] = STATE(4259), + [sym_string_literal_expr] = STATE(4257), + [sym_config_expr] = STATE(4257), + [sym_binary_operator] = STATE(4261), + [sym_unary_operator] = STATE(4257), + [sym_sequence_operation] = STATE(4259), + [sym_in_operation] = STATE(4262), + [sym_not_in_operation] = STATE(4262), + [sym_comparison_operator] = STATE(4259), + [sym_select_suffix] = STATE(4257), + [sym_attribute] = STATE(4257), + [sym_optional_attribute] = STATE(4257), + [sym_optional_attribute_declaration] = STATE(4257), + [sym_optional_item] = STATE(4257), + [sym_null_coalesce] = STATE(4257), + [sym_subscript] = STATE(4261), + [sym_call] = STATE(3968), + [sym_list] = STATE(4501), + [sym_dictionary] = STATE(4501), + [sym_list_comprehension] = STATE(4501), + [sym_dictionary_comprehension] = STATE(4501), + [sym_conditional_expression] = STATE(4259), + [sym_string] = STATE(4257), [sym_identifier] = ACTIONS(9), [anon_sym_DOT] = ACTIONS(13), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_lambda] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_all] = ACTIONS(29), @@ -38814,8 +40763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_map] = ACTIONS(29), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_DQUOTE] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(47), @@ -38828,13843 +40777,14123 @@ 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(189), + [sym__newline] = ACTIONS(133), [sym_string_start] = ACTIONS(55), }, - [249] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4952), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [266] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(5070), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(698), }, - [250] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5113), - [sym_expression] = STATE(5206), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3446), - [sym_primary_expression] = STATE(4370), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(2896), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3485), - [sym_dictionary] = STATE(3485), - [sym_list_comprehension] = STATE(3485), - [sym_dictionary_comprehension] = STATE(3485), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_selector_expression_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(59), - [anon_sym_as] = ACTIONS(59), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), + [267] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5182), + [sym_expression] = STATE(5257), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3458), + [sym_primary_expression] = STATE(4486), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(2836), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3543), + [sym_dictionary] = STATE(3543), + [sym_list_comprehension] = STATE(3543), + [sym_dictionary_comprehension] = STATE(3543), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_selector_expression_repeat1] = STATE(2322), + [sym_identifier] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(61), + [anon_sym_as] = ACTIONS(61), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(59), - [anon_sym_or] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_TILDE] = ACTIONS(750), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_QMARK_DOT] = ACTIONS(57), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(61), + [anon_sym_or] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [251] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(4995), - [sym_expression] = STATE(4863), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3981), - [sym_primary_expression] = STATE(3761), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(4111), - [sym_list] = STATE(4187), - [sym_dictionary] = STATE(4187), - [sym_list_comprehension] = STATE(4187), - [sym_dictionary_comprehension] = STATE(4187), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_DASH_GT] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(492), + [268] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5180), + [sym_expression] = STATE(4957), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(4246), + [sym_primary_expression] = STATE(3820), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(4216), + [sym_list] = STATE(4256), + [sym_dictionary] = STATE(4256), + [sym_list_comprehension] = STATE(4256), + [sym_dictionary_comprehension] = STATE(4256), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_DASH_GT] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(468), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1369), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(622), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_TILDE] = ACTIONS(672), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [252] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1397), + [269] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(283), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1439), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [253] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5471), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5338), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1403), + [270] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5583), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5420), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1445), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [254] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [271] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [sym_identifier] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_lambda] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_all] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_filter] = ACTIONS(1469), + [anon_sym_map] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1472), + [anon_sym_QMARK_DOT] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1481), + [sym_integer] = ACTIONS(1487), + [sym_float] = ACTIONS(1490), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [sym_none] = ACTIONS(1487), + [sym_undefined] = ACTIONS(1487), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(1493), }, - [255] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5623), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5305), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1411), + [272] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5523), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5364), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1498), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [256] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5680), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5268), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1415), + [273] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1500), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [257] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1417), + [274] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1502), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [258] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1419), + [275] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5555), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5555), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1506), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [259] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5465), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5465), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1423), + [276] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5678), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5361), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1510), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [260] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1425), + [277] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(295), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1512), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [261] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1427), + [278] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5583), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5583), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1445), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [262] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1429), + [279] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5733), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5375), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1516), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [263] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1431), + [280] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(313), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1518), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [264] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5441), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5441), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1435), + [281] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1520), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [265] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1437), + [282] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5694), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5412), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1524), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [266] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [283] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1526), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [267] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5564), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5341), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1443), + [284] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5767), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5387), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1530), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [268] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1445), + [285] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1532), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [269] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5568), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5290), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1449), + [286] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1534), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [270] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [287] = { + [sym_dict_expr] = STATE(1276), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1540), + [anon_sym_QMARK_COLON] = ACTIONS(1542), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [288] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1544), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), - }, - [271] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_lambda] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_all] = ACTIONS(1473), - [anon_sym_any] = ACTIONS(1473), - [anon_sym_filter] = ACTIONS(1473), - [anon_sym_map] = ACTIONS(1473), - [anon_sym_STAR_STAR] = ACTIONS(1476), - [anon_sym_QMARK_DOT] = ACTIONS(1479), - [anon_sym_not] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [sym_integer] = ACTIONS(1491), - [sym_float] = ACTIONS(1494), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_none] = ACTIONS(1491), - [sym_undefined] = ACTIONS(1491), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(1497), + [sym_string_start] = ACTIONS(480), }, - [272] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1500), + [289] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5555), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5397), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1506), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [273] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5564), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5564), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1443), + [290] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5708), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5382), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [274] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(286), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1502), + [291] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1550), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [275] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5465), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5332), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1423), + [292] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1552), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [276] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5523), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5523), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1506), + [293] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1554), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [277] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(283), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1508), + [294] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5713), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5713), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1558), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [278] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [295] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1560), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [279] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5523), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5298), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1506), + [296] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(288), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1562), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [280] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5539), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5539), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1514), + [297] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5767), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5767), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1530), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [281] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(254), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1516), + [298] = { + [sym_dict_expr] = STATE(1357), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1564), + [anon_sym_QMARK_COLON] = ACTIONS(1566), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [299] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5735), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5355), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1570), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [282] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1518), + [300] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5759), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5362), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1574), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [283] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [301] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1576), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [284] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5489), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5489), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1524), + [302] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1578), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [285] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5532), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5289), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1528), + [303] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1580), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [286] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [304] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1582), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [287] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1532), + [305] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5627), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5406), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1586), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [288] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5539), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5336), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1514), + [306] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1588), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [289] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5492), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5325), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1536), + [307] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5728), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5431), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1592), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [290] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5526), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5284), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1540), + [308] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5713), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5398), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1558), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [291] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1542), + [309] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5693), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5424), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1596), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [292] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1544), + [310] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1598), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [293] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1546), + [311] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1600), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [294] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1548), + [312] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1602), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [295] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(278), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1550), + [313] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1604), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [296] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [314] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1606), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [297] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(270), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1554), + [315] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1608), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [298] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5548), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5277), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1558), + [316] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1610), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [299] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5531), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5270), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1562), + [317] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1612), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [300] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5481), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5321), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1566), + [318] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5523), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5523), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1498), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [301] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5441), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5265), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1435), + [319] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5681), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5396), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1616), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [302] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [320] = { + [sym_dict_expr] = STATE(1357), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(881), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1564), + [anon_sym_QMARK_COLON] = ACTIONS(1566), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym__newline] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [303] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(309), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1570), + [321] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1618), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [304] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(308), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1572), + [322] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5627), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5627), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1586), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [305] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1574), + [323] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5703), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1622), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [306] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5489), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5274), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1524), + [324] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1624), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [307] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5510), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5292), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1578), + [325] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1626), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [308] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), + [326] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1628), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [309] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(4417), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4859), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(4417), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [aux_sym_dict_expr_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1582), + [327] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5765), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5432), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1632), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1399), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [310] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dotted_name] = STATE(5113), - [sym_expression] = STATE(5166), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3446), - [sym_primary_expression] = STATE(4370), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3485), - [sym_dictionary] = STATE(3485), - [sym_list_comprehension] = STATE(3485), - [sym_dictionary_comprehension] = STATE(3485), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_as] = ACTIONS(191), - [anon_sym_if] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), + [328] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1634), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(191), - [anon_sym_or] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_TILDE] = ACTIONS(750), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [311] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1584), + [329] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(4512), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4935), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(4512), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [aux_sym_dict_expr_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1636), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1441), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [312] = { - [sym_dict_expr] = STATE(2075), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1590), - [anon_sym_QMARK_COLON] = ACTIONS(1592), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [330] = { + [sym_dict_expr] = STATE(1276), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(997), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1540), + [anon_sym_QMARK_COLON] = ACTIONS(1542), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym__newline] = ACTIONS(1538), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [313] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1594), + [331] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4864), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(5954), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [314] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1596), + [332] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1640), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [315] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4767), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6320), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1598), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [333] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4855), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6218), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [316] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1600), + [334] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4868), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6233), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [317] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1602), + [335] = { + [sym_dict_expr] = STATE(2155), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1646), + [anon_sym_QMARK_COLON] = ACTIONS(1648), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [336] = { + [sym_dict_expr] = STATE(2228), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1650), + [anon_sym_QMARK_COLON] = ACTIONS(1652), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1538), + }, + [337] = { + [sym_dict_expr] = STATE(1276), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(1543), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1654), + [anon_sym_QMARK_COLON] = ACTIONS(1542), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [338] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1656), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [318] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1604), + [339] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1658), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [319] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4750), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5890), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [340] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1660), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), - }, - [320] = { - [sym_dict_expr] = STATE(2019), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1608), - [anon_sym_QMARK_COLON] = ACTIONS(1610), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(480), }, - [321] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1612), + [341] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4871), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6366), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1357), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [322] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1614), + [342] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1662), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [323] = { - [sym_dict_expr] = STATE(2075), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(1479), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1590), - [anon_sym_QMARK_COLON] = ACTIONS(1592), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [343] = { + [sym_dict_expr] = STATE(2228), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(1590), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1650), + [anon_sym_QMARK_COLON] = ACTIONS(1652), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1538), }, - [324] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4755), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6233), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1616), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [344] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1664), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [325] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1618), + [345] = { + [sym_dict_expr] = STATE(1357), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1666), + [anon_sym_QMARK_COLON] = ACTIONS(1566), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [346] = { + [sym_dict_expr] = STATE(2155), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1646), + [anon_sym_QMARK_COLON] = ACTIONS(1648), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [347] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1668), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [326] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1620), + [348] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1670), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [327] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4768), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6163), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1622), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [349] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1672), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [328] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1624), + [350] = { + [sym_dict_expr] = STATE(1357), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1666), + [anon_sym_QMARK_COLON] = ACTIONS(1566), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [351] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1674), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [329] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1626), + [352] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1676), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [330] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4749), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6104), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1628), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [353] = { + [sym_dict_expr] = STATE(1276), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(3218), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1540), + [anon_sym_QMARK_COLON] = ACTIONS(1542), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [354] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1678), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [331] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1630), + [355] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4870), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6390), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1680), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [332] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1632), + [356] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4841), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6167), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [333] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1634), + [357] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1684), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [334] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1636), + [358] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4853), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6005), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1686), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [335] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4741), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6081), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1638), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [359] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1688), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [336] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1640), + [360] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4866), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(5939), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1690), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [337] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1642), + [361] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1692), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [338] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4765), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5930), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1644), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [362] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1694), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [339] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1646), + [363] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4867), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6148), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [340] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1648), + [364] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4861), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6338), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1698), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [341] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1650), + [365] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4847), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(5916), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [342] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1652), + [366] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dotted_name] = STATE(5182), + [sym_expression] = STATE(5253), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3458), + [sym_primary_expression] = STATE(4486), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3543), + [sym_dictionary] = STATE(3543), + [sym_list_comprehension] = STATE(3543), + [sym_dictionary_comprehension] = STATE(3543), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_as] = ACTIONS(129), + [anon_sym_if] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(129), + [anon_sym_or] = ACTIONS(129), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [343] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1654), + [367] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1702), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [344] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4752), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5851), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1656), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [368] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4838), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6061), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(1706), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [345] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4745), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6272), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1658), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [369] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4837), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6462), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [346] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4766), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5873), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1660), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [370] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1710), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [347] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1662), + [371] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1712), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [348] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4764), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6142), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [372] = { + [sym_dict_expr] = STATE(1276), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1654), + [anon_sym_QMARK_COLON] = ACTIONS(1542), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1538), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), + }, + [373] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1714), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [349] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1664), + [374] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1716), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), - }, - [350] = { - [sym_dict_expr] = STATE(2019), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(3104), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1608), - [anon_sym_QMARK_COLON] = ACTIONS(1610), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(480), }, - [351] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1666), + [375] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1718), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [352] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4749), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6104), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1628), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [376] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1720), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(1668), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [353] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1670), + [377] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1722), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [354] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4744), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5869), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1672), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [378] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1724), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [355] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4756), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6321), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1674), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [379] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4852), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6244), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [356] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4762), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5902), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1676), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [380] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1728), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [357] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1678), + [381] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [358] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1680), + [382] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4863), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6292), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1732), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [359] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4758), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(5989), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1682), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [383] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1734), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [360] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1684), + [384] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1736), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [361] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1686), + [385] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1738), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), - }, - [362] = { - [sym_dict_expr] = STATE(2019), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(4731), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1608), - [anon_sym_QMARK_COLON] = ACTIONS(1610), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(480), }, - [363] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1688), + [386] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1740), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [364] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1690), + [387] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1742), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(480), }, - [365] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4747), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6201), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1692), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [388] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1744), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [366] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_list_splat] = STATE(5593), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4760), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym__collection_elements] = STATE(6106), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1694), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [389] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(1746), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(480), }, - [367] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(1696), + [390] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4838), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6061), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [368] = { - [sym_dict_expr] = STATE(2075), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(3166), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1590), - [anon_sym_QMARK_COLON] = ACTIONS(1592), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [391] = { + [sym_dict_expr] = STATE(1357), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(3203), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1564), + [anon_sym_QMARK_COLON] = ACTIONS(1566), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym__newline] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [369] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4852), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5537), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [392] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4854), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6454), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [370] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1706), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [393] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_list_splat] = STATE(5776), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4840), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym__collection_elements] = STATE(6044), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1750), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [371] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1708), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [394] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [372] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1710), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [395] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [373] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1712), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [396] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4964), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5746), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [374] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4904), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_COLON] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1714), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [397] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1764), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [375] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4888), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5585), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [398] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [376] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1722), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [399] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1768), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [377] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1724), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [400] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4999), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5667), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [378] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1726), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [401] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [379] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4898), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5653), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [402] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [380] = { - [sym_dict_expr] = STATE(2075), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(3244), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1732), - [anon_sym_QMARK_COLON] = ACTIONS(1592), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [403] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(560), }, - [381] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4857), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_COLON] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [404] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [382] = { - [sym_dict_expr] = STATE(2197), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(3238), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1738), - [anon_sym_QMARK_COLON] = ACTIONS(1740), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [405] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4939), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(560), }, - [383] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4887), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5514), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [406] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [384] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [407] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1788), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [385] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1748), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [408] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [386] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1750), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [409] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [387] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [410] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [388] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [411] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1796), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [389] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4832), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5578), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [412] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [390] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1760), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [413] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1800), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [391] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1762), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [414] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4998), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5573), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [392] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1764), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [415] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [393] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [416] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1808), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [394] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4841), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5447), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [417] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [395] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [418] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1812), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [396] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1774), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [419] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1814), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [397] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4853), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5445), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [420] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [398] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [421] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [399] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [422] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4972), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5783), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [400] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1784), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [423] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [401] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [424] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1826), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [402] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4834), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5576), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [425] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4952), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COMMA] = ACTIONS(1828), + [anon_sym_COLON] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1828), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [403] = { - [sym_dict_expr] = STATE(2019), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(3236), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1610), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [426] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4921), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5668), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(698), }, - [404] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4905), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5551), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [427] = { + [sym_schema_expr] = STATE(3568), + [sym_schema_instantiation] = STATE(3568), + [sym_lambda_expr] = STATE(3568), + [sym_quant_expr] = STATE(3568), + [sym_quant_op] = STATE(6206), + [sym_dictionary_splat] = STATE(5891), + [sym_dotted_name] = STATE(5162), + [sym_expression] = STATE(4996), + [sym_as_expression] = STATE(3549), + [sym_selector_expression] = STATE(3739), + [sym_primary_expression] = STATE(3616), + [sym_paren_expression] = STATE(3568), + [sym_braces_expression] = STATE(3568), + [sym_not_operator] = STATE(3549), + [sym_boolean_operator] = STATE(3549), + [sym_long_expression] = STATE(3549), + [sym_string_literal_expr] = STATE(3568), + [sym_config_expr] = STATE(3568), + [sym_binary_operator] = STATE(3565), + [sym_unary_operator] = STATE(3568), + [sym_sequence_operation] = STATE(3549), + [sym_in_operation] = STATE(3559), + [sym_not_in_operation] = STATE(3559), + [sym_comparison_operator] = STATE(3549), + [sym_select_suffix] = STATE(3568), + [sym_attribute] = STATE(3568), + [sym_optional_attribute] = STATE(3568), + [sym_optional_attribute_declaration] = STATE(3568), + [sym_optional_item] = STATE(3568), + [sym_null_coalesce] = STATE(3568), + [sym_subscript] = STATE(3565), + [sym_call] = STATE(3593), + [sym_list] = STATE(3884), + [sym_dictionary] = STATE(3884), + [sym_pair] = STATE(5891), + [sym_list_comprehension] = STATE(3884), + [sym_dictionary_comprehension] = STATE(3884), + [sym_conditional_expression] = STATE(3549), + [sym_string] = STATE(3568), + [sym_identifier] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_lambda] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(468), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_not] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [sym_integer] = ACTIONS(476), + [sym_float] = ACTIONS(478), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_none] = ACTIONS(476), + [sym_undefined] = ACTIONS(476), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(480), }, - [405] = { - [sym_schema_expr] = STATE(3535), - [sym_schema_instantiation] = STATE(3535), - [sym_lambda_expr] = STATE(3535), - [sym_quant_expr] = STATE(3535), - [sym_quant_op] = STATE(6002), - [sym_dictionary_splat] = STATE(5719), - [sym_dotted_name] = STATE(5123), - [sym_expression] = STATE(4855), - [sym_as_expression] = STATE(3542), - [sym_selector_expression] = STATE(3781), - [sym_primary_expression] = STATE(3657), - [sym_paren_expression] = STATE(3535), - [sym_braces_expression] = STATE(3535), - [sym_not_operator] = STATE(3542), - [sym_boolean_operator] = STATE(3542), - [sym_long_expression] = STATE(3542), - [sym_string_literal_expr] = STATE(3535), - [sym_config_expr] = STATE(3535), - [sym_binary_operator] = STATE(3547), - [sym_unary_operator] = STATE(3535), - [sym_sequence_operation] = STATE(3542), - [sym_in_operation] = STATE(3560), - [sym_not_in_operation] = STATE(3560), - [sym_comparison_operator] = STATE(3542), - [sym_select_suffix] = STATE(3535), - [sym_attribute] = STATE(3535), - [sym_optional_attribute] = STATE(3535), - [sym_optional_attribute_declaration] = STATE(3535), - [sym_optional_item] = STATE(3535), - [sym_null_coalesce] = STATE(3535), - [sym_subscript] = STATE(3547), - [sym_call] = STATE(3663), - [sym_list] = STATE(3939), - [sym_dictionary] = STATE(3939), - [sym_pair] = STATE(5719), - [sym_list_comprehension] = STATE(3939), - [sym_dictionary_comprehension] = STATE(3939), - [sym_conditional_expression] = STATE(3542), - [sym_string] = STATE(3535), - [sym_identifier] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_lambda] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(492), + [428] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_QMARK_DOT] = ACTIONS(674), - [anon_sym_not] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [sym_integer] = ACTIONS(500), - [sym_float] = ACTIONS(502), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_none] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(504), + [sym_string_start] = ACTIONS(560), }, - [406] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [429] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1838), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [407] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [430] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4959), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5715), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [408] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [431] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4965), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5793), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [409] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1804), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [432] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [410] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1806), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [433] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1850), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [411] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [434] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [412] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [435] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4933), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5608), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [413] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4843), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5688), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [436] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1858), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [414] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4860), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5572), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [437] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1860), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [415] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [438] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [416] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1822), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [439] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4971), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5761), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [417] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [440] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4991), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5655), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [418] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1826), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [441] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4950), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5752), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [419] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [442] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [420] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4879), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5602), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [443] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4953), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5641), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(698), }, - [421] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [444] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [422] = { - [sym_dict_expr] = STATE(2185), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(3235), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1836), - [anon_sym_QMARK_COLON] = ACTIONS(1838), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [445] = { + [sym_dict_expr] = STATE(1357), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(3285), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1666), + [anon_sym_QMARK_COLON] = ACTIONS(1566), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(1588), + [sym__newline] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [423] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [446] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4997), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5559), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [424] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [447] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [425] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1844), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [448] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [426] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [449] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4931), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5591), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [427] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4856), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5674), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [450] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [428] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4878), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5545), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [451] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4932), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5611), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(698), }, - [429] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1856), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [452] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1902), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [430] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1858), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [453] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [431] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [454] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4955), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5548), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [432] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1862), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [455] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1910), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [433] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1864), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [456] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1912), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [434] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [457] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), - }, - [435] = { - [sym_dict_expr] = STATE(2185), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(4731), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1836), - [anon_sym_QMARK_COLON] = ACTIONS(1838), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(560), }, - [436] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1868), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [458] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [437] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4886), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5659), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [459] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1918), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [438] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4830), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5473), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [460] = { + [sym_dict_expr] = STATE(2228), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(3280), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1650), + [anon_sym_QMARK_COLON] = ACTIONS(1652), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(1538), }, - [439] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1878), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [461] = { + [sym_schema_expr] = STATE(4398), + [sym_schema_instantiation] = STATE(4398), + [sym_lambda_expr] = STATE(4398), + [sym_quant_expr] = STATE(4398), + [sym_quant_op] = STATE(6329), + [sym_dotted_name] = STATE(5205), + [sym_expression] = STATE(4993), + [sym_as_expression] = STATE(4397), + [sym_selector_expression] = STATE(4309), + [sym_primary_expression] = STATE(4095), + [sym_paren_expression] = STATE(4398), + [sym_braces_expression] = STATE(4398), + [sym_not_operator] = STATE(4397), + [sym_boolean_operator] = STATE(4397), + [sym_long_expression] = STATE(4397), + [sym_string_literal_expr] = STATE(4398), + [sym_config_expr] = STATE(4398), + [sym_binary_operator] = STATE(4406), + [sym_unary_operator] = STATE(4398), + [sym_sequence_operation] = STATE(4397), + [sym_in_operation] = STATE(4407), + [sym_not_in_operation] = STATE(4407), + [sym_comparison_operator] = STATE(4397), + [sym_select_suffix] = STATE(4398), + [sym_attribute] = STATE(4398), + [sym_optional_attribute] = STATE(4398), + [sym_optional_attribute_declaration] = STATE(4398), + [sym_optional_item] = STATE(4398), + [sym_null_coalesce] = STATE(4398), + [sym_subscript] = STATE(4406), + [sym_call] = STATE(4096), + [sym_keyword_argument] = STATE(5579), + [sym_list] = STATE(4409), + [sym_dictionary] = STATE(4409), + [sym_list_comprehension] = STATE(4409), + [sym_dictionary_comprehension] = STATE(4409), + [sym_conditional_expression] = STATE(4397), + [sym_string] = STATE(4398), + [sym_identifier] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_lambda] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(760), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(692), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(696), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_none] = ACTIONS(694), + [sym_undefined] = ACTIONS(694), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(698), }, - [440] = { - [sym_dict_expr] = STATE(2019), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(4731), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1610), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [462] = { + [sym_dict_expr] = STATE(2155), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(3282), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1646), + [anon_sym_QMARK_COLON] = ACTIONS(1648), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [441] = { - [sym_schema_expr] = STATE(4260), - [sym_schema_instantiation] = STATE(4260), - [sym_lambda_expr] = STATE(4260), - [sym_quant_expr] = STATE(4260), - [sym_quant_op] = STATE(6132), - [sym_dotted_name] = STATE(5012), - [sym_expression] = STATE(4861), - [sym_as_expression] = STATE(4268), - [sym_selector_expression] = STATE(4214), - [sym_primary_expression] = STATE(4056), - [sym_paren_expression] = STATE(4260), - [sym_braces_expression] = STATE(4260), - [sym_not_operator] = STATE(4268), - [sym_boolean_operator] = STATE(4268), - [sym_long_expression] = STATE(4268), - [sym_string_literal_expr] = STATE(4260), - [sym_config_expr] = STATE(4260), - [sym_binary_operator] = STATE(4296), - [sym_unary_operator] = STATE(4260), - [sym_sequence_operation] = STATE(4268), - [sym_in_operation] = STATE(4297), - [sym_not_in_operation] = STATE(4297), - [sym_comparison_operator] = STATE(4268), - [sym_select_suffix] = STATE(4260), - [sym_attribute] = STATE(4260), - [sym_optional_attribute] = STATE(4260), - [sym_optional_attribute_declaration] = STATE(4260), - [sym_optional_item] = STATE(4260), - [sym_null_coalesce] = STATE(4260), - [sym_subscript] = STATE(4296), - [sym_call] = STATE(4082), - [sym_keyword_argument] = STATE(5496), - [sym_list] = STATE(4299), - [sym_dictionary] = STATE(4299), - [sym_list_comprehension] = STATE(4299), - [sym_dictionary_comprehension] = STATE(4299), - [sym_conditional_expression] = STATE(4268), - [sym_string] = STATE(4260), - [sym_identifier] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_lambda] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(720), + [463] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1924), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(754), - [anon_sym_not] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_TILDE] = ACTIONS(726), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(730), - [sym_true] = ACTIONS(728), - [sym_false] = ACTIONS(728), - [sym_none] = ACTIONS(728), - [sym_undefined] = ACTIONS(728), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(732), + [sym_string_start] = ACTIONS(560), }, - [442] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_all] = ACTIONS(29), - [anon_sym_any] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(29), - [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [464] = { + [sym_dict_expr] = STATE(2228), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(2135), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1926), + [anon_sym_QMARK_COLON] = ACTIONS(1652), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(1538), }, - [443] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1886), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [465] = { + [sym_dict_expr] = STATE(2228), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1926), + [anon_sym_QMARK_COLON] = ACTIONS(1652), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1538), + }, + [466] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1928), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), - }, - [444] = { - [sym_dict_expr] = STATE(2185), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(2003), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1836), - [anon_sym_QMARK_COLON] = ACTIONS(1838), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(560), }, - [445] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [467] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1930), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), + [sym_string_start] = ACTIONS(560), }, - [446] = { - [sym_dict_expr] = STATE(2019), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(2028), - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1610), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [468] = { + [sym_dict_expr] = STATE(2155), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(4824), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1932), + [anon_sym_QMARK_COLON] = ACTIONS(1648), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [447] = { - [sym_dict_expr] = STATE(2197), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1738), - [anon_sym_QMARK_COLON] = ACTIONS(1740), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [469] = { + [sym_dict_expr] = STATE(1276), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(3291), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1654), + [anon_sym_QMARK_COLON] = ACTIONS(1542), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym__newline] = ACTIONS(1538), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, - [448] = { - [sym_schema_expr] = STATE(3903), - [sym_schema_instantiation] = STATE(3903), - [sym_lambda_expr] = STATE(3903), - [sym_quant_expr] = STATE(3903), - [sym_quant_op] = STATE(6118), - [sym_dotted_name] = STATE(5075), - [sym_expression] = STATE(4907), - [sym_as_expression] = STATE(3904), - [sym_selector_expression] = STATE(3727), - [sym_primary_expression] = STATE(3716), - [sym_paren_expression] = STATE(3903), - [sym_braces_expression] = STATE(3903), - [sym_not_operator] = STATE(3904), - [sym_boolean_operator] = STATE(3904), - [sym_long_expression] = STATE(3904), - [sym_string_literal_expr] = STATE(3903), - [sym_config_expr] = STATE(3903), - [sym_binary_operator] = STATE(3920), - [sym_unary_operator] = STATE(3903), - [sym_sequence_operation] = STATE(3904), - [sym_in_operation] = STATE(3921), - [sym_not_in_operation] = STATE(3921), - [sym_comparison_operator] = STATE(3904), - [sym_select_suffix] = STATE(3903), - [sym_attribute] = STATE(3903), - [sym_optional_attribute] = STATE(3903), - [sym_optional_attribute_declaration] = STATE(3903), - [sym_optional_item] = STATE(3903), - [sym_null_coalesce] = STATE(3903), - [sym_subscript] = STATE(3920), - [sym_slice] = STATE(5767), - [sym_call] = STATE(3719), - [sym_list] = STATE(3929), - [sym_dictionary] = STATE(3929), - [sym_list_comprehension] = STATE(3929), - [sym_dictionary_comprehension] = STATE(3929), - [sym_conditional_expression] = STATE(3904), - [sym_string] = STATE(3903), - [sym_identifier] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(1890), - [anon_sym_lambda] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(540), + [470] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_all] = ACTIONS(29), [anon_sym_any] = ACTIONS(29), [anon_sym_filter] = ACTIONS(29), [anon_sym_map] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(626), - [anon_sym_not] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(546), - [sym_integer] = ACTIONS(548), - [sym_float] = ACTIONS(550), - [sym_true] = ACTIONS(548), - [sym_false] = ACTIONS(548), - [sym_none] = ACTIONS(548), - [sym_undefined] = ACTIONS(548), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(552), - }, - [449] = { - [sym_dict_expr] = STATE(2075), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(4731), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1732), - [anon_sym_QMARK_COLON] = ACTIONS(1592), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(560), }, - [450] = { - [sym_dict_expr] = STATE(2197), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(1971), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1738), - [anon_sym_QMARK_COLON] = ACTIONS(1740), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [471] = { + [sym_schema_expr] = STATE(4117), + [sym_schema_instantiation] = STATE(4117), + [sym_lambda_expr] = STATE(4117), + [sym_quant_expr] = STATE(4117), + [sym_quant_op] = STATE(6322), + [sym_dotted_name] = STATE(5220), + [sym_expression] = STATE(4928), + [sym_as_expression] = STATE(4118), + [sym_selector_expression] = STATE(3900), + [sym_primary_expression] = STATE(3779), + [sym_paren_expression] = STATE(4117), + [sym_braces_expression] = STATE(4117), + [sym_not_operator] = STATE(4118), + [sym_boolean_operator] = STATE(4118), + [sym_long_expression] = STATE(4118), + [sym_string_literal_expr] = STATE(4117), + [sym_config_expr] = STATE(4117), + [sym_binary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4117), + [sym_sequence_operation] = STATE(4118), + [sym_in_operation] = STATE(4120), + [sym_not_in_operation] = STATE(4120), + [sym_comparison_operator] = STATE(4118), + [sym_select_suffix] = STATE(4117), + [sym_attribute] = STATE(4117), + [sym_optional_attribute] = STATE(4117), + [sym_optional_attribute_declaration] = STATE(4117), + [sym_optional_item] = STATE(4117), + [sym_null_coalesce] = STATE(4117), + [sym_subscript] = STATE(4119), + [sym_slice] = STATE(5863), + [sym_call] = STATE(3778), + [sym_list] = STATE(4121), + [sym_dictionary] = STATE(4121), + [sym_list_comprehension] = STATE(4121), + [sym_dictionary_comprehension] = STATE(4121), + [sym_conditional_expression] = STATE(4118), + [sym_string] = STATE(4117), + [sym_identifier] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(734), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(1936), + [anon_sym_lambda] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_all] = ACTIONS(29), + [anon_sym_any] = ACTIONS(29), + [anon_sym_filter] = ACTIONS(29), + [anon_sym_map] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(736), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [sym_integer] = ACTIONS(556), + [sym_float] = ACTIONS(558), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_none] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym_string_start] = ACTIONS(560), }, - [451] = { - [sym_dict_expr] = STATE(2075), - [aux_sym_dotted_name_repeat1] = STATE(4412), - [aux_sym_comparison_operator_repeat1] = STATE(1937), - [sym_identifier] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_rule] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_all] = ACTIONS(1586), - [anon_sym_any] = ACTIONS(1586), - [anon_sym_filter] = ACTIONS(1586), - [anon_sym_map] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_STAR_STAR] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_schema] = ACTIONS(1586), - [anon_sym_mixin] = ACTIONS(1586), - [anon_sym_protocol] = ACTIONS(1586), - [anon_sym_check] = ACTIONS(1586), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_QMARK_DOT] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_and] = ACTIONS(1586), - [anon_sym_or] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_SLASH_SLASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT_LT] = ACTIONS(1588), - [anon_sym_GT_GT] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_LT_EQ] = ACTIONS(1588), - [anon_sym_EQ_EQ] = ACTIONS(1588), - [anon_sym_BANG_EQ] = ACTIONS(1588), - [anon_sym_GT_EQ] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1586), - [anon_sym_is] = ACTIONS(1586), - [sym_isMutableFlag] = ACTIONS(1732), - [anon_sym_QMARK_COLON] = ACTIONS(1592), - [anon_sym_QMARK_LBRACK] = ACTIONS(1588), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_none] = ACTIONS(1586), - [sym_undefined] = ACTIONS(1586), + [472] = { + [sym_dict_expr] = STATE(2155), + [aux_sym_dotted_name_repeat1] = STATE(4447), + [aux_sym_comparison_operator_repeat1] = STATE(2125), + [sym_identifier] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_assert] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_rule] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_lambda] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_all] = ACTIONS(1536), + [anon_sym_any] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1536), + [anon_sym_map] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_STAR_STAR] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_schema] = ACTIONS(1536), + [anon_sym_mixin] = ACTIONS(1536), + [anon_sym_protocol] = ACTIONS(1536), + [anon_sym_check] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_QMARK_DOT] = ACTIONS(1538), + [anon_sym_not] = ACTIONS(1536), + [anon_sym_and] = ACTIONS(1536), + [anon_sym_or] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_is] = ACTIONS(1536), + [sym_isMutableFlag] = ACTIONS(1932), + [anon_sym_QMARK_COLON] = ACTIONS(1648), + [anon_sym_QMARK_LBRACK] = ACTIONS(1538), + [sym_integer] = ACTIONS(1536), + [sym_float] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_none] = ACTIONS(1536), + [sym_undefined] = ACTIONS(1536), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1538), + [sym_string_start] = ACTIONS(1538), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 26, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(1385), 1, + ACTIONS(369), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(383), 1, anon_sym_not, - ACTIONS(1892), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(1900), 1, - anon_sym_, - ACTIONS(1902), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - STATE(487), 1, + ACTIONS(1938), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(3482), 1, sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4957), 1, + STATE(3538), 1, sym_expression, - STATE(5012), 1, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52673,19 +54902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52693,7 +54922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52710,239 +54939,199 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(1904), 1, + [117] = 10, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, - anon_sym_LBRACE, - ACTIONS(1912), 1, - anon_sym_, - ACTIONS(1914), 1, - anon_sym_DQUOTE, - STATE(693), 1, - aux_sym_long_expression_repeat1, - STATE(1127), 1, - sym_primary_expression, - STATE(1513), 1, - sym_expression, - STATE(1533), 1, - sym_call, - STATE(2098), 1, - sym_selector_expression, - STATE(5107), 1, - sym_dotted_name, - STATE(5858), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(197), 2, - anon_sym_DOT, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1910), 3, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 22, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, - [234] = 28, - ACTIONS(714), 1, + [202] = 5, + ACTIONS(1958), 1, + anon_sym_PIPE, + STATE(475), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 26, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(1916), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1956), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [355] = 28, - ACTIONS(534), 1, + [277] = 27, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4819), 1, + STATE(5031), 1, sym_expression, - STATE(5075), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5446), 1, - sym_slice, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(1961), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52951,18 +55140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52970,7 +55159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52987,52 +55176,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [476] = 26, - ACTIONS(686), 1, + [396] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(700), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1379), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1421), 1, anon_sym_not, - ACTIONS(1918), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(1969), 1, anon_sym_, - ACTIONS(1928), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(457), 1, + STATE(480), 1, aux_sym_long_expression_repeat1, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + STATE(2350), 1, sym_call, - STATE(3005), 1, + STATE(2985), 1, + sym_primary_expression, + STATE(3044), 1, sym_selector_expression, - STATE(4386), 1, + STATE(4400), 1, sym_expression, - STATE(5067), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53041,19 +55230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53061,7 +55250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53078,52 +55267,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [593] = 26, - ACTIONS(686), 1, + [513] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(700), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1379), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1421), 1, anon_sym_not, - ACTIONS(1918), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, - anon_sym_DQUOTE, - ACTIONS(1930), 1, + ACTIONS(1969), 1, anon_sym_, - STATE(483), 1, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + STATE(480), 1, aux_sym_long_expression_repeat1, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + STATE(2350), 1, sym_call, - STATE(3005), 1, + STATE(2985), 1, + sym_primary_expression, + STATE(3044), 1, sym_selector_expression, - STATE(4288), 1, + STATE(4400), 1, sym_expression, - STATE(5067), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53132,19 +55321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53152,7 +55341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53169,143 +55358,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [710] = 26, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(732), 1, + [630] = 4, + ACTIONS(1977), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1973), 26, + sym__newline, sym_string_start, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1892), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, anon_sym_LBRACE, - ACTIONS(1900), 1, - anon_sym_, - ACTIONS(1902), 1, - anon_sym_DQUOTE, - STATE(487), 1, - aux_sym_long_expression_repeat1, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4957), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(6132), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(752), 2, - anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1898), 3, 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1975), 35, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [827] = 26, - ACTIONS(139), 1, + [703] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(153), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(814), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(820), 1, + ACTIONS(1421), 1, anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1940), 1, - anon_sym_, - ACTIONS(1942), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(483), 1, + ACTIONS(1979), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1411), 1, + STATE(2350), 1, + sym_call, + STATE(2985), 1, sym_primary_expression, - STATE(1911), 1, + STATE(3044), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(3297), 1, + STATE(4403), 1, sym_expression, - STATE(5035), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53314,19 +55481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53334,7 +55501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53351,52 +55518,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [944] = 26, - ACTIONS(686), 1, + [820] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(700), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1379), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1379), 1, anon_sym_not, - ACTIONS(1918), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(1989), 1, anon_sym_, - ACTIONS(1928), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - STATE(457), 1, + STATE(484), 1, aux_sym_long_expression_repeat1, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + STATE(2436), 1, sym_call, - STATE(3005), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, sym_selector_expression, - STATE(4386), 1, + STATE(4484), 1, sym_expression, - STATE(5067), 1, + STATE(5117), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53405,19 +55572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53425,7 +55592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53442,52 +55609,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1061] = 26, - ACTIONS(686), 1, + [937] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(700), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1379), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1421), 1, anon_sym_not, - ACTIONS(1918), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(1969), 1, anon_sym_, - ACTIONS(1928), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(457), 1, + STATE(480), 1, aux_sym_long_expression_repeat1, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + STATE(2350), 1, sym_call, - STATE(3005), 1, + STATE(2985), 1, + sym_primary_expression, + STATE(3044), 1, sym_selector_expression, - STATE(4386), 1, + STATE(4400), 1, sym_expression, - STATE(5067), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53496,19 +55663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53516,7 +55683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53533,55 +55700,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1178] = 28, - ACTIONS(534), 1, + [1054] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1704), 1, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4791), 1, + STATE(4918), 1, sym_expression, - STATE(5075), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5512), 1, + STATE(5607), 1, sym_slice, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53590,18 +55757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53609,7 +55776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53626,52 +55793,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1299] = 26, - ACTIONS(638), 1, + [1175] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(652), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1371), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1379), 1, anon_sym_not, - ACTIONS(1944), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, - anon_sym_, - ACTIONS(1954), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - STATE(465), 1, + ACTIONS(1993), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2840), 1, - sym_primary_expression, - STATE(3027), 1, + STATE(2436), 1, sym_call, - STATE(3028), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, sym_selector_expression, - STATE(4340), 1, + STATE(4471), 1, sym_expression, - STATE(5014), 1, + STATE(5117), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53680,19 +55847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53700,7 +55867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53717,55 +55884,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1416] = 28, - ACTIONS(714), 1, + [1292] = 26, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_not, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2003), 1, + anon_sym_, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(1956), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(497), 1, + aux_sym_long_expression_repeat1, + STATE(1770), 1, sym_call, - STATE(4214), 1, + STATE(2247), 1, + sym_primary_expression, + STATE(2259), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3389), 1, sym_expression, - STATE(5012), 1, + STATE(5190), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6093), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(225), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53774,18 +55938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(157), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53793,7 +55958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53810,143 +55975,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1537] = 26, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(652), 1, + [1409] = 6, + ACTIONS(2011), 1, + anon_sym_DOT, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + STATE(486), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2007), 26, + sym__newline, sym_string_start, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1377), 1, - anon_sym_not, - ACTIONS(1944), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, - anon_sym_DQUOTE, - ACTIONS(1958), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(2840), 1, - sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3028), 1, - sym_selector_expression, - STATE(4400), 1, - sym_expression, - STATE(5014), 1, - sym_dotted_name, - STATE(5965), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(740), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1950), 3, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 33, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3213), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(648), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3203), 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, - [1654] = 26, - ACTIONS(638), 1, + [1486] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(652), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1371), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1379), 1, anon_sym_not, - ACTIONS(1944), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, + ACTIONS(1989), 1, anon_sym_, - ACTIONS(1954), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - STATE(465), 1, + STATE(484), 1, aux_sym_long_expression_repeat1, - STATE(2840), 1, - sym_primary_expression, - STATE(3027), 1, + STATE(2436), 1, sym_call, - STATE(3028), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, sym_selector_expression, - STATE(4340), 1, + STATE(4484), 1, sym_expression, - STATE(5014), 1, + STATE(5117), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53955,19 +56100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53975,7 +56120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53992,52 +56137,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1771] = 26, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_string_start, - ACTIONS(1371), 1, + [1603] = 26, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(604), 1, anon_sym_not, - ACTIONS(1944), 1, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, + ACTIONS(2025), 1, anon_sym_, - ACTIONS(1954), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - STATE(465), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2840), 1, + STATE(2759), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(3027), 1, + STATE(2850), 1, sym_call, - STATE(3028), 1, + STATE(2879), 1, sym_selector_expression, - STATE(4340), 1, - sym_expression, - STATE(5014), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(748), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54046,19 +56191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(610), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54066,7 +56211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54083,52 +56228,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1888] = 26, - ACTIONS(458), 1, + [1720] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(472), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1311), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1379), 1, anon_sym_not, - ACTIONS(1960), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1968), 1, + ACTIONS(1989), 1, anon_sym_, - ACTIONS(1970), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - STATE(470), 1, + STATE(484), 1, aux_sym_long_expression_repeat1, - STATE(2538), 1, + STATE(2436), 1, + sym_call, + STATE(3176), 1, sym_primary_expression, - STATE(2706), 1, + STATE(3212), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(4020), 1, + STATE(4484), 1, sym_expression, - STATE(5068), 1, + STATE(5117), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2826), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54137,19 +56282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54157,7 +56302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54174,54 +56319,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2005] = 27, - ACTIONS(534), 1, + [1837] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2029), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3727), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4951), 1, + STATE(5068), 1, sym_expression, - STATE(5075), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3920), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54230,18 +56376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54249,7 +56395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54266,52 +56412,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2124] = 26, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(472), 1, - sym_string_start, - ACTIONS(1311), 1, + [1958] = 26, + ACTIONS(592), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(604), 1, anon_sym_not, - ACTIONS(1960), 1, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(1974), 1, + ACTIONS(2031), 1, anon_sym_, - STATE(483), 1, + STATE(488), 1, aux_sym_long_expression_repeat1, - STATE(2538), 1, + STATE(2775), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(2706), 1, - sym_selector_expression, - STATE(2707), 1, + STATE(2850), 1, sym_call, - STATE(4098), 1, - sym_expression, - STATE(5068), 1, + STATE(2879), 1, + sym_selector_expression, + STATE(5191), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, + ACTIONS(748), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2826), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54320,19 +56466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(610), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54340,7 +56486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54357,55 +56503,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2241] = 28, - ACTIONS(714), 1, + [2075] = 4, + ACTIONS(2037), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2033), 26, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2035), 35, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1698), 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(1976), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [2148] = 26, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(834), 1, + sym_identifier, + ACTIONS(840), 1, + anon_sym_not, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACK, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(2047), 1, + anon_sym_, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + STATE(494), 1, + aux_sym_long_expression_repeat1, + STATE(1411), 1, sym_call, - STATE(4214), 1, + STATE(1962), 1, + sym_primary_expression, + STATE(2137), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3370), 1, sym_expression, - STATE(5012), 1, + STATE(5241), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(229), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54414,18 +56626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54433,7 +56646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54450,52 +56663,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2362] = 26, - ACTIONS(458), 1, + [2265] = 26, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(472), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(1311), 1, + ACTIONS(834), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(840), 1, anon_sym_not, - ACTIONS(1960), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1968), 1, - anon_sym_, - ACTIONS(1970), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - STATE(470), 1, + ACTIONS(2051), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2538), 1, + STATE(1411), 1, + sym_call, + STATE(1962), 1, sym_primary_expression, - STATE(2706), 1, + STATE(2137), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(4020), 1, + STATE(3364), 1, sym_expression, - STATE(5068), 1, + STATE(5241), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2826), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54504,19 +56717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54524,7 +56737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54541,52 +56754,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2479] = 26, - ACTIONS(458), 1, + [2382] = 26, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(472), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(1311), 1, + ACTIONS(834), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(840), 1, anon_sym_not, - ACTIONS(1960), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1968), 1, + ACTIONS(2047), 1, anon_sym_, - ACTIONS(1970), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - STATE(470), 1, + STATE(494), 1, aux_sym_long_expression_repeat1, - STATE(2538), 1, + STATE(1411), 1, + sym_call, + STATE(1962), 1, sym_primary_expression, - STATE(2706), 1, + STATE(2137), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(4020), 1, + STATE(3370), 1, sym_expression, - STATE(5068), 1, + STATE(5241), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2826), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54595,19 +56808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54615,7 +56828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54632,55 +56845,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2596] = 28, - ACTIONS(534), 1, + [2499] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2053), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3727), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4790), 1, + STATE(5068), 1, sym_expression, - STATE(5075), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5584), 1, - sym_slice, - STATE(6118), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54689,18 +56902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54708,7 +56921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54725,52 +56938,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2717] = 26, - ACTIONS(97), 1, + [2620] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(772), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(832), 1, anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1986), 1, - anon_sym_, - ACTIONS(1988), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - STATE(490), 1, + ACTIONS(2055), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(780), 1, + STATE(1770), 1, + sym_call, + STATE(2247), 1, sym_primary_expression, - STATE(1655), 1, + STATE(2259), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(3287), 1, + STATE(3397), 1, sym_expression, - STATE(5130), 1, + STATE(5190), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54779,19 +56992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54799,7 +57012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54816,55 +57029,127 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2834] = 28, - ACTIONS(714), 1, + [2737] = 10, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(2061), 1, + anon_sym_and, + ACTIONS(2063), 1, + anon_sym_or, + ACTIONS(2065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 25, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(2059), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1698), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1990), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [2822] = 26, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(834), 1, + sym_identifier, + ACTIONS(840), 1, + anon_sym_not, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACK, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(2047), 1, + anon_sym_, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + STATE(494), 1, + aux_sym_long_expression_repeat1, + STATE(1411), 1, sym_call, - STATE(4214), 1, + STATE(1962), 1, + sym_primary_expression, + STATE(2137), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3370), 1, sym_expression, - STATE(5012), 1, + STATE(5241), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(229), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54873,18 +57158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54892,7 +57178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54909,52 +57195,127 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2955] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1267), 1, + [2939] = 10, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2069), 22, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(1275), 1, + anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1365), 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, + sym_float, + ACTIONS(2067), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(1369), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [3024] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(662), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_not, - ACTIONS(1992), 1, + ACTIONS(1239), 1, + anon_sym_LPAREN, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1243), 1, + anon_sym_LBRACE, + ACTIONS(1249), 1, + anon_sym_DQUOTE, + ACTIONS(2081), 1, anon_sym_, - STATE(480), 1, + STATE(658), 1, aux_sym_long_expression_repeat1, - STATE(3761), 1, + STATE(3878), 1, + sym_expression, + STATE(3901), 1, sym_primary_expression, - STATE(3981), 1, + STATE(3975), 1, sym_selector_expression, - STATE(4111), 1, + STATE(4216), 1, sym_call, - STATE(4875), 1, - sym_expression, - STATE(4995), 1, + STATE(5164), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54963,19 +57324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54983,7 +57344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55000,73 +57361,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3072] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(772), 1, + [3141] = 26, + ACTIONS(2083), 1, sym_identifier, - ACTIONS(776), 1, - anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(2089), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(2092), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(2095), 1, + anon_sym_lambda, + ACTIONS(2098), 1, anon_sym_LBRACE, - ACTIONS(1986), 1, + ACTIONS(2104), 1, + anon_sym_not, + ACTIONS(2110), 1, anon_sym_, - ACTIONS(1988), 1, + ACTIONS(2113), 1, anon_sym_DQUOTE, - STATE(490), 1, + ACTIONS(2119), 1, + sym_string_start, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(780), 1, - sym_primary_expression, - STATE(1655), 1, + STATE(3458), 1, sym_selector_expression, - STATE(1659), 1, + STATE(3593), 1, sym_call, - STATE(3287), 1, - sym_expression, - STATE(5130), 1, + STATE(4486), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5286), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(2086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2107), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(29), 4, + ACTIONS(2101), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(2116), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55074,7 +57435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55091,55 +57452,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3189] = 28, - ACTIONS(714), 1, + [3258] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(800), 1, + sym_identifier, + ACTIONS(806), 1, + anon_sym_not, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2130), 1, + anon_sym_, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(1994), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(508), 1, + aux_sym_long_expression_repeat1, + STATE(879), 1, sym_call, - STATE(4214), 1, + STATE(1899), 1, + sym_primary_expression, + STATE(2123), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3379), 1, sym_expression, - STATE(5012), 1, + STATE(5232), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5966), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(131), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55148,18 +57506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2261), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55167,7 +57526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55184,52 +57543,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3310] = 26, - ACTIONS(490), 1, + [3375] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(189), 1, + sym_identifier, + ACTIONS(193), 1, + anon_sym_not, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, - anon_sym_not, - ACTIONS(1996), 1, + ACTIONS(2136), 1, anon_sym_, - STATE(483), 1, + STATE(516), 1, aux_sym_long_expression_repeat1, - STATE(3761), 1, + STATE(905), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(3981), 1, + STATE(1662), 1, sym_selector_expression, - STATE(4111), 1, + STATE(1770), 1, sym_call, - STATE(4872), 1, - sym_expression, - STATE(4995), 1, + STATE(5204), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55238,19 +57597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55258,7 +57617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55275,55 +57634,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3427] = 28, - ACTIONS(534), 1, + [3492] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(2031), 1, + anon_sym_, + STATE(488), 1, + aux_sym_long_expression_repeat1, + STATE(2775), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(3719), 1, + STATE(2850), 1, sym_call, - STATE(3727), 1, + STATE(2879), 1, sym_selector_expression, - STATE(4821), 1, - sym_expression, - STATE(5075), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5583), 1, - sym_slice, - STATE(6118), 1, + STATE(6050), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(748), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55332,18 +57688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(610), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55351,7 +57708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55368,52 +57725,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3548] = 26, - ACTIONS(490), 1, + [3609] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, - anon_sym_DQUOTE, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, - anon_sym_not, - ACTIONS(1992), 1, + ACTIONS(2146), 1, anon_sym_, - STATE(480), 1, + ACTIONS(2148), 1, + anon_sym_DQUOTE, + STATE(509), 1, aux_sym_long_expression_repeat1, - STATE(3761), 1, + STATE(604), 1, sym_primary_expression, - STATE(3981), 1, - sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(4875), 1, + STATE(641), 1, sym_expression, - STATE(4995), 1, + STATE(860), 1, + sym_call, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55422,19 +57779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55442,7 +57799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55459,73 +57816,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3665] = 26, - ACTIONS(1998), 1, + [3726] = 26, + ACTIONS(59), 1, sym_identifier, - ACTIONS(2004), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(2007), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(2010), 1, - anon_sym_lambda, - ACTIONS(2013), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(2019), 1, - anon_sym_not, - ACTIONS(2025), 1, + ACTIONS(2146), 1, anon_sym_, - ACTIONS(2028), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2034), 1, - sym_string_start, - STATE(483), 1, + STATE(509), 1, aux_sym_long_expression_repeat1, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4370), 1, + STATE(604), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5192), 1, + STATE(641), 1, sym_expression, - STATE(6002), 1, + STATE(860), 1, + sym_call, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2001), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2022), 3, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(2016), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(2031), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55533,7 +57890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55550,52 +57907,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3782] = 26, - ACTIONS(490), 1, + [3843] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(800), 1, + sym_identifier, + ACTIONS(806), 1, + anon_sym_not, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, - anon_sym_not, - ACTIONS(1992), 1, + ACTIONS(2150), 1, anon_sym_, - STATE(480), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3761), 1, + STATE(879), 1, + sym_call, + STATE(1899), 1, sym_primary_expression, - STATE(3981), 1, + STATE(2123), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(4875), 1, + STATE(3367), 1, sym_expression, - STATE(4995), 1, + STATE(5232), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55604,19 +57961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(2261), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55624,7 +57981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55641,55 +57998,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3899] = 28, - ACTIONS(714), 1, + [3960] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2037), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2152), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(604), 1, sym_primary_expression, - STATE(4082), 1, + STATE(634), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(4214), 1, + STATE(946), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(5236), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6308), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55698,18 +58052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55717,7 +58072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55734,52 +58089,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4020] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(25), 1, + [4077] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(2039), 1, + ACTIONS(800), 1, + sym_identifier, + ACTIONS(806), 1, + anon_sym_not, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2041), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, + ACTIONS(2130), 1, anon_sym_, - ACTIONS(2049), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - STATE(687), 1, + STATE(508), 1, aux_sym_long_expression_repeat1, - STATE(3862), 1, - sym_primary_expression, - STATE(3874), 1, + STATE(879), 1, sym_call, - STATE(4139), 1, + STATE(1899), 1, + sym_primary_expression, + STATE(2123), 1, sym_selector_expression, - STATE(4914), 1, + STATE(3379), 1, sym_expression, - STATE(5116), 1, + STATE(5232), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55788,19 +58143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2261), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55808,7 +58163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55825,52 +58180,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4137] = 26, - ACTIONS(718), 1, + [4194] = 4, + ACTIONS(2158), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 26, + sym__newline, + 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(2156), 35, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(732), 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_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, + [4267] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1385), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(766), 1, anon_sym_not, - ACTIONS(1892), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2051), 1, + ACTIONS(2162), 1, anon_sym_, - STATE(483), 1, + STATE(539), 1, aux_sym_long_expression_repeat1, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(3593), 1, sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4983), 1, + STATE(4394), 1, sym_expression, - STATE(5012), 1, + STATE(4451), 1, + sym_primary_expression, + STATE(4504), 1, + sym_selector_expression, + STATE(5234), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55879,19 +58303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55899,7 +58323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55916,52 +58340,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4254] = 26, - ACTIONS(97), 1, + [4384] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(111), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(764), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(766), 1, anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2055), 1, + ACTIONS(2162), 1, anon_sym_, - STATE(494), 1, + STATE(539), 1, aux_sym_long_expression_repeat1, - STATE(1426), 1, - sym_primary_expression, - STATE(1659), 1, + STATE(3593), 1, sym_call, - STATE(1916), 1, - sym_selector_expression, - STATE(3307), 1, + STATE(4394), 1, sym_expression, - STATE(5053), 1, + STATE(4451), 1, + sym_primary_expression, + STATE(4504), 1, + sym_selector_expression, + STATE(5234), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55970,19 +58394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55990,7 +58414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56007,55 +58431,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4371] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [4501] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(800), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(806), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LBRACK, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2130), 1, + anon_sym_, + ACTIONS(2132), 1, + anon_sym_DQUOTE, + STATE(508), 1, + aux_sym_long_expression_repeat1, + STATE(879), 1, sym_call, - STATE(3727), 1, + STATE(1899), 1, + sym_primary_expression, + STATE(2123), 1, sym_selector_expression, - STATE(4813), 1, + STATE(3379), 1, sym_expression, - STATE(5075), 1, + STATE(5232), 1, sym_dotted_name, - STATE(5673), 1, - sym_slice, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(131), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56064,18 +58485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2261), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56083,7 +58505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56100,52 +58522,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4492] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(772), 1, + [4618] = 26, + ACTIONS(59), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, - anon_sym_DQUOTE, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_, - STATE(483), 1, + ACTIONS(2148), 1, + anon_sym_DQUOTE, + STATE(509), 1, aux_sym_long_expression_repeat1, - STATE(780), 1, + STATE(604), 1, sym_primary_expression, - STATE(1655), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(3286), 1, + STATE(641), 1, sym_expression, - STATE(5130), 1, + STATE(860), 1, + sym_call, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56154,19 +58576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56174,7 +58596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56191,55 +58613,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4609] = 28, - ACTIONS(714), 1, + [4735] = 26, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(189), 1, + sym_identifier, + ACTIONS(193), 1, + anon_sym_not, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2059), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2164), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(985), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(1662), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6093), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(225), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56248,18 +58667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(157), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56267,7 +58687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56284,55 +58704,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4730] = 28, - ACTIONS(714), 1, + [4852] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2061), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2031), 1, + anon_sym_, + STATE(488), 1, + aux_sym_long_expression_repeat1, + STATE(2775), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2850), 1, sym_call, - STATE(4214), 1, + STATE(2879), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6050), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(748), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56341,18 +58758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(610), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56360,7 +58778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56377,54 +58795,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4851] = 27, - ACTIONS(534), 1, + [4969] = 26, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(648), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(660), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1393), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(2166), 1, + anon_sym_, + STATE(559), 1, + aux_sym_long_expression_repeat1, + STATE(3877), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3948), 1, sym_call, - STATE(3727), 1, + STATE(4181), 1, sym_selector_expression, - STATE(4974), 1, + STATE(4938), 1, sym_expression, - STATE(5075), 1, + STATE(5125), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6173), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + ACTIONS(756), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56433,18 +58849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(658), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56452,7 +58869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56469,52 +58886,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4970] = 26, - ACTIONS(97), 1, + [5086] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(764), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(193), 1, anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(2065), 1, + ACTIONS(2136), 1, anon_sym_, - STATE(483), 1, + STATE(516), 1, aux_sym_long_expression_repeat1, - STATE(1426), 1, + STATE(905), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(1659), 1, - sym_call, - STATE(1916), 1, + STATE(1662), 1, sym_selector_expression, - STATE(3335), 1, - sym_expression, - STATE(5053), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56523,19 +58940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56543,7 +58960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56560,55 +58977,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5087] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [5203] = 26, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(2168), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_LBRACK, + ACTIONS(2172), 1, + anon_sym_LBRACE, + ACTIONS(2176), 1, + anon_sym_, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3727), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4907), 1, + STATE(5026), 1, sym_expression, - STATE(5075), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5767), 1, - sym_slice, - STATE(6118), 1, + STATE(6329), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(758), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2174), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56617,18 +59031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56636,7 +59051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56653,52 +59068,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5208] = 26, - ACTIONS(718), 1, + [5320] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(732), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(1385), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(193), 1, anon_sym_not, - ACTIONS(1892), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1900), 1, - anon_sym_, - ACTIONS(1902), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - STATE(487), 1, + ACTIONS(2136), 1, + anon_sym_, + STATE(516), 1, aux_sym_long_expression_repeat1, - STATE(4056), 1, + STATE(905), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(1662), 1, sym_selector_expression, - STATE(4957), 1, - sym_expression, - STATE(5012), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56707,19 +59122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56727,7 +59142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56744,55 +59159,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5325] = 28, - ACTIONS(714), 1, + [5437] = 26, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2188), 1, + anon_sym_, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2067), 1, - anon_sym_RPAREN, - STATE(4056), 1, + STATE(525), 1, + aux_sym_long_expression_repeat1, + STATE(2283), 1, + sym_expression, + STATE(2294), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(2357), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + ACTIONS(395), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56801,18 +59213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56820,7 +59233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56837,52 +59250,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5446] = 26, - ACTIONS(420), 1, + [5554] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(834), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(840), 1, + ACTIONS(287), 1, anon_sym_not, - ACTIONS(2069), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, + ACTIONS(2188), 1, anon_sym_, - ACTIONS(2077), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - STATE(509), 1, + STATE(525), 1, aux_sym_long_expression_repeat1, - STATE(2252), 1, + STATE(2283), 1, + sym_expression, + STATE(2294), 1, sym_primary_expression, - STATE(2365), 1, - sym_call, - STATE(2402), 1, + STATE(2357), 1, sym_selector_expression, - STATE(3475), 1, - sym_expression, - STATE(5145), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56891,19 +59304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56911,7 +59324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56928,55 +59341,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5563] = 28, - ACTIONS(714), 1, + [5671] = 4, + STATE(630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2194), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1698), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(2079), 1, - anon_sym_RPAREN, - STATE(4056), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [5744] = 26, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(2180), 1, + anon_sym_LPAREN, + ACTIONS(2182), 1, + anon_sym_LBRACK, + ACTIONS(2184), 1, + anon_sym_LBRACE, + ACTIONS(2190), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(2294), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, + STATE(2301), 1, sym_expression, - STATE(5012), 1, + STATE(2357), 1, + sym_selector_expression, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + ACTIONS(395), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56985,18 +59464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57004,7 +59484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57021,55 +59501,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5684] = 28, - ACTIONS(714), 1, + [5861] = 26, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2081), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(2200), 1, + anon_sym_, + STATE(538), 1, + aux_sym_long_expression_repeat1, + STATE(1213), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(4214), 1, + STATE(1730), 1, + sym_primary_expression, + STATE(2191), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(229), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57078,18 +59555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57097,7 +59575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57114,55 +59592,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5805] = 28, - ACTIONS(534), 1, + [5978] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(2210), 1, + anon_sym_, + ACTIONS(2212), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(627), 1, + aux_sym_long_expression_repeat1, + STATE(3968), 1, sym_call, - STATE(3727), 1, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, sym_selector_expression, - STATE(4823), 1, + STATE(5020), 1, sym_expression, - STATE(5075), 1, + STATE(5088), 1, sym_dotted_name, - STATE(5536), 1, - sym_slice, - STATE(6118), 1, + STATE(6471), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57171,18 +59646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57190,7 +59666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57207,55 +59683,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5926] = 28, - ACTIONS(714), 1, + [6095] = 26, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2083), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(2200), 1, + anon_sym_, + STATE(538), 1, + aux_sym_long_expression_repeat1, + STATE(1213), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(4214), 1, + STATE(1730), 1, + sym_primary_expression, + STATE(2191), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(229), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57264,18 +59737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57283,7 +59757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57300,52 +59774,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6047] = 26, - ACTIONS(514), 1, + [6212] = 26, + ACTIONS(644), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(648), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(650), 1, + anon_sym_LBRACE, + ACTIONS(654), 1, + anon_sym_DQUOTE, + ACTIONS(660), 1, sym_string_start, - ACTIONS(1357), 1, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1393), 1, anon_sym_not, - ACTIONS(2085), 1, - anon_sym_LPAREN, - ACTIONS(2087), 1, - anon_sym_LBRACK, - ACTIONS(2089), 1, - anon_sym_LBRACE, - ACTIONS(2091), 1, + ACTIONS(2166), 1, anon_sym_, - ACTIONS(2093), 1, - anon_sym_DQUOTE, - STATE(506), 1, + STATE(559), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2835), 1, + STATE(3877), 1, sym_primary_expression, - STATE(3023), 1, + STATE(3948), 1, + sym_call, + STATE(4181), 1, sym_selector_expression, - STATE(4351), 1, + STATE(4938), 1, sym_expression, - STATE(5088), 1, + STATE(5125), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57354,19 +59828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57374,7 +59848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57391,55 +59865,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6164] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [6329] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(287), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(2180), 1, + anon_sym_LPAREN, + ACTIONS(2182), 1, + anon_sym_LBRACK, + ACTIONS(2184), 1, + anon_sym_LBRACE, + ACTIONS(2188), 1, + anon_sym_, + ACTIONS(2190), 1, + anon_sym_DQUOTE, + STATE(525), 1, + aux_sym_long_expression_repeat1, + STATE(2283), 1, + sym_expression, + STATE(2294), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(2357), 1, sym_selector_expression, - STATE(4796), 1, - sym_expression, - STATE(5075), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5589), 1, - sym_slice, - STATE(6118), 1, + STATE(6368), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + ACTIONS(395), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57448,18 +59919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(277), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57467,7 +59939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57484,52 +59956,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6285] = 26, - ACTIONS(139), 1, + [6446] = 26, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(153), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(814), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(820), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(2168), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2170), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2172), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2178), 1, anon_sym_DQUOTE, - ACTIONS(2095), 1, + ACTIONS(2214), 1, anon_sym_, - STATE(459), 1, + STATE(520), 1, aux_sym_long_expression_repeat1, - STATE(1411), 1, + STATE(4095), 1, sym_primary_expression, - STATE(1911), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(4096), 1, sym_call, - STATE(3338), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5049), 1, sym_expression, - STATE(5035), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(758), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(2174), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57538,19 +60010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(694), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57558,7 +60030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57575,52 +60047,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6402] = 26, - ACTIONS(514), 1, + [6563] = 26, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1357), 1, + ACTIONS(584), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(2212), 1, anon_sym_DQUOTE, - ACTIONS(2097), 1, + ACTIONS(2216), 1, anon_sym_, - STATE(483), 1, + STATE(580), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2835), 1, + STATE(3826), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(3023), 1, + STATE(3968), 1, + sym_call, + STATE(4250), 1, sym_selector_expression, - STATE(4366), 1, - sym_expression, - STATE(5088), 1, + STATE(5139), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57629,19 +60101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57649,7 +60121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57666,52 +60138,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6519] = 26, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1363), 1, - anon_sym_not, - ACTIONS(2085), 1, + [6680] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2091), 1, - anon_sym_, - ACTIONS(2093), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - STATE(506), 1, - aux_sym_long_expression_repeat1, - STATE(2396), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(2835), 1, + STATE(3779), 1, sym_primary_expression, - STATE(3023), 1, + STATE(3900), 1, sym_selector_expression, - STATE(4351), 1, + STATE(4890), 1, sym_expression, - STATE(5088), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5745), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57720,19 +60195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57740,7 +60214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57757,52 +60231,54 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6636] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_not, - ACTIONS(1978), 1, + [6801] = 27, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1986), 1, - anon_sym_, - ACTIONS(1988), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - STATE(490), 1, - aux_sym_long_expression_repeat1, - STATE(780), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1655), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(3287), 1, + STATE(5052), 1, sym_expression, - STATE(5130), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + ACTIONS(2218), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57811,19 +60287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57831,7 +60306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57848,52 +60323,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6753] = 26, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(434), 1, + [6920] = 4, + STATE(630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2220), 27, + sym__newline, sym_string_start, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 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(2222), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2069), 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, + [6993] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2099), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(2402), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(3472), 1, + STATE(4928), 1, sym_expression, - STATE(5145), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5863), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57902,19 +60449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57922,7 +60468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57939,52 +60485,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6870] = 26, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_not, - ACTIONS(2069), 1, + [7114] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_, - ACTIONS(2077), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - STATE(509), 1, - aux_sym_long_expression_repeat1, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(2402), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(3475), 1, + STATE(4917), 1, sym_expression, - STATE(5145), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5596), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57993,19 +60542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58013,7 +60561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58030,55 +60578,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6987] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [7235] = 26, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(213), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(217), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACK, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + ACTIONS(2224), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(1185), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(3727), 1, + STATE(1730), 1, + sym_primary_expression, + STATE(2191), 1, sym_selector_expression, - STATE(4826), 1, - sym_expression, - STATE(5075), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5687), 1, - sym_slice, - STATE(6118), 1, + STATE(5941), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(229), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58087,18 +60632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(183), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58106,7 +60652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58123,52 +60669,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7108] = 26, - ACTIONS(514), 1, + [7352] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1357), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(766), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2091), 1, - anon_sym_, - ACTIONS(2093), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - STATE(506), 1, + ACTIONS(2226), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, + STATE(3593), 1, sym_call, - STATE(2835), 1, + STATE(4392), 1, + sym_expression, + STATE(4451), 1, sym_primary_expression, - STATE(3023), 1, + STATE(4504), 1, sym_selector_expression, - STATE(4351), 1, - sym_expression, - STATE(5088), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58177,19 +60723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58197,7 +60743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58214,55 +60760,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7225] = 28, - ACTIONS(714), 1, + [7469] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(766), 1, + anon_sym_not, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2101), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(2162), 1, + anon_sym_, + STATE(539), 1, + aux_sym_long_expression_repeat1, + STATE(3593), 1, sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, + STATE(4394), 1, sym_expression, - STATE(5012), 1, + STATE(4451), 1, + sym_primary_expression, + STATE(4504), 1, + sym_selector_expression, + STATE(5234), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6206), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + ACTIONS(578), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58271,18 +60814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(476), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58290,7 +60834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58307,55 +60851,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7346] = 28, - ACTIONS(714), 1, + [7586] = 26, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2103), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(2200), 1, + anon_sym_, + STATE(538), 1, + aux_sym_long_expression_repeat1, + STATE(1213), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(4214), 1, + STATE(1730), 1, + sym_primary_expression, + STATE(2191), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(229), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58364,18 +60905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58383,7 +60925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58400,55 +60942,130 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7467] = 28, - ACTIONS(534), 1, + [7703] = 10, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(2228), 1, + anon_sym_and, + ACTIONS(2230), 1, + anon_sym_or, + ACTIONS(2232), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 25, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(550), 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(2059), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_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, + [7788] = 28, + ACTIONS(542), 1, + anon_sym_LPAREN, + ACTIONS(544), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, + anon_sym_LBRACE, ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1704), 1, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4825), 1, + STATE(4901), 1, sym_expression, - STATE(5075), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5448), 1, + STATE(5747), 1, sym_slice, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58457,18 +61074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58476,7 +61093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58493,52 +61110,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7588] = 26, - ACTIONS(420), 1, + [7909] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(834), 1, + ACTIONS(700), 1, sym_identifier, - ACTIONS(840), 1, + ACTIONS(704), 1, anon_sym_not, - ACTIONS(2069), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_, - ACTIONS(2077), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - STATE(509), 1, + ACTIONS(2234), 1, + anon_sym_, + STATE(549), 1, aux_sym_long_expression_repeat1, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + STATE(2436), 1, sym_call, - STATE(2402), 1, - sym_selector_expression, - STATE(3475), 1, + STATE(3123), 1, sym_expression, - STATE(5145), 1, + STATE(3196), 1, + sym_primary_expression, + STATE(3215), 1, + sym_selector_expression, + STATE(5244), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58547,19 +61164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58567,7 +61184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58584,146 +61201,191 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7705] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, + [8026] = 4, + STATE(630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 27, + sym__newline, sym_string_start, - ACTIONS(2039), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, - anon_sym_, - ACTIONS(2049), 1, - anon_sym_DQUOTE, - STATE(687), 1, - aux_sym_long_expression_repeat1, - STATE(3862), 1, - sym_primary_expression, - STATE(3874), 1, - sym_call, - STATE(4139), 1, - sym_selector_expression, - STATE(4914), 1, - sym_expression, - STATE(5116), 1, - sym_dotted_name, - STATE(6288), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2045), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2156), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4378), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4401), 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, + [8099] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [7822] = 28, - ACTIONS(714), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2236), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1698), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(2105), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [8174] = 26, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_not, + ACTIONS(1995), 1, + anon_sym_LPAREN, + ACTIONS(1997), 1, + anon_sym_LBRACK, + ACTIONS(1999), 1, + anon_sym_LBRACE, + ACTIONS(2003), 1, + anon_sym_, + ACTIONS(2005), 1, + anon_sym_DQUOTE, + STATE(497), 1, + aux_sym_long_expression_repeat1, + STATE(1770), 1, sym_call, - STATE(4214), 1, + STATE(2247), 1, + sym_primary_expression, + STATE(2259), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3389), 1, sym_expression, - STATE(5012), 1, + STATE(5190), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6093), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(225), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58732,18 +61394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(157), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58751,7 +61414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58768,145 +61431,127 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7943] = 28, - ACTIONS(714), 1, + [8291] = 10, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2107), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, - sym_quant_op, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2069), 22, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2067), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [8064] = 26, - ACTIONS(514), 1, + [8376] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1291), 1, + ACTIONS(700), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(704), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(2109), 1, + ACTIONS(2240), 1, anon_sym_, - STATE(524), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, + STATE(2436), 1, sym_call, - STATE(2590), 1, + STATE(3133), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(2738), 1, + STATE(3215), 1, sym_selector_expression, - STATE(3941), 1, - sym_expression, - STATE(5127), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58915,19 +61560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58935,7 +61580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58952,52 +61597,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8181] = 26, - ACTIONS(514), 1, + [8493] = 7, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2228), 1, + anon_sym_and, + ACTIONS(2232), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(528), 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_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, + [8572] = 26, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(55), 1, sym_string_start, - ACTIONS(654), 1, + ACTIONS(584), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(2212), 1, anon_sym_DQUOTE, - ACTIONS(2111), 1, + ACTIONS(2216), 1, anon_sym_, - STATE(531), 1, + STATE(580), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2799), 1, + STATE(3826), 1, sym_expression, - STATE(2850), 1, + STATE(3936), 1, sym_primary_expression, - STATE(3017), 1, + STATE(3968), 1, + sym_call, + STATE(4250), 1, sym_selector_expression, - STATE(5087), 1, + STATE(5139), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59006,19 +61723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59026,7 +61743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59043,55 +61760,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8298] = 28, - ACTIONS(714), 1, + [8689] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(2113), 1, + ACTIONS(2246), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4910), 1, + STATE(5068), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5764), 1, + STATE(5848), 1, sym_keyword_argument, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59100,18 +61817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59119,7 +61836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59136,52 +61853,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8419] = 26, - ACTIONS(514), 1, + [8810] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(654), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(2111), 1, + ACTIONS(2250), 1, anon_sym_, - STATE(531), 1, + STATE(606), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2799), 1, - sym_expression, - STATE(2850), 1, + STATE(847), 1, sym_primary_expression, - STATE(3017), 1, + STATE(879), 1, + sym_call, + STATE(1752), 1, sym_selector_expression, - STATE(5087), 1, + STATE(3315), 1, + sym_expression, + STATE(5179), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59190,19 +61907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59210,7 +61927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59227,52 +61944,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8536] = 26, - ACTIONS(514), 1, + [8927] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1291), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(818), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(2115), 1, + ACTIONS(2250), 1, anon_sym_, - STATE(483), 1, + STATE(606), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + STATE(847), 1, sym_primary_expression, - STATE(2738), 1, + STATE(879), 1, + sym_call, + STATE(1752), 1, sym_selector_expression, - STATE(3950), 1, + STATE(3315), 1, sym_expression, - STATE(5127), 1, + STATE(5179), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59281,19 +61998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59301,7 +62018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59318,52 +62035,263 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8653] = 26, - ACTIONS(9), 1, + [9044] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, + sym__newline, + 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(2252), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(25), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9119] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, + sym__newline, + 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(2252), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(45), 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_check, anon_sym_not, - ACTIONS(55), 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, + [9194] = 6, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2232), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(2039), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, - anon_sym_, - ACTIONS(2049), 1, + 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(2256), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9271] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(624), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(628), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(632), 1, anon_sym_DQUOTE, - STATE(687), 1, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(2260), 1, + anon_sym_, + STATE(563), 1, aux_sym_long_expression_repeat1, - STATE(3862), 1, + STATE(2773), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(3874), 1, + STATE(2877), 1, sym_call, - STATE(4139), 1, + STATE(2884), 1, sym_selector_expression, - STATE(4914), 1, - sym_expression, - STATE(5116), 1, + STATE(5140), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59372,19 +62300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59392,7 +62320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59409,52 +62337,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8770] = 26, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, - anon_sym_not, - ACTIONS(2085), 1, + [9388] = 26, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(2109), 1, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(2262), 1, anon_sym_, - STATE(524), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + STATE(3877), 1, sym_primary_expression, - STATE(2738), 1, + STATE(3948), 1, + sym_call, + STATE(4181), 1, sym_selector_expression, - STATE(3941), 1, + STATE(4944), 1, sym_expression, - STATE(5127), 1, + STATE(5125), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59463,19 +62391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59483,7 +62411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59500,55 +62428,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8887] = 28, - ACTIONS(714), 1, + [9505] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(622), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(624), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(628), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(632), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, + ACTIONS(638), 1, sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2117), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2260), 1, + anon_sym_, + STATE(563), 1, + aux_sym_long_expression_repeat1, + STATE(2773), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2877), 1, sym_call, - STATE(4214), 1, + STATE(2884), 1, sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5959), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(732), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59557,18 +62482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(636), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59576,7 +62502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59593,55 +62519,122 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9008] = 28, - ACTIONS(534), 1, + [9622] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(550), 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(552), 1, - sym_string_start, - ACTIONS(624), 1, + ACTIONS(2264), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9697] = 26, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(700), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(704), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1981), 1, + anon_sym_LPAREN, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(2234), 1, + anon_sym_, + STATE(549), 1, + aux_sym_long_expression_repeat1, + STATE(2436), 1, sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(4794), 1, + STATE(3123), 1, sym_expression, - STATE(5075), 1, + STATE(3196), 1, + sym_primary_expression, + STATE(3215), 1, + sym_selector_expression, + STATE(5244), 1, sym_dotted_name, - STATE(5450), 1, - sym_slice, - STATE(6118), 1, + STATE(6027), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(506), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59650,18 +62643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59669,7 +62663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59686,52 +62680,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9129] = 26, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(1291), 1, + [9814] = 26, + ACTIONS(616), 1, sym_identifier, - ACTIONS(1297), 1, - anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(622), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(624), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(628), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(632), 1, anon_sym_DQUOTE, - ACTIONS(2109), 1, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(2268), 1, anon_sym_, - STATE(524), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + STATE(2792), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(2738), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, sym_selector_expression, - STATE(3941), 1, - sym_expression, - STATE(5127), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59740,19 +62734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59760,7 +62754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59777,55 +62771,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9246] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [9931] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(700), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(704), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1981), 1, + anon_sym_LPAREN, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(2234), 1, + anon_sym_, + STATE(549), 1, + aux_sym_long_expression_repeat1, + STATE(2436), 1, sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(4818), 1, + STATE(3123), 1, sym_expression, - STATE(5075), 1, + STATE(3196), 1, + sym_primary_expression, + STATE(3215), 1, + sym_selector_expression, + STATE(5244), 1, sym_dotted_name, - STATE(5544), 1, - sym_slice, - STATE(6118), 1, + STATE(6027), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(506), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(1987), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59834,18 +62825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59853,7 +62845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59870,52 +62862,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9367] = 26, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(528), 1, + [10048] = 4, + STATE(630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 27, + sym__newline, sym_string_start, - ACTIONS(654), 1, - sym_identifier, - ACTIONS(658), 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(1956), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2085), 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, + [10121] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2119), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(2396), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(2850), 1, + STATE(3779), 1, sym_primary_expression, - STATE(2864), 1, - sym_expression, - STATE(3017), 1, + STATE(3900), 1, sym_selector_expression, - STATE(5087), 1, + STATE(4915), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5791), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59924,19 +62988,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59944,7 +63007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59961,52 +63024,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9484] = 26, - ACTIONS(139), 1, + [10242] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(153), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(822), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(832), 1, anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(2003), 1, anon_sym_, - STATE(540), 1, + ACTIONS(2005), 1, + anon_sym_DQUOTE, + STATE(497), 1, aux_sym_long_expression_repeat1, - STATE(2027), 1, + STATE(1770), 1, sym_call, - STATE(2033), 1, + STATE(2247), 1, sym_primary_expression, - STATE(2164), 1, + STATE(2259), 1, sym_selector_expression, - STATE(3353), 1, + STATE(3389), 1, sym_expression, - STATE(5144), 1, + STATE(5190), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60015,19 +63078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60035,7 +63098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60052,52 +63115,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9601] = 26, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(822), 1, - sym_identifier, - ACTIONS(826), 1, - anon_sym_not, - ACTIONS(1932), 1, + [10359] = 26, + ACTIONS(622), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(624), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(628), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(632), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2270), 1, anon_sym_, - STATE(540), 1, + STATE(595), 1, aux_sym_long_expression_repeat1, - STATE(2027), 1, - sym_call, - STATE(2033), 1, + STATE(2756), 1, sym_primary_expression, - STATE(2164), 1, + STATE(2877), 1, + sym_call, + STATE(2904), 1, sym_selector_expression, - STATE(3353), 1, + STATE(4282), 1, sym_expression, - STATE(5144), 1, + STATE(5208), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60106,19 +63169,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60126,7 +63189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60143,52 +63206,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9718] = 26, - ACTIONS(582), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + [10476] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(742), 1, anon_sym_not, - ACTIONS(2125), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN, + ACTIONS(1965), 1, + anon_sym_LBRACK, + ACTIONS(1967), 1, + anon_sym_LBRACE, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(2272), 1, anon_sym_, - STATE(535), 1, + STATE(573), 1, aux_sym_long_expression_repeat1, - STATE(2751), 1, - sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2350), 1, sym_call, - STATE(4219), 1, + STATE(2967), 1, sym_expression, - STATE(5115), 1, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60197,19 +63260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60217,7 +63280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60234,52 +63297,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9835] = 26, - ACTIONS(582), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + [10593] = 26, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(2127), 1, + ACTIONS(2168), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_LBRACK, + ACTIONS(2172), 1, + anon_sym_LBRACE, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2214), 1, anon_sym_, - STATE(483), 1, + STATE(520), 1, aux_sym_long_expression_repeat1, - STATE(2751), 1, + STATE(4095), 1, sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(4096), 1, sym_call, - STATE(4238), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5049), 1, sym_expression, - STATE(5115), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(758), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + ACTIONS(2174), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60288,19 +63351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(694), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60308,7 +63371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60325,52 +63388,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9952] = 26, - ACTIONS(582), 1, + [10710] = 6, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2232), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(1333), 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(2242), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [10787] = 26, + ACTIONS(616), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(624), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(628), 1, + anon_sym_LBRACE, + ACTIONS(630), 1, anon_sym_not, - ACTIONS(2125), 1, + ACTIONS(632), 1, + anon_sym_DQUOTE, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(2260), 1, anon_sym_, - STATE(535), 1, + STATE(563), 1, aux_sym_long_expression_repeat1, - STATE(2751), 1, + STATE(2773), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2877), 1, sym_call, - STATE(4219), 1, - sym_expression, - STATE(5115), 1, + STATE(2884), 1, + sym_selector_expression, + STATE(5140), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60379,19 +63513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60399,7 +63533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60416,52 +63550,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10069] = 26, - ACTIONS(582), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + [10904] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1333), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(742), 1, anon_sym_not, - ACTIONS(2125), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN, + ACTIONS(1965), 1, + anon_sym_LBRACK, + ACTIONS(1967), 1, + anon_sym_LBRACE, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(2274), 1, anon_sym_, - STATE(535), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2751), 1, - sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2350), 1, sym_call, - STATE(4219), 1, + STATE(2970), 1, sym_expression, - STATE(5115), 1, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60470,19 +63604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60490,7 +63624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60507,21 +63641,27 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10186] = 8, - ACTIONS(1740), 1, - anon_sym_QMARK_COLON, - ACTIONS(2129), 1, - sym_isMutableFlag, - STATE(2197), 1, - sym_dict_expr, - STATE(3255), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [11021] = 9, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2228), 1, + anon_sym_and, + ACTIONS(2232), 1, + anon_sym_PLUS, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 25, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -60530,8 +63670,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, @@ -60548,13 +63686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 31, + ACTIONS(2276), 28, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -60568,8 +63705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -60580,52 +63715,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [10267] = 26, - ACTIONS(261), 1, + [11104] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(275), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(850), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(742), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(2139), 1, - anon_sym_, - ACTIONS(2141), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - STATE(649), 1, + ACTIONS(2272), 1, + anon_sym_, + STATE(573), 1, aux_sym_long_expression_repeat1, - STATE(2313), 1, - sym_primary_expression, - STATE(2328), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(2350), 1, sym_call, - STATE(3677), 1, + STATE(2967), 1, sym_expression, - STATE(5009), 1, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60634,19 +63769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60654,7 +63789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60671,52 +63806,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10384] = 26, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(822), 1, - sym_identifier, - ACTIONS(826), 1, - anon_sym_not, - ACTIONS(1932), 1, + [11221] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2143), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(2027), 1, - sym_call, - STATE(2033), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2280), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(2164), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(3357), 1, + STATE(5068), 1, sym_expression, - STATE(5144), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60725,19 +63863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60745,7 +63882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60762,52 +63899,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10501] = 26, - ACTIONS(514), 1, + [11342] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(528), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(654), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(742), 1, anon_sym_not, - ACTIONS(2085), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2111), 1, + ACTIONS(2272), 1, anon_sym_, - STATE(531), 1, + STATE(573), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, + STATE(2350), 1, sym_call, - STATE(2799), 1, + STATE(2967), 1, sym_expression, - STATE(2850), 1, + STATE(3006), 1, sym_primary_expression, - STATE(3017), 1, + STATE(3054), 1, sym_selector_expression, - STATE(5087), 1, + STATE(5229), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(660), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(744), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60816,19 +63953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60836,7 +63973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60853,52 +63990,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10618] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, + [11459] = 7, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(2061), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, + sym__newline, sym_string_start, - ACTIONS(850), 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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_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, + [11538] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(2139), 1, + ACTIONS(2210), 1, anon_sym_, - ACTIONS(2141), 1, + ACTIONS(2212), 1, anon_sym_DQUOTE, - STATE(649), 1, + STATE(627), 1, aux_sym_long_expression_repeat1, - STATE(2313), 1, + STATE(3968), 1, + sym_call, + STATE(3976), 1, sym_primary_expression, - STATE(2328), 1, + STATE(4260), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(3677), 1, + STATE(5020), 1, sym_expression, - STATE(5009), 1, + STATE(5088), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60907,19 +64116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60927,7 +64136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60944,55 +64153,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10735] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [11655] = 26, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(584), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN, + ACTIONS(2204), 1, + anon_sym_LBRACK, + ACTIONS(2206), 1, + anon_sym_LBRACE, + ACTIONS(2212), 1, + anon_sym_DQUOTE, + ACTIONS(2282), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(3839), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3968), 1, sym_call, - STATE(3727), 1, + STATE(4250), 1, sym_selector_expression, - STATE(4816), 1, - sym_expression, - STATE(5075), 1, + STATE(5139), 1, sym_dotted_name, - STATE(5690), 1, - sym_slice, - STATE(6118), 1, + STATE(6471), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61001,18 +64207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61020,7 +64227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61037,52 +64244,125 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10856] = 26, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(552), 1, + [11772] = 8, + ACTIONS(1652), 1, + anon_sym_QMARK_COLON, + ACTIONS(1926), 1, + sym_isMutableFlag, + STATE(2228), 1, + sym_dict_expr, + STATE(3296), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1538), 26, sym_string_start, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2153), 1, - anon_sym_, - ACTIONS(2155), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1536), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [11853] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LBRACK, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2132), 1, anon_sym_DQUOTE, - STATE(551), 1, + ACTIONS(2284), 1, + anon_sym_, + STATE(561), 1, + sym_expression, + STATE(588), 1, aux_sym_long_expression_repeat1, - STATE(3716), 1, + STATE(603), 1, sym_primary_expression, - STATE(3719), 1, + STATE(879), 1, sym_call, - STATE(3727), 1, + STATE(1004), 1, sym_selector_expression, - STATE(4788), 1, - sym_expression, - STATE(5075), 1, + STATE(5230), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61091,19 +64371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61111,7 +64391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61128,55 +64408,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10973] = 28, - ACTIONS(714), 1, + [11970] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(2157), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(4214), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4910), 1, + STATE(4895), 1, sym_expression, - STATE(5012), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5550), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61185,18 +64465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61204,7 +64484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61221,52 +64501,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11094] = 26, - ACTIONS(139), 1, + [12091] = 26, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(153), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(822), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(2168), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2170), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2172), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2178), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(2214), 1, anon_sym_, - STATE(540), 1, + STATE(520), 1, aux_sym_long_expression_repeat1, - STATE(2027), 1, - sym_call, - STATE(2033), 1, + STATE(4095), 1, sym_primary_expression, - STATE(2164), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(3353), 1, + STATE(5049), 1, sym_expression, - STATE(5144), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(758), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(2174), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61275,19 +64555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(694), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61295,7 +64575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61312,55 +64592,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11211] = 28, - ACTIONS(714), 1, + [12208] = 26, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(1092), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2159), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2286), 1, + anon_sym_, + STATE(791), 1, + aux_sym_long_expression_repeat1, + STATE(2314), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(2361), 1, sym_selector_expression, - STATE(4910), 1, + STATE(2406), 1, + sym_call, + STATE(3606), 1, sym_expression, - STATE(5012), 1, + STATE(5145), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + ACTIONS(395), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61369,18 +64646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61388,7 +64666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61405,52 +64683,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11332] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, + [12325] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(637), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(842), 1, - sym_identifier, - ACTIONS(848), 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(2288), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2131), 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, + [12398] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2163), 1, - anon_sym_, - STATE(697), 1, - aux_sym_long_expression_repeat1, - STATE(2399), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2292), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(2407), 1, + STATE(4096), 1, sym_call, - STATE(2505), 1, + STATE(4309), 1, sym_selector_expression, - STATE(3848), 1, + STATE(5068), 1, sym_expression, - STATE(5000), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(2161), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61459,19 +64809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61479,7 +64828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61496,52 +64845,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11449] = 26, - ACTIONS(165), 1, + [12519] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(179), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(828), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(832), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2173), 1, - anon_sym_, - ACTIONS(2175), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - STATE(552), 1, + ACTIONS(2294), 1, + anon_sym_, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1943), 1, + STATE(555), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(2072), 1, + STATE(879), 1, sym_call, - STATE(2208), 1, + STATE(1004), 1, sym_selector_expression, - STATE(3359), 1, - sym_expression, - STATE(5092), 1, + STATE(5230), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61550,19 +64899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61570,7 +64919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61587,55 +64936,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11566] = 28, - ACTIONS(714), 1, + [12636] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(2177), 1, + ACTIONS(2296), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4910), 1, + STATE(5068), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5764), 1, + STATE(5848), 1, sym_keyword_argument, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61644,18 +64993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61663,7 +65012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61680,52 +65029,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11687] = 26, - ACTIONS(538), 1, + [12757] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(552), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(2145), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2149), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(2179), 1, + ACTIONS(2284), 1, anon_sym_, - STATE(483), 1, + STATE(561), 1, + sym_expression, + STATE(588), 1, aux_sym_long_expression_repeat1, - STATE(3716), 1, + STATE(603), 1, sym_primary_expression, - STATE(3719), 1, + STATE(879), 1, sym_call, - STATE(3727), 1, + STATE(1004), 1, sym_selector_expression, - STATE(4812), 1, - sym_expression, - STATE(5075), 1, + STATE(5230), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61734,19 +65083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61754,7 +65103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61771,52 +65120,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11804] = 26, - ACTIONS(165), 1, + [12874] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(179), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(828), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(832), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(2181), 1, + ACTIONS(2284), 1, anon_sym_, - STATE(483), 1, + STATE(561), 1, + sym_expression, + STATE(588), 1, aux_sym_long_expression_repeat1, - STATE(1943), 1, + STATE(603), 1, sym_primary_expression, - STATE(2072), 1, + STATE(879), 1, sym_call, - STATE(2208), 1, + STATE(1004), 1, sym_selector_expression, - STATE(3371), 1, - sym_expression, - STATE(5092), 1, + STATE(5230), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61825,19 +65174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61845,7 +65194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61862,148 +65211,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11921] = 28, - ACTIONS(714), 1, + [12991] = 4, + STATE(621), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2300), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2183), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2298), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [12042] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [13064] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(820), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(826), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1995), 1, + anon_sym_LPAREN, + ACTIONS(1997), 1, + anon_sym_LBRACK, + ACTIONS(1999), 1, + anon_sym_LBRACE, + ACTIONS(2005), 1, + anon_sym_DQUOTE, + ACTIONS(2302), 1, + anon_sym_, + STATE(686), 1, + aux_sym_long_expression_repeat1, + STATE(1770), 1, sym_call, - STATE(3727), 1, + STATE(2024), 1, + sym_primary_expression, + STATE(2254), 1, sym_selector_expression, - STATE(4789), 1, + STATE(3359), 1, sym_expression, - STATE(5075), 1, + STATE(5087), 1, sym_dotted_name, - STATE(5686), 1, - sym_slice, - STATE(6118), 1, + STATE(6093), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(225), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62012,18 +65334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(157), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62031,7 +65354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62048,52 +65371,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12163] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(261), 1, + [13181] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(275), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(2131), 1, + ACTIONS(1092), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2185), 1, + ACTIONS(2286), 1, anon_sym_, - STATE(558), 1, + STATE(791), 1, aux_sym_long_expression_repeat1, - STATE(2287), 1, + STATE(2314), 1, sym_primary_expression, - STATE(2303), 1, - sym_expression, - STATE(2329), 1, + STATE(2361), 1, sym_selector_expression, - STATE(2407), 1, + STATE(2406), 1, sym_call, - STATE(4999), 1, + STATE(3606), 1, + sym_expression, + STATE(5145), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62102,19 +65425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62122,7 +65445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62139,52 +65462,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12280] = 26, - ACTIONS(165), 1, + [13298] = 26, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(624), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(179), 1, + ACTIONS(628), 1, + anon_sym_LBRACE, + ACTIONS(632), 1, + anon_sym_DQUOTE, + ACTIONS(638), 1, sym_string_start, - ACTIONS(828), 1, + ACTIONS(1381), 1, sym_identifier, - ACTIONS(832), 1, + ACTIONS(1387), 1, anon_sym_not, - ACTIONS(2165), 1, - anon_sym_LPAREN, - ACTIONS(2167), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_LBRACE, - ACTIONS(2173), 1, + ACTIONS(2304), 1, anon_sym_, - ACTIONS(2175), 1, - anon_sym_DQUOTE, - STATE(552), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1943), 1, + STATE(2756), 1, sym_primary_expression, - STATE(2072), 1, + STATE(2877), 1, sym_call, - STATE(2208), 1, + STATE(2904), 1, sym_selector_expression, - STATE(3359), 1, + STATE(4279), 1, sym_expression, - STATE(5092), 1, + STATE(5208), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62193,19 +65516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62213,7 +65536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62230,55 +65553,142 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12397] = 28, - ACTIONS(534), 1, + [13415] = 22, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_is, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 9, + sym__newline, + 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(2308), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [13524] = 28, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2334), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3727), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4783), 1, + STATE(5068), 1, sym_expression, - STATE(5075), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5603), 1, - sym_slice, - STATE(6118), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62287,18 +65697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62306,7 +65716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62323,52 +65733,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12518] = 26, - ACTIONS(251), 1, + [13645] = 26, + ACTIONS(163), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(265), 1, + ACTIONS(177), 1, anon_sym_not, - ACTIONS(275), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(2131), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2187), 1, + ACTIONS(2336), 1, anon_sym_, - STATE(483), 1, + STATE(605), 1, aux_sym_long_expression_repeat1, - STATE(2287), 1, - sym_primary_expression, - STATE(2294), 1, + STATE(952), 1, sym_expression, - STATE(2329), 1, + STATE(994), 1, + sym_primary_expression, + STATE(1278), 1, sym_selector_expression, - STATE(2407), 1, + STATE(1411), 1, sym_call, - STATE(4999), 1, + STATE(5224), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62377,19 +65787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62397,7 +65807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62414,52 +65824,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12635] = 26, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(828), 1, - sym_identifier, - ACTIONS(832), 1, - anon_sym_not, - ACTIONS(2165), 1, + [13762] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(2173), 1, - anon_sym_, - ACTIONS(2175), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - STATE(552), 1, - aux_sym_long_expression_repeat1, - STATE(1943), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2338), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(2072), 1, + STATE(4096), 1, sym_call, - STATE(2208), 1, + STATE(4309), 1, sym_selector_expression, - STATE(3359), 1, + STATE(5068), 1, sym_expression, - STATE(5092), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62468,19 +65881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62488,7 +65900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62505,55 +65917,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12752] = 28, - ACTIONS(714), 1, + [13883] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(2189), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(4214), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4910), 1, + STATE(4896), 1, sym_expression, - STATE(5012), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5664), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62562,18 +65974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62581,7 +65993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62598,52 +66010,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12873] = 26, - ACTIONS(251), 1, + [14004] = 22, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, sym_identifier, - ACTIONS(261), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [14113] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(275), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(2131), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2185), 1, + ACTIONS(2354), 1, anon_sym_, - STATE(558), 1, + STATE(632), 1, aux_sym_long_expression_repeat1, - STATE(2287), 1, + STATE(860), 1, + sym_call, + STATE(958), 1, sym_primary_expression, - STATE(2303), 1, - sym_expression, - STATE(2329), 1, + STATE(2056), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(4999), 1, + STATE(3321), 1, + sym_expression, + STATE(5217), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62652,19 +66151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62672,7 +66171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62689,52 +66188,224 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12990] = 26, - ACTIONS(71), 1, + [14230] = 21, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + ACTIONS(2360), 1, + anon_sym_not, + ACTIONS(2364), 1, + anon_sym_is, + STATE(1000), 1, + aux_sym_comparison_operator_repeat1, + STATE(1318), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2358), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(85), 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_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [14337] = 21, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2368), 1, + anon_sym_not, + ACTIONS(2372), 1, + anon_sym_is, + STATE(887), 1, + aux_sym_comparison_operator_repeat1, + STATE(1374), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2366), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym__newline, sym_string_start, - ACTIONS(794), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_and, + anon_sym_or, + sym_integer, sym_identifier, - ACTIONS(798), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [14444] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(177), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2193), 1, + ACTIONS(2374), 1, anon_sym_, - STATE(576), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(779), 1, + STATE(961), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(1614), 1, + STATE(1278), 1, sym_selector_expression, - STATE(3292), 1, - sym_expression, - STATE(5082), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62743,19 +66414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62763,7 +66434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62780,55 +66451,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13107] = 28, - ACTIONS(714), 1, + [14561] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(814), 1, + sym_identifier, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2195), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2376), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(847), 1, sym_primary_expression, - STATE(4082), 1, + STATE(879), 1, sym_call, - STATE(4214), 1, + STATE(1752), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3337), 1, sym_expression, - STATE(5012), 1, + STATE(5179), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5966), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(131), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62837,18 +66505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62856,7 +66525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62873,52 +66542,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13228] = 26, - ACTIONS(251), 1, + [14678] = 26, + ACTIONS(163), 1, sym_identifier, - ACTIONS(261), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(265), 1, + ACTIONS(177), 1, anon_sym_not, - ACTIONS(275), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(2131), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2185), 1, + ACTIONS(2336), 1, anon_sym_, - STATE(558), 1, + STATE(605), 1, aux_sym_long_expression_repeat1, - STATE(2287), 1, - sym_primary_expression, - STATE(2303), 1, + STATE(952), 1, sym_expression, - STATE(2329), 1, + STATE(994), 1, + sym_primary_expression, + STATE(1278), 1, sym_selector_expression, - STATE(2407), 1, + STATE(1411), 1, sym_call, - STATE(4999), 1, + STATE(5224), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62927,19 +66596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62947,7 +66616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62964,125 +66633,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13345] = 8, - ACTIONS(1838), 1, - anon_sym_QMARK_COLON, - ACTIONS(2197), 1, - sym_isMutableFlag, - STATE(2185), 1, - sym_dict_expr, - STATE(3257), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1588), 26, + [14795] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(187), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1586), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [13426] = 26, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2199), 1, + ACTIONS(2336), 1, anon_sym_, - STATE(568), 1, + STATE(605), 1, aux_sym_long_expression_repeat1, - STATE(1064), 1, - sym_primary_expression, - STATE(1432), 1, + STATE(952), 1, sym_expression, - STATE(1901), 1, + STATE(994), 1, + sym_primary_expression, + STATE(1278), 1, sym_selector_expression, - STATE(2027), 1, + STATE(1411), 1, sym_call, - STATE(5065), 1, + STATE(5224), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63091,19 +66687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63111,7 +66707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63128,52 +66724,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13543] = 26, - ACTIONS(538), 1, + [14912] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(552), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(662), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(668), 1, anon_sym_not, - ACTIONS(2145), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2149), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2153), 1, - anon_sym_, - ACTIONS(2155), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - STATE(551), 1, + ACTIONS(2081), 1, + anon_sym_, + STATE(658), 1, aux_sym_long_expression_repeat1, - STATE(3716), 1, + STATE(3878), 1, + sym_expression, + STATE(3901), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(3975), 1, sym_selector_expression, - STATE(4788), 1, - sym_expression, - STATE(5075), 1, + STATE(4216), 1, + sym_call, + STATE(5164), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63182,19 +66778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63202,7 +66798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63219,52 +66815,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13660] = 26, - ACTIONS(139), 1, + [15029] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(153), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(181), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(185), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2201), 1, + ACTIONS(2380), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1064), 1, + STATE(860), 1, + sym_call, + STATE(1905), 1, sym_primary_expression, - STATE(1472), 1, - sym_expression, - STATE(1901), 1, + STATE(2224), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, + STATE(3347), 1, + sym_expression, + STATE(5221), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63273,19 +66869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63293,7 +66889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63310,52 +66906,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13777] = 26, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, - anon_sym_not, - ACTIONS(1932), 1, + [15146] = 26, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(2095), 1, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(2166), 1, anon_sym_, - STATE(459), 1, + STATE(559), 1, aux_sym_long_expression_repeat1, - STATE(1411), 1, + STATE(3877), 1, sym_primary_expression, - STATE(1911), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(3948), 1, sym_call, - STATE(3338), 1, + STATE(4181), 1, + sym_selector_expression, + STATE(4938), 1, sym_expression, - STATE(5035), 1, + STATE(5125), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63364,19 +66960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63384,7 +66980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63401,52 +66997,141 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13894] = 26, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(153), 1, + [15263] = 22, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_is, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 9, + sym__newline, sym_string_start, - ACTIONS(814), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, sym_identifier, - ACTIONS(820), 1, - anon_sym_not, - ACTIONS(1932), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [15372] = 27, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2095), 1, - anon_sym_, - STATE(459), 1, - aux_sym_long_expression_repeat1, - STATE(1411), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1911), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(3338), 1, + STATE(5071), 1, sym_expression, - STATE(5035), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2167), 2, + ACTIONS(1782), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63455,19 +67140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63475,7 +67159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63492,52 +67176,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14011] = 26, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(1932), 1, + [15491] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2199), 1, - anon_sym_, - STATE(568), 1, - aux_sym_long_expression_repeat1, - STATE(1064), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2388), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(1432), 1, - sym_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(4096), 1, sym_call, - STATE(5065), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63546,19 +67233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63566,7 +67252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63583,143 +67269,208 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14128] = 26, - ACTIONS(560), 1, + [15612] = 4, + STATE(813), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2392), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(562), 1, anon_sym_LBRACK, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(570), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(1347), 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(2390), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(1351), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [15685] = 22, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, anon_sym_not, - ACTIONS(2203), 1, - anon_sym_, - STATE(589), 1, - aux_sym_long_expression_repeat1, - STATE(3807), 1, - sym_call, - STATE(3825), 1, - sym_primary_expression, - STATE(4004), 1, - sym_selector_expression, - STATE(4902), 1, - sym_expression, - STATE(5150), 1, - sym_dotted_name, - STATE(5996), 1, - sym_quant_op, - ACTIONS(5), 2, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_is, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(572), 3, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 9, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2396), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(574), 6, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4160), 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, - [14245] = 26, - ACTIONS(538), 1, + [15794] = 26, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(624), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(552), 1, + ACTIONS(628), 1, + anon_sym_LBRACE, + ACTIONS(632), 1, + anon_sym_DQUOTE, + ACTIONS(638), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1381), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1387), 1, anon_sym_not, - ACTIONS(2145), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_LBRACK, - ACTIONS(2149), 1, - anon_sym_LBRACE, - ACTIONS(2153), 1, + ACTIONS(2270), 1, anon_sym_, - ACTIONS(2155), 1, - anon_sym_DQUOTE, - STATE(551), 1, + STATE(595), 1, aux_sym_long_expression_repeat1, - STATE(3716), 1, + STATE(2756), 1, sym_primary_expression, - STATE(3719), 1, + STATE(2877), 1, sym_call, - STATE(3727), 1, + STATE(2904), 1, sym_selector_expression, - STATE(4788), 1, + STATE(4282), 1, sym_expression, - STATE(5075), 1, + STATE(5208), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63728,19 +67479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63748,7 +67499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63765,52 +67516,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14362] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_not, - ACTIONS(1978), 1, + [15911] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2055), 1, - anon_sym_, - STATE(494), 1, - aux_sym_long_expression_repeat1, - STATE(1426), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2398), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(1916), 1, + STATE(4309), 1, sym_selector_expression, - STATE(3307), 1, + STATE(5068), 1, sym_expression, - STATE(5053), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63819,19 +67573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63839,7 +67592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63856,52 +67609,125 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14479] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, + [16032] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(770), 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(2400), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1978), 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, + [16107] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2055), 1, - anon_sym_, - STATE(494), 1, - aux_sym_long_expression_repeat1, - STATE(1426), 1, - sym_primary_expression, - STATE(1659), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(1916), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(3307), 1, + STATE(4888), 1, sym_expression, - STATE(5053), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5777), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63910,19 +67736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63930,7 +67755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63947,143 +67772,275 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14596] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, + [16228] = 6, + ACTIONS(2404), 1, + anon_sym_DOT, + ACTIONS(2407), 1, + anon_sym_QMARK_DOT, + STATE(621), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2007), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(794), 1, - sym_identifier, - ACTIONS(798), 1, - anon_sym_not, - ACTIONS(1904), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(2205), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(779), 1, - sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(1614), 1, - sym_selector_expression, - STATE(3266), 1, - sym_expression, - STATE(5082), 1, - sym_dotted_name, - STATE(5858), 1, - sym_quant_op, - ACTIONS(5), 2, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 33, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16305] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, - anon_sym_DOT, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 27, + sym__newline, + 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(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2191), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(129), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16380] = 14, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 16, + sym__newline, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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(2062), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, - [14713] = 26, - ACTIONS(560), 1, + [16473] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(562), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(564), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(566), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(570), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(576), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, sym_string_start, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(2203), 1, - anon_sym_, - STATE(589), 1, - aux_sym_long_expression_repeat1, - STATE(3807), 1, - sym_call, - STATE(3825), 1, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2410), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(4004), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(4902), 1, + STATE(5068), 1, sym_expression, - STATE(5150), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64092,19 +68049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64112,7 +68068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64129,52 +68085,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14830] = 26, - ACTIONS(139), 1, + [16594] = 26, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(153), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(181), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(185), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1932), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2199), 1, + ACTIONS(2412), 1, anon_sym_, - STATE(568), 1, + STATE(642), 1, aux_sym_long_expression_repeat1, - STATE(1064), 1, + STATE(1411), 1, + sym_call, + STATE(2225), 1, sym_primary_expression, - STATE(1432), 1, - sym_expression, - STATE(1901), 1, + STATE(2270), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, + STATE(3383), 1, + sym_expression, + STATE(5185), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1938), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64183,19 +68139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64203,7 +68159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64220,55 +68176,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14947] = 28, - ACTIONS(714), 1, + [16711] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(2414), 1, + anon_sym_, + STATE(629), 1, + aux_sym_long_expression_repeat1, + STATE(879), 1, sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, + STATE(890), 1, sym_expression, - STATE(5012), 1, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, + sym_selector_expression, + STATE(5146), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5966), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(131), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64277,18 +68230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64296,7 +68250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64313,52 +68267,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15068] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(794), 1, + [16828] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(798), 1, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2212), 1, anon_sym_DQUOTE, - ACTIONS(2193), 1, + ACTIONS(2416), 1, anon_sym_, - STATE(576), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(779), 1, - sym_primary_expression, - STATE(1533), 1, + STATE(3968), 1, sym_call, - STATE(1614), 1, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, sym_selector_expression, - STATE(3292), 1, + STATE(5060), 1, sym_expression, - STATE(5082), 1, + STATE(5088), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64367,19 +68321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64387,7 +68341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64404,52 +68358,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15185] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(794), 1, + [16945] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(798), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(2193), 1, + ACTIONS(2414), 1, anon_sym_, - STATE(576), 1, + STATE(629), 1, aux_sym_long_expression_repeat1, - STATE(779), 1, - sym_primary_expression, - STATE(1533), 1, + STATE(879), 1, sym_call, - STATE(1614), 1, - sym_selector_expression, - STATE(3292), 1, + STATE(890), 1, sym_expression, - STATE(5082), 1, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, + sym_selector_expression, + STATE(5146), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64458,19 +68412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64478,7 +68432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64495,52 +68449,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15302] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(842), 1, + [17062] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(2163), 1, + ACTIONS(2418), 1, anon_sym_, - STATE(697), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2399), 1, - sym_primary_expression, - STATE(2407), 1, + STATE(879), 1, sym_call, - STATE(2505), 1, - sym_selector_expression, - STATE(3848), 1, + STATE(921), 1, sym_expression, - STATE(5000), 1, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, + sym_selector_expression, + STATE(5146), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(2161), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64549,19 +68503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64569,7 +68523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64586,145 +68540,191 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15419] = 28, - ACTIONS(714), 1, + [17179] = 4, + STATE(475), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2392), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2390), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1698), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(2209), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17252] = 5, + ACTIONS(63), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2236), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [15540] = 26, - ACTIONS(490), 1, + [17327] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1273), 1, - anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_identifier, - ACTIONS(2211), 1, + ACTIONS(2420), 1, anon_sym_, - STATE(623), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(860), 1, sym_call, - STATE(3781), 1, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, sym_selector_expression, - STATE(4776), 1, + STATE(3327), 1, sym_expression, - STATE(5123), 1, + STATE(5217), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64733,19 +68733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64753,7 +68753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64770,52 +68770,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15657] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(1978), 1, + [17444] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2213), 1, - anon_sym_, - STATE(588), 1, - aux_sym_long_expression_repeat1, - STATE(1080), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2422), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(1486), 1, - sym_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(1897), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64824,19 +68827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64844,7 +68846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64861,52 +68863,122 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15774] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, + [17565] = 5, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, + sym__newline, sym_string_start, - ACTIONS(1267), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1273), 1, - anon_sym_not, - ACTIONS(1275), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1299), 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(2252), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17640] = 26, + ACTIONS(708), 1, sym_identifier, - ACTIONS(2211), 1, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(2424), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_LBRACK, + ACTIONS(2428), 1, + anon_sym_LBRACE, + ACTIONS(2432), 1, anon_sym_, - STATE(623), 1, + ACTIONS(2434), 1, + anon_sym_DQUOTE, + STATE(645), 1, aux_sym_long_expression_repeat1, - STATE(3657), 1, + STATE(2856), 1, sym_primary_expression, - STATE(3663), 1, - sym_call, - STATE(3781), 1, - sym_selector_expression, - STATE(4776), 1, + STATE(3015), 1, sym_expression, - STATE(5123), 1, + STATE(3034), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64915,19 +68987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64935,7 +69007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64952,55 +69024,193 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15891] = 28, - ACTIONS(534), 1, + [17757] = 5, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(550), 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(552), 1, - sym_string_start, - ACTIONS(624), 1, + ACTIONS(2252), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(626), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17832] = 6, + ACTIONS(2438), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(637), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 26, + sym__newline, + 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(2436), 32, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17909] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(1325), 1, - anon_sym_STAR, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LBRACK, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2132), 1, + anon_sym_DQUOTE, + ACTIONS(2414), 1, + anon_sym_, + STATE(629), 1, + aux_sym_long_expression_repeat1, + STATE(879), 1, sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(4979), 1, + STATE(890), 1, sym_expression, - STATE(5075), 1, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, + sym_selector_expression, + STATE(5146), 1, sym_dotted_name, - STATE(5742), 1, - sym_list_splat, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(131), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2128), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65009,18 +69219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65028,7 +69239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65045,52 +69256,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16012] = 26, - ACTIONS(97), 1, + [18026] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(111), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(121), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(125), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2215), 1, + ACTIONS(2446), 1, anon_sym_, - STATE(483), 1, + STATE(610), 1, aux_sym_long_expression_repeat1, - STATE(1080), 1, - sym_primary_expression, - STATE(1495), 1, - sym_expression, - STATE(1659), 1, + STATE(860), 1, sym_call, - STATE(1897), 1, + STATE(1905), 1, + sym_primary_expression, + STATE(2224), 1, sym_selector_expression, - STATE(5071), 1, + STATE(3342), 1, + sym_expression, + STATE(5221), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65099,19 +69310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65119,7 +69330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65136,52 +69347,193 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16129] = 26, - ACTIONS(560), 1, + [18143] = 6, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(2065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 26, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(562), 1, anon_sym_LBRACK, - ACTIONS(564), 1, + 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(2256), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(566), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [18220] = 5, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(570), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(576), 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(2264), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [18295] = 26, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(187), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(1351), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(2217), 1, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACK, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + ACTIONS(2448), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3807), 1, + STATE(1411), 1, sym_call, - STATE(3825), 1, + STATE(2225), 1, sym_primary_expression, - STATE(4004), 1, + STATE(2270), 1, sym_selector_expression, - STATE(4882), 1, + STATE(3409), 1, sym_expression, - STATE(5150), 1, + STATE(5185), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65190,19 +69542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65210,7 +69562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65227,52 +69579,126 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16246] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, + [18412] = 6, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(2065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, + sym__newline, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1978), 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, + [18489] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2213), 1, - anon_sym_, - STATE(588), 1, - aux_sym_long_expression_repeat1, - STATE(1080), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2450), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(1486), 1, - sym_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(1897), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65281,19 +69707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65301,7 +69726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65318,52 +69743,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16363] = 26, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(664), 1, + [18610] = 26, + ACTIONS(708), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_not, - ACTIONS(2039), 1, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(2424), 1, anon_sym_LPAREN, - ACTIONS(2041), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(2428), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(2434), 1, anon_sym_DQUOTE, - ACTIONS(2219), 1, + ACTIONS(2452), 1, anon_sym_, - STATE(593), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3874), 1, - sym_call, - STATE(4033), 1, - sym_expression, - STATE(4043), 1, + STATE(2856), 1, sym_primary_expression, - STATE(4224), 1, + STATE(3013), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(4990), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65372,19 +69797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65392,7 +69817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65409,52 +69834,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16480] = 26, - ACTIONS(560), 1, + [18727] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(562), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(564), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(566), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(570), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(576), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, sym_string_start, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2203), 1, - anon_sym_, - STATE(589), 1, - aux_sym_long_expression_repeat1, - STATE(3807), 1, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(3825), 1, + STATE(3779), 1, sym_primary_expression, - STATE(4004), 1, + STATE(3900), 1, sym_selector_expression, - STATE(4902), 1, + STATE(4886), 1, sym_expression, - STATE(5150), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5580), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65463,19 +69891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65483,7 +69910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65500,52 +69927,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16597] = 26, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(2039), 1, + [18848] = 26, + ACTIONS(622), 1, anon_sym_LPAREN, - ACTIONS(2041), 1, + ACTIONS(624), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(628), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(632), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2270), 1, anon_sym_, - STATE(483), 1, + STATE(595), 1, aux_sym_long_expression_repeat1, - STATE(3874), 1, - sym_call, - STATE(4014), 1, - sym_expression, - STATE(4043), 1, + STATE(2756), 1, sym_primary_expression, - STATE(4224), 1, + STATE(2877), 1, + sym_call, + STATE(2904), 1, sym_selector_expression, - STATE(4990), 1, + STATE(4282), 1, + sym_expression, + STATE(5208), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(732), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(634), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65554,19 +69981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(636), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65574,7 +70001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65591,55 +70018,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16714] = 28, - ACTIONS(714), 1, + [18965] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(2454), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4910), 1, + STATE(5068), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5764), 1, + STATE(5848), 1, sym_keyword_argument, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65648,18 +70075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65667,7 +70094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65684,55 +70111,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16835] = 28, - ACTIONS(714), 1, + [19086] = 4, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1956), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(720), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [19159] = 28, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(2225), 1, + ACTIONS(2456), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4910), 1, + STATE(5068), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5764), 1, + STATE(5848), 1, sym_keyword_argument, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65741,18 +70237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65760,7 +70256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65777,52 +70273,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16956] = 26, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(664), 1, + [19280] = 26, + ACTIONS(708), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_not, - ACTIONS(2039), 1, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(2424), 1, anon_sym_LPAREN, - ACTIONS(2041), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(2428), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, - anon_sym_DQUOTE, - ACTIONS(2219), 1, + ACTIONS(2432), 1, anon_sym_, - STATE(593), 1, + ACTIONS(2434), 1, + anon_sym_DQUOTE, + STATE(645), 1, aux_sym_long_expression_repeat1, - STATE(3874), 1, - sym_call, - STATE(4033), 1, - sym_expression, - STATE(4043), 1, + STATE(2856), 1, sym_primary_expression, - STATE(4224), 1, + STATE(3015), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(4990), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65831,19 +70327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65851,7 +70347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65868,52 +70364,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17073] = 26, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(664), 1, + [19397] = 26, + ACTIONS(708), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_not, - ACTIONS(2039), 1, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(2424), 1, anon_sym_LPAREN, - ACTIONS(2041), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(2428), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, - anon_sym_DQUOTE, - ACTIONS(2219), 1, + ACTIONS(2432), 1, anon_sym_, - STATE(593), 1, + ACTIONS(2434), 1, + anon_sym_DQUOTE, + STATE(645), 1, aux_sym_long_expression_repeat1, - STATE(3874), 1, - sym_call, - STATE(4033), 1, - sym_expression, - STATE(4043), 1, + STATE(2856), 1, sym_primary_expression, - STATE(4224), 1, + STATE(3015), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(4990), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65922,19 +70418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65942,7 +70438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65959,143 +70455,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17190] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(2131), 1, + [19514] = 17, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_DQUOTE, - ACTIONS(2227), 1, - anon_sym_, - STATE(599), 1, - aux_sym_long_expression_repeat1, - STATE(2351), 1, - sym_primary_expression, - STATE(2376), 1, - sym_expression, - STATE(2407), 1, - sym_call, - STATE(2660), 1, - sym_selector_expression, - STATE(5040), 1, - sym_dotted_name, - STATE(6187), 1, - sym_quant_op, - ACTIONS(5), 2, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2161), 3, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 13, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 6, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [17307] = 26, - ACTIONS(261), 1, + [19613] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(275), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(374), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(378), 1, + ACTIONS(812), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2229), 1, + ACTIONS(2354), 1, anon_sym_, - STATE(483), 1, + STATE(632), 1, aux_sym_long_expression_repeat1, - STATE(2351), 1, - sym_primary_expression, - STATE(2379), 1, - sym_expression, - STATE(2407), 1, + STATE(860), 1, sym_call, - STATE(2660), 1, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, sym_selector_expression, - STATE(5040), 1, + STATE(3321), 1, + sym_expression, + STATE(5217), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(2161), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66104,19 +70591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66124,7 +70611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66141,143 +70628,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17424] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, + [19730] = 4, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(2131), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, - anon_sym_DQUOTE, - ACTIONS(2227), 1, - anon_sym_, - STATE(599), 1, - aux_sym_long_expression_repeat1, - STATE(2351), 1, - sym_primary_expression, - STATE(2376), 1, - sym_expression, - STATE(2407), 1, - sym_call, - STATE(2660), 1, - sym_selector_expression, - STATE(5040), 1, - sym_dotted_name, - STATE(6187), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(438), 2, - anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2161), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2156), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2691), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [17541] = 26, - ACTIONS(261), 1, + [19803] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(275), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(374), 1, + ACTIONS(820), 1, sym_identifier, - ACTIONS(378), 1, + ACTIONS(826), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(2227), 1, + ACTIONS(2302), 1, anon_sym_, - STATE(599), 1, + STATE(686), 1, aux_sym_long_expression_repeat1, - STATE(2351), 1, - sym_primary_expression, - STATE(2376), 1, - sym_expression, - STATE(2407), 1, + STATE(1770), 1, sym_call, - STATE(2660), 1, + STATE(2024), 1, + sym_primary_expression, + STATE(2254), 1, sym_selector_expression, - STATE(5040), 1, + STATE(3359), 1, + sym_expression, + STATE(5087), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(2161), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66286,19 +70751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66306,7 +70771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66323,52 +70788,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17658] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(718), 1, + [19920] = 26, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(732), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(1892), 1, + ACTIONS(842), 1, + sym_identifier, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2231), 1, + ACTIONS(2412), 1, anon_sym_, - STATE(603), 1, + STATE(642), 1, aux_sym_long_expression_repeat1, - STATE(3872), 1, - sym_primary_expression, - STATE(3964), 1, - sym_expression, - STATE(4082), 1, + STATE(1411), 1, sym_call, - STATE(4242), 1, + STATE(2225), 1, + sym_primary_expression, + STATE(2270), 1, sym_selector_expression, - STATE(5026), 1, + STATE(3383), 1, + sym_expression, + STATE(5185), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66377,19 +70842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66397,7 +70862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66414,52 +70879,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17775] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(718), 1, + [20037] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(732), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1892), 1, + ACTIONS(662), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_not, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2233), 1, + ACTIONS(2460), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3872), 1, - sym_primary_expression, - STATE(3954), 1, + STATE(3873), 1, sym_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, + STATE(3901), 1, + sym_primary_expression, + STATE(3975), 1, sym_selector_expression, - STATE(5026), 1, + STATE(4216), 1, + sym_call, + STATE(5164), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66468,19 +70933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66488,7 +70953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66505,52 +70970,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17892] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(718), 1, + [20154] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(732), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1892), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2231), 1, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2462), 1, anon_sym_, - STATE(603), 1, + STATE(669), 1, aux_sym_long_expression_repeat1, - STATE(3872), 1, - sym_primary_expression, - STATE(3964), 1, - sym_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, + STATE(3458), 1, sym_selector_expression, - STATE(5026), 1, + STATE(3593), 1, + sym_call, + STATE(4486), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5269), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66559,19 +71024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66579,7 +71044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66596,52 +71061,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18009] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(718), 1, + [20271] = 4, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2220), 27, + sym__newline, + 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(2222), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(722), 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_check, anon_sym_not, - ACTIONS(732), 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, + [20344] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1892), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1894), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2231), 1, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2462), 1, anon_sym_, - STATE(603), 1, + STATE(669), 1, aux_sym_long_expression_repeat1, - STATE(3872), 1, - sym_primary_expression, - STATE(3964), 1, - sym_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, + STATE(3458), 1, sym_selector_expression, - STATE(5026), 1, + STATE(3593), 1, + sym_call, + STATE(4486), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5269), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1898), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66650,19 +71184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66670,7 +71204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66687,52 +71221,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18126] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(538), 1, + [20461] = 26, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(552), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(2145), 1, + ACTIONS(842), 1, + sym_identifier, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2149), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(2235), 1, + ACTIONS(2412), 1, anon_sym_, - STATE(607), 1, + STATE(642), 1, aux_sym_long_expression_repeat1, - STATE(3574), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(1411), 1, sym_call, - STATE(3835), 1, + STATE(2225), 1, + sym_primary_expression, + STATE(2270), 1, sym_selector_expression, - STATE(5121), 1, + STATE(3383), 1, + sym_expression, + STATE(5185), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, + ACTIONS(229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(2198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66741,19 +71275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(183), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66761,7 +71295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66778,52 +71312,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18243] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(538), 1, - anon_sym_lambda, + [20578] = 28, ACTIONS(542), 1, - anon_sym_not, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2149), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2237), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(3580), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(3835), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(5121), 1, + STATE(4879), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5670), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66832,19 +71369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66852,7 +71388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66869,52 +71405,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18360] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(538), 1, + [20699] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(552), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(2145), 1, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(2149), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2235), 1, + ACTIONS(2354), 1, anon_sym_, - STATE(607), 1, + STATE(632), 1, aux_sym_long_expression_repeat1, - STATE(3574), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(860), 1, sym_call, - STATE(3835), 1, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, sym_selector_expression, - STATE(5121), 1, + STATE(3321), 1, + sym_expression, + STATE(5217), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(2144), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66923,19 +71459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66943,7 +71479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66960,52 +71496,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18477] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(2145), 1, + [20816] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(2149), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2235), 1, - anon_sym_, - STATE(607), 1, - aux_sym_long_expression_repeat1, - STATE(3574), 1, - sym_expression, - STATE(3717), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2464), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3835), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5121), 1, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(624), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3920), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2151), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67014,19 +71553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67034,7 +71572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67051,52 +71589,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18594] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(394), 1, + [20937] = 4, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 27, + sym__newline, + 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(2194), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(398), 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_check, anon_sym_not, - ACTIONS(408), 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, + [21010] = 26, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2239), 1, + ACTIONS(2466), 1, anon_sym_, - STATE(611), 1, + STATE(671), 1, aux_sym_long_expression_repeat1, - STATE(3431), 1, - sym_expression, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, + STATE(860), 1, sym_call, - STATE(3558), 1, + STATE(866), 1, + sym_primary_expression, + STATE(896), 1, + sym_expression, + STATE(1443), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5223), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67105,19 +71712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67125,7 +71732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67142,52 +71749,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18711] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(1165), 1, + [21127] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2241), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(3425), 1, - sym_expression, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(3558), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(5136), 1, + STATE(4874), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5561), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67196,19 +71806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67216,7 +71825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67233,52 +71842,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18828] = 26, - ACTIONS(490), 1, + [21248] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2245), 1, + ACTIONS(2468), 1, anon_sym_, - STATE(646), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3446), 1, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(4370), 1, + STATE(4486), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5208), 1, + STATE(5267), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67287,19 +71896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67307,7 +71916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67324,52 +71933,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18945] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(394), 1, + [21365] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2239), 1, + ACTIONS(2466), 1, anon_sym_, - STATE(611), 1, + STATE(671), 1, aux_sym_long_expression_repeat1, - STATE(3431), 1, - sym_expression, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, + STATE(860), 1, sym_call, - STATE(3558), 1, + STATE(866), 1, + sym_primary_expression, + STATE(896), 1, + sym_expression, + STATE(1443), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5223), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67378,19 +71987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67398,7 +72007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67415,52 +72024,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19062] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(394), 1, + [21482] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2239), 1, + ACTIONS(2470), 1, anon_sym_, - STATE(611), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3431), 1, + STATE(835), 1, sym_expression, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, + STATE(860), 1, sym_call, - STATE(3558), 1, + STATE(866), 1, + sym_primary_expression, + STATE(1443), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5223), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67469,19 +72078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67489,7 +72098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67506,52 +72115,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19179] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1267), 1, + [21599] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2247), 1, - anon_sym_, - STATE(617), 1, - aux_sym_long_expression_repeat1, - STATE(3597), 1, - sym_expression, - STATE(3608), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2472), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3663), 1, + STATE(4096), 1, sym_call, - STATE(3832), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5122), 1, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67560,19 +72172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67580,7 +72191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67597,52 +72208,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19296] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1267), 1, + [21720] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2245), 1, - anon_sym_, - STATE(646), 1, - aux_sym_long_expression_repeat1, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(4370), 1, + STATE(3779), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5208), 1, + STATE(3900), 1, + sym_selector_expression, + STATE(4891), 1, sym_expression, - STATE(6002), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(5524), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67651,19 +72265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67671,7 +72284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67688,52 +72301,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19413] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1267), 1, + [21841] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2249), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(3608), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2474), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3613), 1, - sym_expression, - STATE(3663), 1, + STATE(4096), 1, sym_call, - STATE(3832), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5122), 1, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67742,19 +72358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67762,7 +72377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67779,55 +72394,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19530] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [21962] = 26, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1415), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, + ACTIONS(2424), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_LBRACK, + ACTIONS(2428), 1, + anon_sym_LBRACE, + ACTIONS(2434), 1, + anon_sym_DQUOTE, + ACTIONS(2476), 1, + anon_sym_, + STATE(696), 1, + aux_sym_long_expression_repeat1, + STATE(2889), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(3102), 1, sym_selector_expression, - STATE(4810), 1, + STATE(3115), 1, + sym_call, + STATE(4453), 1, sym_expression, - STATE(5075), 1, + STATE(5119), 1, sym_dotted_name, - STATE(5546), 1, - sym_slice, - STATE(6118), 1, + STATE(6041), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(752), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67836,18 +72448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(726), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67855,7 +72468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67872,52 +72485,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19651] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(490), 1, + [22079] = 26, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(504), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(2478), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2482), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, - anon_sym_DQUOTE, - ACTIONS(2247), 1, + ACTIONS(2486), 1, anon_sym_, - STATE(617), 1, + ACTIONS(2488), 1, + anon_sym_DQUOTE, + STATE(704), 1, aux_sym_long_expression_repeat1, - STATE(3597), 1, - sym_expression, - STATE(3608), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(3778), 1, sym_call, - STATE(3832), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(5122), 1, + STATE(4906), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(734), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(2484), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67926,19 +72539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(556), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67946,7 +72559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67963,52 +72576,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19768] = 26, - ACTIONS(420), 1, + [22196] = 26, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1341), 1, + ACTIONS(584), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(2069), 1, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(2212), 1, anon_sym_DQUOTE, - ACTIONS(2253), 1, + ACTIONS(2216), 1, anon_sym_, - STATE(625), 1, + STATE(580), 1, aux_sym_long_expression_repeat1, - STATE(2365), 1, - sym_call, - STATE(3007), 1, + STATE(3826), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(3219), 1, + STATE(3968), 1, + sym_call, + STATE(4250), 1, sym_selector_expression, - STATE(4262), 1, - sym_expression, - STATE(5058), 1, + STATE(5139), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(2251), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68017,19 +72630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68037,7 +72650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68054,52 +72667,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19885] = 26, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(1978), 1, + [22313] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2213), 1, - anon_sym_, - STATE(588), 1, - aux_sym_long_expression_repeat1, - STATE(1080), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2490), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(1486), 1, - sym_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(1897), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2053), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68108,19 +72724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68128,7 +72743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68145,52 +72760,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20002] = 26, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(702), 1, - sym_identifier, - ACTIONS(706), 1, - anon_sym_not, - ACTIONS(2069), 1, + [22434] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2255), 1, - anon_sym_, - STATE(630), 1, - aux_sym_long_expression_repeat1, - STATE(2365), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(2978), 1, - sym_expression, - STATE(3010), 1, + STATE(3779), 1, sym_primary_expression, - STATE(3224), 1, + STATE(3900), 1, sym_selector_expression, - STATE(5095), 1, + STATE(4875), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5666), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(2251), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68199,19 +72817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68219,7 +72836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68236,52 +72853,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20119] = 26, - ACTIONS(490), 1, + [22555] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(814), 1, + sym_identifier, + ACTIONS(818), 1, + anon_sym_not, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2124), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(1273), 1, - anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_identifier, - ACTIONS(2257), 1, + ACTIONS(2250), 1, anon_sym_, - STATE(483), 1, + STATE(606), 1, aux_sym_long_expression_repeat1, - STATE(3657), 1, + STATE(847), 1, sym_primary_expression, - STATE(3663), 1, + STATE(879), 1, sym_call, - STATE(3781), 1, + STATE(1752), 1, sym_selector_expression, - STATE(4775), 1, + STATE(3315), 1, sym_expression, - STATE(5123), 1, + STATE(5179), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(131), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(2248), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68290,19 +72907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68310,7 +72927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68327,239 +72944,128 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20236] = 28, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, - sym_quant_op, + [22672] = 8, + ACTIONS(1648), 1, + anon_sym_QMARK_COLON, + ACTIONS(1932), 1, + sym_isMutableFlag, + STATE(2155), 1, + sym_dict_expr, + STATE(3300), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [20357] = 26, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(1538), 26, + sym__dedent, sym_string_start, - ACTIONS(1341), 1, - sym_identifier, - ACTIONS(1345), 1, - anon_sym_not, - ACTIONS(2069), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_DQUOTE, - ACTIONS(2261), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(2365), 1, - sym_call, - STATE(3007), 1, - sym_primary_expression, - STATE(3219), 1, - sym_selector_expression, - STATE(4277), 1, - sym_expression, - STATE(5058), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2251), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1536), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [20474] = 28, - ACTIONS(714), 1, + [22753] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(2263), 1, + ACTIONS(2492), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4910), 1, + STATE(5068), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5764), 1, + STATE(5848), 1, sym_keyword_argument, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68568,18 +73074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68587,7 +73093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68604,52 +73110,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20595] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(490), 1, + [22874] = 26, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1345), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2494), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(2498), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, - anon_sym_DQUOTE, - ACTIONS(2247), 1, + ACTIONS(2502), 1, anon_sym_, - STATE(617), 1, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + STATE(694), 1, aux_sym_long_expression_repeat1, - STATE(3597), 1, - sym_expression, - STATE(3608), 1, + STATE(2656), 1, sym_primary_expression, - STATE(3663), 1, + STATE(2751), 1, sym_call, - STATE(3832), 1, + STATE(2755), 1, sym_selector_expression, - STATE(5122), 1, + STATE(4208), 1, + sym_expression, + STATE(5210), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(574), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + ACTIONS(2500), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68658,19 +73164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(532), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68678,7 +73184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68695,143 +73201,203 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20712] = 26, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(1341), 1, - sym_identifier, - ACTIONS(1345), 1, - anon_sym_not, - ACTIONS(2069), 1, + [22991] = 17, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 13, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(2077), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(2253), 1, - anon_sym_, - STATE(625), 1, - aux_sym_long_expression_repeat1, - STATE(2365), 1, - sym_call, - STATE(3007), 1, - sym_primary_expression, - STATE(3219), 1, - sym_selector_expression, - STATE(4262), 1, - sym_expression, - STATE(5058), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(5), 2, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [23090] = 4, + STATE(486), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, + ACTIONS(2300), 27, + sym__newline, + 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(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2251), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2298), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3246), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [20829] = 26, - ACTIONS(420), 1, + [23163] = 26, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(1341), 1, + ACTIONS(820), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(826), 1, anon_sym_not, - ACTIONS(2069), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(2253), 1, + ACTIONS(2506), 1, anon_sym_, - STATE(625), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2365), 1, + STATE(1770), 1, sym_call, - STATE(3007), 1, + STATE(2024), 1, sym_primary_expression, - STATE(3219), 1, + STATE(2254), 1, sym_selector_expression, - STATE(4262), 1, + STATE(3368), 1, sym_expression, - STATE(5058), 1, + STATE(5087), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(2251), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68840,19 +73406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68860,7 +73426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68877,143 +73443,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20946] = 26, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(434), 1, + [23280] = 6, + ACTIONS(2508), 1, + anon_sym_DOT, + ACTIONS(2511), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(687), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 26, + sym__newline, sym_string_start, - ACTIONS(702), 1, - sym_identifier, - ACTIONS(706), 1, - anon_sym_not, - ACTIONS(2069), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_DQUOTE, - ACTIONS(2265), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(2365), 1, - sym_call, - STATE(2992), 1, - sym_expression, - STATE(3010), 1, - sym_primary_expression, - STATE(3224), 1, - sym_selector_expression, - STATE(5095), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2251), 3, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2436), 32, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [21063] = 26, - ACTIONS(420), 1, + [23357] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(702), 1, - sym_identifier, - ACTIONS(706), 1, - anon_sym_not, - ACTIONS(2069), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2255), 1, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2462), 1, anon_sym_, - STATE(630), 1, + STATE(669), 1, aux_sym_long_expression_repeat1, - STATE(2365), 1, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, sym_call, - STATE(2978), 1, - sym_expression, - STATE(3010), 1, + STATE(4486), 1, sym_primary_expression, - STATE(3224), 1, - sym_selector_expression, - STATE(5095), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5269), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(2251), 3, + ACTIONS(2160), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69022,19 +73568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69042,7 +73588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69059,52 +73605,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21180] = 26, - ACTIONS(554), 1, + [23474] = 26, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(1345), 1, sym_identifier, - ACTIONS(560), 1, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2494), 1, anon_sym_LPAREN, - ACTIONS(562), 1, + ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(566), 1, + ACTIONS(2498), 1, anon_sym_LBRACE, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(570), 1, - anon_sym_DQUOTE, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(2267), 1, + ACTIONS(2502), 1, anon_sym_, - STATE(633), 1, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + STATE(694), 1, aux_sym_long_expression_repeat1, - STATE(3783), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + STATE(2656), 1, sym_primary_expression, - STATE(4000), 1, + STATE(2751), 1, + sym_call, + STATE(2755), 1, sym_selector_expression, - STATE(5108), 1, + STATE(4208), 1, + sym_expression, + STATE(5210), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(574), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2500), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69113,19 +73659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(532), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69133,7 +73679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69150,52 +73696,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21297] = 26, - ACTIONS(554), 1, + [23591] = 26, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(820), 1, sym_identifier, - ACTIONS(560), 1, + ACTIONS(826), 1, + anon_sym_not, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(562), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(566), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(570), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(2269), 1, + ACTIONS(2302), 1, anon_sym_, - STATE(483), 1, + STATE(686), 1, aux_sym_long_expression_repeat1, - STATE(3797), 1, - sym_expression, - STATE(3807), 1, + STATE(1770), 1, sym_call, - STATE(3841), 1, + STATE(2024), 1, sym_primary_expression, - STATE(4000), 1, + STATE(2254), 1, sym_selector_expression, - STATE(5108), 1, + STATE(3359), 1, + sym_expression, + STATE(5087), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2134), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69204,19 +73750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69224,7 +73770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69241,52 +73787,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21414] = 26, - ACTIONS(420), 1, + [23708] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(434), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(702), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(125), 1, anon_sym_not, - ACTIONS(2069), 1, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2255), 1, + ACTIONS(2466), 1, anon_sym_, - STATE(630), 1, + STATE(671), 1, aux_sym_long_expression_repeat1, - STATE(2365), 1, + STATE(860), 1, sym_call, - STATE(2978), 1, - sym_expression, - STATE(3010), 1, + STATE(866), 1, sym_primary_expression, - STATE(3224), 1, + STATE(896), 1, + sym_expression, + STATE(1443), 1, sym_selector_expression, - STATE(5095), 1, + STATE(5223), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(2251), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69295,19 +73841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69315,7 +73861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69332,21 +73878,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21531] = 8, - ACTIONS(1740), 1, - anon_sym_QMARK_COLON, - ACTIONS(2129), 1, - sym_isMutableFlag, - STATE(2127), 1, - aux_sym_comparison_operator_repeat1, - STATE(2197), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [23825] = 4, + ACTIONS(2514), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, + ACTIONS(2033), 26, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -69358,7 +73897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -69373,13 +73911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 31, + ACTIONS(2035), 35, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -69395,6 +73936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -69405,52 +73947,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21612] = 26, - ACTIONS(165), 1, + [23898] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(662), 1, sym_identifier, - ACTIONS(812), 1, + ACTIONS(668), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2273), 1, + ACTIONS(2081), 1, anon_sym_, - STATE(645), 1, + STATE(658), 1, aux_sym_long_expression_repeat1, - STATE(1464), 1, + STATE(3878), 1, + sym_expression, + STATE(3901), 1, sym_primary_expression, - STATE(2035), 1, + STATE(3975), 1, sym_selector_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(3302), 1, - sym_expression, - STATE(5083), 1, + STATE(5164), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69459,19 +74001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69479,7 +74021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69496,52 +74038,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21729] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(165), 1, + [24015] = 26, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(179), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(2165), 1, + ACTIONS(1345), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2494), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2498), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(2504), 1, anon_sym_DQUOTE, - ACTIONS(2275), 1, + ACTIONS(2516), 1, anon_sym_, - STATE(638), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1125), 1, + STATE(2656), 1, sym_primary_expression, - STATE(1504), 1, - sym_expression, - STATE(1878), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(2751), 1, sym_call, - STATE(5096), 1, + STATE(2755), 1, + sym_selector_expression, + STATE(4211), 1, + sym_expression, + STATE(5210), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(574), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2500), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69550,19 +74092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(532), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69570,7 +74112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69587,143 +74129,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21846] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(2165), 1, + [24132] = 22, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_LBRACE, - ACTIONS(2175), 1, - anon_sym_DQUOTE, - ACTIONS(2277), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(1125), 1, - sym_primary_expression, - STATE(1508), 1, - sym_expression, - STATE(1878), 1, - sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, - sym_dotted_name, - STATE(5909), 1, - sym_quant_op, - ACTIONS(5), 2, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2271), 3, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2396), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 6, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [21963] = 26, - ACTIONS(554), 1, + [24241] = 26, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(560), 1, + ACTIONS(1415), 1, + anon_sym_not, + ACTIONS(2424), 1, anon_sym_LPAREN, - ACTIONS(562), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(566), 1, + ACTIONS(2428), 1, anon_sym_LBRACE, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(570), 1, + ACTIONS(2434), 1, anon_sym_DQUOTE, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(2267), 1, + ACTIONS(2518), 1, anon_sym_, - STATE(633), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3783), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + STATE(2889), 1, sym_primary_expression, - STATE(4000), 1, + STATE(3102), 1, sym_selector_expression, - STATE(5108), 1, + STATE(3115), 1, + sym_call, + STATE(4459), 1, + sym_expression, + STATE(5119), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69732,19 +74270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69752,7 +74290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69769,52 +74307,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22080] = 26, - ACTIONS(261), 1, + [24358] = 26, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(275), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(850), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(1415), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(2424), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2428), 1, anon_sym_LBRACE, - ACTIONS(2139), 1, - anon_sym_, - ACTIONS(2141), 1, + ACTIONS(2434), 1, anon_sym_DQUOTE, - STATE(649), 1, + ACTIONS(2476), 1, + anon_sym_, + STATE(696), 1, aux_sym_long_expression_repeat1, - STATE(2313), 1, + STATE(2889), 1, sym_primary_expression, - STATE(2328), 1, + STATE(3102), 1, sym_selector_expression, - STATE(2407), 1, + STATE(3115), 1, sym_call, - STATE(3677), 1, + STATE(4453), 1, sym_expression, - STATE(5009), 1, + STATE(5119), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69823,19 +74361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69843,7 +74381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69860,52 +74398,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22197] = 26, - ACTIONS(554), 1, + [24475] = 26, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(560), 1, + ACTIONS(1415), 1, + anon_sym_not, + ACTIONS(2424), 1, anon_sym_LPAREN, - ACTIONS(562), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(566), 1, + ACTIONS(2428), 1, anon_sym_LBRACE, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(570), 1, + ACTIONS(2434), 1, anon_sym_DQUOTE, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(2267), 1, + ACTIONS(2476), 1, anon_sym_, - STATE(633), 1, + STATE(696), 1, aux_sym_long_expression_repeat1, - STATE(3783), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + STATE(2889), 1, sym_primary_expression, - STATE(4000), 1, + STATE(3102), 1, sym_selector_expression, - STATE(5108), 1, + STATE(3115), 1, + sym_call, + STATE(4453), 1, + sym_expression, + STATE(5119), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(572), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2430), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69914,19 +74452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 6, + ACTIONS(726), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69934,7 +74472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69951,21 +74489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22314] = 8, - ACTIONS(1838), 1, - anon_sym_QMARK_COLON, - ACTIONS(2197), 1, - sym_isMutableFlag, - STATE(2185), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [24592] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, + STATE(687), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 27, + sym__newline, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -69992,13 +74524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 31, + ACTIONS(2288), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -70024,52 +74558,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22395] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(139), 1, + [24665] = 26, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(153), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(1932), 1, + ACTIONS(1345), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2494), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2498), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_DQUOTE, - ACTIONS(2279), 1, + ACTIONS(2502), 1, anon_sym_, - STATE(650), 1, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + STATE(694), 1, aux_sym_long_expression_repeat1, - STATE(1879), 1, + STATE(2656), 1, sym_primary_expression, - STATE(2027), 1, + STATE(2751), 1, sym_call, - STATE(2045), 1, - sym_expression, - STATE(2204), 1, + STATE(2755), 1, sym_selector_expression, - STATE(5104), 1, + STATE(4208), 1, + sym_expression, + STATE(5210), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(574), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(2500), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70078,19 +74612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(532), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70098,7 +74632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70115,52 +74649,142 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22512] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, + [24782] = 22, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 9, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(842), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, sym_identifier, - ACTIONS(848), 1, - anon_sym_not, - ACTIONS(2131), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [24891] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2163), 1, - anon_sym_, - STATE(697), 1, - aux_sym_long_expression_repeat1, - STATE(2399), 1, - sym_primary_expression, - STATE(2407), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(2505), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(3848), 1, + STATE(4878), 1, sym_expression, - STATE(5000), 1, + STATE(5220), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5558), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(2161), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70169,19 +74793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70189,7 +74812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70206,52 +74829,126 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22629] = 26, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(179), 1, + [25012] = 9, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(2061), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_PLUS, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 25, + sym__newline, sym_string_start, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, - anon_sym_not, - ACTIONS(2165), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(2281), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(1464), 1, - sym_primary_expression, - STATE(2035), 1, - sym_selector_expression, - STATE(2072), 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(2276), 28, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_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, + [25095] = 26, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(2478), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_LBRACE, + ACTIONS(2488), 1, + anon_sym_DQUOTE, + ACTIONS(2520), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(3778), 1, sym_call, - STATE(3306), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, + sym_selector_expression, + STATE(4909), 1, sym_expression, - STATE(5083), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(734), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2484), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70260,19 +74957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(556), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70280,7 +74977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70297,52 +74994,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22746] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1267), 1, + [25212] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2283), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(4370), 1, + STATE(3779), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5197), 1, + STATE(3900), 1, + sym_selector_expression, + STATE(5038), 1, sym_expression, - STATE(6002), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(5902), 1, + sym_list_splat, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70351,19 +75051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70371,7 +75070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70388,125 +75087,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22863] = 8, - ACTIONS(1838), 1, - anon_sym_QMARK_COLON, - ACTIONS(2197), 1, - sym_isMutableFlag, - STATE(2111), 1, - aux_sym_comparison_operator_repeat1, - STATE(2185), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1588), 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(1586), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [22944] = 26, - ACTIONS(394), 1, + [25333] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(408), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(1105), 1, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1104), 1, anon_sym_not, - ACTIONS(1165), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2285), 1, + ACTIONS(2524), 1, anon_sym_, - STATE(712), 1, + STATE(764), 1, aux_sym_long_expression_repeat1, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2405), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2406), 1, + sym_call, + STATE(2593), 1, sym_selector_expression, - STATE(4769), 1, + STATE(3772), 1, sym_expression, - STATE(5018), 1, + STATE(5095), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70515,19 +75141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70535,7 +75161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70552,52 +75178,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23061] = 26, - ACTIONS(261), 1, + [25450] = 26, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(275), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(850), 1, + ACTIONS(1427), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(1431), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(2287), 1, + ACTIONS(2526), 1, anon_sym_, - STATE(483), 1, + STATE(715), 1, aux_sym_long_expression_repeat1, - STATE(2313), 1, + STATE(2850), 1, + sym_call, + STATE(2852), 1, sym_primary_expression, - STATE(2328), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(3673), 1, + STATE(4428), 1, sym_expression, - STATE(5009), 1, + STATE(5216), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(748), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - ACTIONS(2137), 3, + STATE(3046), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70606,19 +75232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(610), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70626,7 +75252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70643,52 +75269,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23178] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(139), 1, + [25567] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(153), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1932), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(2289), 1, + ACTIONS(2528), 1, anon_sym_, - STATE(483), 1, + STATE(728), 1, aux_sym_long_expression_repeat1, - STATE(1879), 1, + STATE(2373), 1, sym_primary_expression, - STATE(2027), 1, + STATE(2436), 1, sym_call, - STATE(2052), 1, - sym_expression, - STATE(2204), 1, + STATE(2594), 1, sym_selector_expression, - STATE(5104), 1, + STATE(3599), 1, + sym_expression, + STATE(5215), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70697,19 +75323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70717,7 +75343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70734,52 +75360,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23295] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(139), 1, + [25684] = 26, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(153), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(1932), 1, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_not, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(2279), 1, + ACTIONS(2526), 1, anon_sym_, - STATE(650), 1, + STATE(715), 1, aux_sym_long_expression_repeat1, - STATE(1879), 1, - sym_primary_expression, - STATE(2027), 1, + STATE(2850), 1, sym_call, - STATE(2045), 1, - sym_expression, - STATE(2204), 1, + STATE(2852), 1, + sym_primary_expression, + STATE(3042), 1, sym_selector_expression, - STATE(5104), 1, + STATE(4428), 1, + sym_expression, + STATE(5216), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(748), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70788,19 +75414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(610), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70808,7 +75434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70825,52 +75451,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23412] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(139), 1, + [25801] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(153), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(1932), 1, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_not, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(1934), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(1936), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2279), 1, + ACTIONS(2524), 1, anon_sym_, - STATE(650), 1, + STATE(764), 1, aux_sym_long_expression_repeat1, - STATE(1879), 1, + STATE(2405), 1, sym_primary_expression, - STATE(2027), 1, + STATE(2406), 1, sym_call, - STATE(2045), 1, - sym_expression, - STATE(2204), 1, + STATE(2593), 1, sym_selector_expression, - STATE(5104), 1, + STATE(3772), 1, + sym_expression, + STATE(5095), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(213), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2121), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70879,19 +75505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70899,7 +75525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70916,55 +75542,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23529] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [25918] = 26, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1207), 1, + anon_sym_LPAREN, + ACTIONS(1209), 1, + anon_sym_LBRACK, + ACTIONS(1211), 1, + anon_sym_LBRACE, + ACTIONS(1217), 1, + anon_sym_DQUOTE, + ACTIONS(2530), 1, + anon_sym_, + STATE(722), 1, + aux_sym_long_expression_repeat1, + STATE(3482), 1, sym_call, - STATE(3727), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(4782), 1, + STATE(4859), 1, sym_expression, - STATE(5075), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5499), 1, - sym_slice, - STATE(6118), 1, + STATE(6316), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + ACTIONS(568), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70973,18 +75596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(389), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70992,7 +75616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71009,52 +75633,122 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23650] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(165), 1, + [26035] = 5, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 27, + sym__newline, + 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(2400), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(169), 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_check, anon_sym_not, - ACTIONS(179), 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, + [26110] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, sym_string_start, - ACTIONS(2165), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2275), 1, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + ACTIONS(2532), 1, anon_sym_, - STATE(638), 1, + STATE(724), 1, aux_sym_long_expression_repeat1, - STATE(1125), 1, + STATE(3820), 1, sym_primary_expression, - STATE(1504), 1, - sym_expression, - STATE(1878), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(5096), 1, + STATE(4246), 1, + sym_selector_expression, + STATE(4982), 1, + sym_expression, + STATE(5180), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71063,19 +75757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71083,7 +75777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71100,52 +75794,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23767] = 26, - ACTIONS(165), 1, + [26227] = 26, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(812), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - ACTIONS(2273), 1, + ACTIONS(2530), 1, anon_sym_, - STATE(645), 1, + STATE(722), 1, aux_sym_long_expression_repeat1, - STATE(1464), 1, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2035), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(3302), 1, + STATE(4859), 1, sym_expression, - STATE(5083), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71154,19 +75848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71174,7 +75868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71191,52 +75885,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23884] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(97), 1, + [26344] = 26, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(111), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(1978), 1, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_not, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(2291), 1, + ACTIONS(2534), 1, anon_sym_, - STATE(657), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(726), 1, + STATE(2850), 1, + sym_call, + STATE(2852), 1, sym_primary_expression, - STATE(732), 1, - sym_expression, - STATE(1144), 1, + STATE(3042), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, + STATE(4445), 1, + sym_expression, + STATE(5216), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(748), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71245,19 +75939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(610), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71265,7 +75959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71282,52 +75976,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24001] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(97), 1, + [26461] = 26, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(111), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(1978), 1, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_not, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(2019), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(2027), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2526), 1, anon_sym_, - STATE(483), 1, + STATE(715), 1, aux_sym_long_expression_repeat1, - STATE(726), 1, + STATE(2850), 1, + sym_call, + STATE(2852), 1, sym_primary_expression, - STATE(735), 1, - sym_expression, - STATE(1144), 1, + STATE(3042), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, + STATE(4428), 1, + sym_expression, + STATE(5216), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, + ACTIONS(748), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(2023), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71336,19 +76030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(610), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71356,7 +76050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71373,52 +76067,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24118] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(1978), 1, + [26578] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2291), 1, - anon_sym_, - STATE(657), 1, - aux_sym_long_expression_repeat1, - STATE(726), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2536), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(732), 1, - sym_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(5099), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71427,19 +76124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71447,7 +76143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71464,52 +76160,282 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24235] = 26, - ACTIONS(87), 1, + [26699] = 5, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 27, + sym__newline, + 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(129), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(97), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [26774] = 13, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, + sym__newline, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(101), 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_check, anon_sym_not, - ACTIONS(111), 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, + [26865] = 14, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 16, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1978), 1, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [26958] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1980), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1982), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1988), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2291), 1, - anon_sym_, - STATE(657), 1, - aux_sym_long_expression_repeat1, - STATE(726), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(732), 1, - sym_expression, - STATE(1144), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, + STATE(4911), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5614), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(193), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1957), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1984), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71518,19 +76444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71538,7 +76463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71555,52 +76480,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24352] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(686), 1, + [27079] = 26, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(700), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(1918), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - ACTIONS(2295), 1, + ACTIONS(2538), 1, anon_sym_, - STATE(661), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2766), 1, - sym_primary_expression, - STATE(2872), 1, - sym_expression, - STATE(2993), 1, + STATE(3482), 1, sym_call, - STATE(3042), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5059), 1, + STATE(4869), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71609,19 +76534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71629,7 +76554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71646,52 +76571,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24469] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(686), 1, + [27196] = 7, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2228), 1, + anon_sym_and, + ACTIONS(2232), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 26, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2540), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(690), 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_check, anon_sym_not, - ACTIONS(700), 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, + [27275] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1918), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2297), 1, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + ACTIONS(2544), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2766), 1, + STATE(3820), 1, sym_primary_expression, - STATE(2881), 1, - sym_expression, - STATE(2993), 1, + STATE(4216), 1, sym_call, - STATE(3042), 1, + STATE(4246), 1, sym_selector_expression, - STATE(5059), 1, + STATE(4976), 1, + sym_expression, + STATE(5180), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71700,19 +76697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71720,7 +76717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71737,52 +76734,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24586] = 26, + [27392] = 26, + ACTIONS(482), 1, + sym_identifier, ACTIONS(490), 1, anon_sym_lambda, + ACTIONS(494), 1, + anon_sym_not, ACTIONS(504), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2245), 1, + ACTIONS(2546), 1, anon_sym_, - STATE(646), 1, + STATE(729), 1, aux_sym_long_expression_repeat1, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + STATE(2350), 1, sym_call, - STATE(4370), 1, + STATE(2453), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5208), 1, + STATE(2516), 1, sym_expression, - STATE(6002), 1, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, + sym_dotted_name, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + ACTIONS(566), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71791,7 +76788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -71803,7 +76800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71811,7 +76808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71828,52 +76825,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24703] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(686), 1, + [27509] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(700), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(1918), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(2295), 1, + ACTIONS(2528), 1, anon_sym_, - STATE(661), 1, + STATE(728), 1, aux_sym_long_expression_repeat1, - STATE(2766), 1, + STATE(2373), 1, sym_primary_expression, - STATE(2872), 1, - sym_expression, - STATE(2993), 1, + STATE(2436), 1, sym_call, - STATE(3042), 1, + STATE(2594), 1, sym_selector_expression, - STATE(5059), 1, + STATE(3599), 1, + sym_expression, + STATE(5215), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71882,19 +76879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71902,7 +76899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71919,52 +76916,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24820] = 26, - ACTIONS(678), 1, + [27626] = 26, + ACTIONS(482), 1, sym_identifier, - ACTIONS(686), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(690), 1, + ACTIONS(494), 1, anon_sym_not, - ACTIONS(700), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1918), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1920), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1922), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2295), 1, + ACTIONS(2546), 1, anon_sym_, - STATE(661), 1, + STATE(729), 1, aux_sym_long_expression_repeat1, - STATE(2766), 1, + STATE(2350), 1, + sym_call, + STATE(2453), 1, sym_primary_expression, - STATE(2872), 1, + STATE(2516), 1, sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, + STATE(2704), 1, sym_selector_expression, - STATE(5059), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(736), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(1924), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(566), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71973,19 +76970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71993,7 +76990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72010,54 +77007,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24937] = 27, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + [27743] = 26, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1084), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1090), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(1981), 1, + anon_sym_LPAREN, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(2548), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(2373), 1, sym_primary_expression, - STATE(3719), 1, + STATE(2436), 1, sym_call, - STATE(3727), 1, + STATE(2594), 1, sym_selector_expression, - STATE(4971), 1, + STATE(3611), 1, sym_expression, - STATE(5075), 1, + STATE(5215), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6027), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3920), 2, + ACTIONS(506), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72066,18 +77061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72085,7 +77081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72102,52 +77098,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25056] = 26, - ACTIONS(628), 1, + [27860] = 26, + ACTIONS(482), 1, sym_identifier, - ACTIONS(638), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(642), 1, + ACTIONS(494), 1, anon_sym_not, - ACTIONS(652), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1944), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2550), 1, anon_sym_, - STATE(667), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2793), 1, - sym_primary_expression, - STATE(2906), 1, - sym_expression, - STATE(3027), 1, + STATE(2350), 1, sym_call, - STATE(3040), 1, + STATE(2424), 1, + sym_expression, + STATE(2453), 1, + sym_primary_expression, + STATE(2704), 1, sym_selector_expression, - STATE(5079), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5965), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + ACTIONS(566), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72156,19 +77152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72176,7 +77172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72193,52 +77189,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25173] = 26, - ACTIONS(628), 1, + [27977] = 26, + ACTIONS(482), 1, sym_identifier, - ACTIONS(638), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(642), 1, + ACTIONS(494), 1, anon_sym_not, - ACTIONS(652), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1944), 1, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(2301), 1, + ACTIONS(2546), 1, anon_sym_, - STATE(483), 1, + STATE(729), 1, aux_sym_long_expression_repeat1, - STATE(2793), 1, + STATE(2350), 1, + sym_call, + STATE(2453), 1, sym_primary_expression, - STATE(2914), 1, + STATE(2516), 1, sym_expression, - STATE(3027), 1, - sym_call, - STATE(3040), 1, + STATE(2704), 1, sym_selector_expression, - STATE(5079), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5965), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(562), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + ACTIONS(566), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72247,19 +77243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72267,7 +77263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72284,52 +77280,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25290] = 26, - ACTIONS(628), 1, + [28094] = 26, + ACTIONS(640), 1, sym_identifier, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(652), 1, - sym_string_start, - ACTIONS(1944), 1, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(2552), 1, anon_sym_, - STATE(667), 1, + STATE(751), 1, aux_sym_long_expression_repeat1, - STATE(2793), 1, + STATE(3919), 1, sym_primary_expression, - STATE(2906), 1, + STATE(3937), 1, sym_expression, - STATE(3027), 1, + STATE(3948), 1, sym_call, - STATE(3040), 1, + STATE(4252), 1, sym_selector_expression, - STATE(5079), 1, + STATE(5203), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72338,19 +77334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72358,7 +77354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72375,55 +77371,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25407] = 28, - ACTIONS(714), 1, + [28211] = 26, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - ACTIONS(2303), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(2528), 1, + anon_sym_, + STATE(728), 1, + aux_sym_long_expression_repeat1, + STATE(2373), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2436), 1, sym_call, - STATE(4214), 1, + STATE(2594), 1, sym_selector_expression, - STATE(4910), 1, + STATE(3599), 1, sym_expression, - STATE(5012), 1, + STATE(5215), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6027), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + ACTIONS(506), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72432,18 +77425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(442), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72451,7 +77445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72468,52 +77462,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25528] = 26, - ACTIONS(628), 1, + [28328] = 26, + ACTIONS(640), 1, sym_identifier, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(652), 1, - sym_string_start, - ACTIONS(1944), 1, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(1946), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(2552), 1, anon_sym_, - STATE(667), 1, + STATE(751), 1, aux_sym_long_expression_repeat1, - STATE(2793), 1, + STATE(3919), 1, sym_primary_expression, - STATE(2906), 1, + STATE(3937), 1, sym_expression, - STATE(3027), 1, + STATE(3948), 1, sym_call, - STATE(3040), 1, + STATE(4252), 1, sym_selector_expression, - STATE(5079), 1, + STATE(5203), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(740), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1950), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72522,19 +77516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72542,7 +77536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72559,143 +77553,202 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25645] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(472), 1, - sym_string_start, - ACTIONS(1960), 1, + [28445] = 15, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(1970), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_, - STATE(672), 1, - aux_sym_long_expression_repeat1, - STATE(2627), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, - sym_dotted_name, - STATE(5958), 1, - sym_quant_op, - ACTIONS(5), 2, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [28540] = 5, + ACTIONS(2558), 1, + anon_sym_EQ, + STATE(630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, - anon_sym_DOT, + ACTIONS(2554), 27, + sym__newline, + 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(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1966), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2556), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(468), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2819), 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, - [25762] = 26, - ACTIONS(448), 1, + [28615] = 26, + ACTIONS(257), 1, sym_identifier, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(462), 1, + ACTIONS(271), 1, anon_sym_not, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(1960), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2307), 1, + ACTIONS(2560), 1, anon_sym_, - STATE(483), 1, + STATE(758), 1, aux_sym_long_expression_repeat1, - STATE(2624), 1, + STATE(2337), 1, sym_expression, - STATE(2672), 1, + STATE(2365), 1, sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5072), 1, + STATE(2456), 1, + sym_selector_expression, + STATE(5114), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72704,19 +77757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72724,7 +77777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72741,52 +77794,130 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25879] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(472), 1, - sym_string_start, - ACTIONS(1960), 1, + [28732] = 10, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, - anon_sym_LBRACE, - ACTIONS(1970), 1, - anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_, - STATE(672), 1, - aux_sym_long_expression_repeat1, - STATE(2627), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, - sym_dotted_name, - STATE(5958), 1, - sym_quant_op, - ACTIONS(5), 2, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, + ACTIONS(1940), 22, + sym__newline, + 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(1942), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [28817] = 28, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, anon_sym_DOT, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - STATE(2826), 2, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2562), 1, + anon_sym_RPAREN, + STATE(4095), 1, + sym_primary_expression, + STATE(4096), 1, + sym_call, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, + sym_dotted_name, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72795,19 +77926,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72815,7 +77945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72832,52 +77962,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25996] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(472), 1, - sym_string_start, - ACTIONS(1960), 1, + [28938] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1962), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_, - STATE(672), 1, - aux_sym_long_expression_repeat1, - STATE(2627), 1, - sym_expression, - STATE(2672), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2564), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, + STATE(4096), 1, sym_call, - STATE(5072), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(606), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2826), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1966), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72886,19 +78019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72906,7 +78038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72923,52 +78055,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26113] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(1267), 1, + [29059] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2309), 1, - anon_sym_, - STATE(676), 1, - aux_sym_long_expression_repeat1, - STATE(3729), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2566), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3739), 1, - sym_expression, - STATE(4027), 1, - sym_selector_expression, - STATE(4111), 1, + STATE(4096), 1, sym_call, - STATE(5069), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72977,19 +78112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72997,7 +78131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73014,52 +78148,132 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26230] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, + [29180] = 12, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 20, + sym__newline, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1267), 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, + [29269] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2311), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(3729), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3735), 1, - sym_expression, - STATE(4027), 1, - sym_selector_expression, - STATE(4111), 1, + STATE(4096), 1, sym_call, - STATE(5069), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73068,19 +78282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73088,7 +78301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73105,52 +78318,214 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26347] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, + [29390] = 16, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(612), 1, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(618), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [29487] = 16, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, + sym__newline, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1267), 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, + [29584] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(1247), 1, + anon_sym_not, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2309), 1, + ACTIONS(1255), 1, + sym_identifier, + ACTIONS(2570), 1, anon_sym_, - STATE(676), 1, + STATE(748), 1, aux_sym_long_expression_repeat1, - STATE(3729), 1, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, STATE(3739), 1, - sym_expression, - STATE(4027), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, + STATE(4842), 1, + sym_expression, + STATE(5162), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73159,19 +78534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73179,7 +78554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73196,52 +78571,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26464] = 26, - ACTIONS(490), 1, + [29701] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(1267), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(1247), 1, + anon_sym_not, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2309), 1, + ACTIONS(1255), 1, + sym_identifier, + ACTIONS(2570), 1, anon_sym_, - STATE(676), 1, + STATE(748), 1, aux_sym_long_expression_repeat1, - STATE(3729), 1, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, STATE(3739), 1, - sym_expression, - STATE(4027), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, + STATE(4842), 1, + sym_expression, + STATE(5162), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(620), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73250,19 +78625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73270,7 +78645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73287,52 +78662,132 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26581] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(420), 1, + [29818] = 15, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2326), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym__newline, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(424), 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_check, anon_sym_not, - ACTIONS(434), 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, + [29913] = 26, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(480), 1, sym_string_start, - ACTIONS(2069), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(1247), 1, + anon_sym_not, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2313), 1, + ACTIONS(1255), 1, + sym_identifier, + ACTIONS(2572), 1, anon_sym_, - STATE(680), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2314), 1, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, - STATE(2315), 1, - sym_expression, - STATE(2338), 1, + STATE(3739), 1, sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, + STATE(4845), 1, + sym_expression, + STATE(5162), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73341,19 +78796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73361,7 +78816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73378,52 +78833,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26698] = 26, - ACTIONS(412), 1, + [30030] = 26, + ACTIONS(137), 1, sym_identifier, - ACTIONS(420), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(424), 1, + ACTIONS(151), 1, anon_sym_not, - ACTIONS(434), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(2069), 1, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(2315), 1, + ACTIONS(2574), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2314), 1, - sym_primary_expression, - STATE(2321), 1, + STATE(1386), 1, sym_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(1770), 1, sym_call, - STATE(5063), 1, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73432,19 +78887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73452,7 +78907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73469,52 +78924,130 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26815] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(420), 1, + [30147] = 13, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, + sym__newline, + 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(424), 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_check, anon_sym_not, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(2069), 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, + [30238] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(2313), 1, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(2576), 1, anon_sym_, - STATE(680), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2314), 1, + STATE(3919), 1, sym_primary_expression, - STATE(2315), 1, + STATE(3940), 1, sym_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3948), 1, sym_call, - STATE(5063), 1, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2454), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73523,19 +79056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73543,7 +79076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73560,52 +79093,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26932] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(2069), 1, + [30355] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(2071), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(2073), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2313), 1, - anon_sym_, - STATE(680), 1, - aux_sym_long_expression_repeat1, - STATE(2314), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2578), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(2315), 1, - sym_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(4096), 1, sym_call, - STATE(5063), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(442), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(446), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73614,19 +79150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73634,7 +79169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73651,52 +79186,279 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27049] = 26, - ACTIONS(506), 1, + [30476] = 12, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 20, + sym__newline, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(514), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [30565] = 10, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 22, + sym__newline, + 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(1942), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(518), 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_check, anon_sym_not, - ACTIONS(528), 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, + [30650] = 10, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 22, + sym__newline, + 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(1942), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [30735] = 26, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(393), 1, sym_string_start, - ACTIONS(2085), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - ACTIONS(2317), 1, + ACTIONS(2530), 1, anon_sym_, - STATE(685), 1, + STATE(722), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, + STATE(3482), 1, sym_call, - STATE(2613), 1, - sym_expression, - STATE(2669), 1, + STATE(3533), 1, sym_primary_expression, - STATE(2681), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5056), 1, + STATE(4859), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73705,19 +79467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73725,7 +79487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73742,52 +79504,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27166] = 26, - ACTIONS(71), 1, + [30852] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(85), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1912), 1, - anon_sym_, - ACTIONS(1914), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - STATE(693), 1, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + ACTIONS(2532), 1, + anon_sym_, + STATE(724), 1, aux_sym_long_expression_repeat1, - STATE(1127), 1, + STATE(3820), 1, sym_primary_expression, - STATE(1513), 1, - sym_expression, - STATE(1533), 1, + STATE(4216), 1, sym_call, - STATE(2098), 1, + STATE(4246), 1, sym_selector_expression, - STATE(5107), 1, + STATE(4982), 1, + sym_expression, + STATE(5180), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73796,19 +79558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73816,7 +79578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73833,52 +79595,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27283] = 26, - ACTIONS(506), 1, + [30969] = 26, + ACTIONS(257), 1, sym_identifier, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(518), 1, + ACTIONS(271), 1, anon_sym_not, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(2085), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2319), 1, + ACTIONS(2580), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, + STATE(2365), 1, + sym_primary_expression, + STATE(2406), 1, sym_call, - STATE(2609), 1, + STATE(2412), 1, sym_expression, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, + STATE(2456), 1, sym_selector_expression, - STATE(5056), 1, + STATE(5114), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73887,19 +79649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73907,7 +79669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73924,52 +79686,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27400] = 26, - ACTIONS(506), 1, + [31086] = 26, + ACTIONS(640), 1, sym_identifier, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(2085), 1, + ACTIONS(644), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(650), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(654), 1, anon_sym_DQUOTE, - ACTIONS(2317), 1, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(2552), 1, anon_sym_, - STATE(685), 1, + STATE(751), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2613), 1, - sym_expression, - STATE(2669), 1, + STATE(3919), 1, sym_primary_expression, - STATE(2681), 1, - sym_selector_expression, - STATE(5056), 1, - sym_dotted_name, - STATE(5947), 1, + STATE(3937), 1, + sym_expression, + STATE(3948), 1, + sym_call, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, + sym_dotted_name, + STATE(6173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + ACTIONS(656), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73978,19 +79740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(658), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73998,7 +79760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74015,52 +79777,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27517] = 26, - ACTIONS(9), 1, + [31203] = 26, + ACTIONS(257), 1, sym_identifier, - ACTIONS(25), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(45), 1, + ACTIONS(271), 1, anon_sym_not, - ACTIONS(55), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(2039), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(2041), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2321), 1, + ACTIONS(2560), 1, anon_sym_, - STATE(483), 1, + STATE(758), 1, aux_sym_long_expression_repeat1, - STATE(3862), 1, + STATE(2337), 1, + sym_expression, + STATE(2365), 1, sym_primary_expression, - STATE(3874), 1, + STATE(2406), 1, sym_call, - STATE(4139), 1, + STATE(2456), 1, sym_selector_expression, - STATE(4917), 1, - sym_expression, - STATE(5116), 1, + STATE(5114), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4382), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(2045), 3, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74069,19 +79831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74089,7 +79851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74106,52 +79868,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27634] = 26, - ACTIONS(506), 1, - sym_identifier, - ACTIONS(514), 1, + [31320] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(528), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(2085), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2087), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2317), 1, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + ACTIONS(2532), 1, anon_sym_, - STATE(685), 1, + STATE(724), 1, aux_sym_long_expression_repeat1, - STATE(2396), 1, - sym_call, - STATE(2613), 1, - sym_expression, - STATE(2669), 1, + STATE(3820), 1, sym_primary_expression, - STATE(2681), 1, + STATE(4216), 1, + sym_call, + STATE(4246), 1, sym_selector_expression, - STATE(5056), 1, + STATE(4982), 1, + sym_expression, + STATE(5180), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(600), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(604), 3, + ACTIONS(670), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74160,19 +79922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74180,7 +79942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74197,52 +79959,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27751] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(748), 1, - anon_sym_not, - ACTIONS(1267), 1, + [31437] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2323), 1, - anon_sym_, - STATE(694), 1, - aux_sym_long_expression_repeat1, - STATE(3663), 1, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(4283), 1, + STATE(3779), 1, sym_primary_expression, - STATE(4344), 1, - sym_expression, - STATE(4414), 1, + STATE(3900), 1, sym_selector_expression, - STATE(5041), 1, + STATE(4877), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5642), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74251,19 +80016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(556), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74271,7 +80035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74288,52 +80052,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27868] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(744), 1, + [31558] = 26, + ACTIONS(456), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(470), 1, anon_sym_not, - ACTIONS(1267), 1, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2323), 1, + ACTIONS(2582), 1, anon_sym_, - STATE(694), 1, + STATE(770), 1, aux_sym_long_expression_repeat1, - STATE(3663), 1, - sym_call, - STATE(4283), 1, + STATE(3583), 1, sym_primary_expression, - STATE(4344), 1, + STATE(3584), 1, sym_expression, - STATE(4414), 1, + STATE(3593), 1, + sym_call, + STATE(3756), 1, sym_selector_expression, - STATE(5041), 1, + STATE(5214), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74342,19 +80106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74362,7 +80126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74379,52 +80143,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27985] = 26, - ACTIONS(578), 1, + [31675] = 26, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(582), 1, + ACTIONS(1104), 1, + anon_sym_not, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(588), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(592), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(2325), 1, + ACTIONS(2584), 1, anon_sym_, - STATE(695), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2678), 1, + STATE(2405), 1, sym_primary_expression, - STATE(2684), 1, - sym_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2406), 1, sym_call, - STATE(5051), 1, + STATE(2593), 1, + sym_selector_expression, + STATE(3788), 1, + sym_expression, + STATE(5095), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74433,19 +80197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74453,7 +80217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74470,52 +80234,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28102] = 26, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(1105), 1, + [31792] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(436), 1, anon_sym_not, - ACTIONS(1165), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(2285), 1, + ACTIONS(2586), 1, anon_sym_, - STATE(712), 1, + STATE(767), 1, aux_sym_long_expression_repeat1, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2334), 1, + sym_expression, + STATE(2369), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2436), 1, + sym_call, + STATE(2458), 1, sym_selector_expression, - STATE(4769), 1, - sym_expression, - STATE(5018), 1, + STATE(5158), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74524,19 +80288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74544,7 +80308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74561,52 +80325,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28219] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(113), 1, + [31909] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(117), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(436), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(2327), 1, + ACTIONS(2586), 1, anon_sym_, - STATE(483), 1, + STATE(767), 1, aux_sym_long_expression_repeat1, - STATE(1127), 1, + STATE(2334), 1, + sym_expression, + STATE(2369), 1, sym_primary_expression, - STATE(1533), 1, + STATE(2436), 1, sym_call, - STATE(1535), 1, - sym_expression, - STATE(2098), 1, + STATE(2458), 1, sym_selector_expression, - STATE(5107), 1, + STATE(5158), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74615,19 +80379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74635,7 +80399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74652,52 +80416,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28336] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(744), 1, + [32026] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(436), 1, anon_sym_not, - ACTIONS(1267), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(2329), 1, + ACTIONS(2588), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(3663), 1, - sym_call, - STATE(4283), 1, - sym_primary_expression, - STATE(4353), 1, + STATE(2338), 1, sym_expression, - STATE(4414), 1, + STATE(2369), 1, + sym_primary_expression, + STATE(2436), 1, + sym_call, + STATE(2458), 1, sym_selector_expression, - STATE(5041), 1, + STATE(5158), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74706,19 +80470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74726,7 +80490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74743,52 +80507,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28453] = 26, - ACTIONS(578), 1, + [32143] = 26, + ACTIONS(456), 1, sym_identifier, - ACTIONS(582), 1, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(588), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(592), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(2331), 1, + ACTIONS(2582), 1, anon_sym_, - STATE(483), 1, + STATE(770), 1, aux_sym_long_expression_repeat1, - STATE(2676), 1, - sym_expression, - STATE(2678), 1, + STATE(3583), 1, sym_primary_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(3584), 1, + sym_expression, + STATE(3593), 1, sym_call, - STATE(5051), 1, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74797,19 +80561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74817,7 +80581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74834,52 +80598,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28570] = 26, - ACTIONS(578), 1, + [32260] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(582), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(1981), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(588), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(592), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(2325), 1, + ACTIONS(2586), 1, anon_sym_, - STATE(695), 1, + STATE(767), 1, aux_sym_long_expression_repeat1, - STATE(2678), 1, - sym_primary_expression, - STATE(2684), 1, + STATE(2334), 1, sym_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2369), 1, + sym_primary_expression, + STATE(2436), 1, sym_call, - STATE(5051), 1, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(506), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + ACTIONS(510), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74888,19 +80652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(442), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74908,7 +80672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74925,52 +80689,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28687] = 26, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(842), 1, + [32377] = 26, + ACTIONS(456), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(470), 1, anon_sym_not, - ACTIONS(2131), 1, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2333), 1, + ACTIONS(2590), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(2399), 1, + STATE(3583), 1, sym_primary_expression, - STATE(2407), 1, + STATE(3593), 1, sym_call, - STATE(2505), 1, - sym_selector_expression, - STATE(3829), 1, + STATE(3621), 1, sym_expression, - STATE(5000), 1, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(438), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2456), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(2161), 3, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74979,19 +80743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74999,7 +80763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75016,52 +80780,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28804] = 26, - ACTIONS(490), 1, + [32494] = 26, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1267), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(1273), 1, + ACTIONS(1247), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1255), 1, sym_identifier, - ACTIONS(2211), 1, + ACTIONS(2570), 1, anon_sym_, - STATE(623), 1, + STATE(748), 1, aux_sym_long_expression_repeat1, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3781), 1, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, sym_selector_expression, - STATE(4776), 1, + STATE(4842), 1, sym_expression, - STATE(5123), 1, + STATE(5162), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(676), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75070,19 +80834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75090,7 +80854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75107,52 +80871,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28921] = 26, - ACTIONS(578), 1, + [32611] = 26, + ACTIONS(137), 1, sym_identifier, - ACTIONS(582), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(588), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(592), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(2325), 1, + ACTIONS(2592), 1, anon_sym_, - STATE(695), 1, + STATE(749), 1, aux_sym_long_expression_repeat1, - STATE(2678), 1, - sym_primary_expression, - STATE(2684), 1, + STATE(1399), 1, sym_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(1770), 1, sym_call, - STATE(5051), 1, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(610), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3055), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(594), 3, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75161,19 +80925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75181,7 +80945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75198,52 +80962,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29038] = 26, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(744), 1, + [32728] = 26, + ACTIONS(137), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(151), 1, anon_sym_not, - ACTIONS(1267), 1, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(1995), 1, anon_sym_LPAREN, - ACTIONS(1269), 1, + ACTIONS(1997), 1, anon_sym_LBRACK, - ACTIONS(1271), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1275), 1, + ACTIONS(2005), 1, anon_sym_DQUOTE, - ACTIONS(2323), 1, + ACTIONS(2592), 1, anon_sym_, - STATE(694), 1, + STATE(749), 1, aux_sym_long_expression_repeat1, - STATE(3663), 1, + STATE(1399), 1, + sym_expression, + STATE(1770), 1, sym_call, - STATE(4283), 1, + STATE(2008), 1, sym_primary_expression, - STATE(4344), 1, - sym_expression, - STATE(4414), 1, + STATE(2240), 1, sym_selector_expression, - STATE(5041), 1, + STATE(5196), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(225), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3547), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2243), 3, + ACTIONS(2001), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75252,19 +81016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 6, + ACTIONS(157), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75272,7 +81036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75289,125 +81053,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29155] = 8, - ACTIONS(1740), 1, - anon_sym_QMARK_COLON, - ACTIONS(2129), 1, - sym_isMutableFlag, - STATE(2197), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1588), 26, - sym__dedent, + [32845] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(536), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(2494), 1, anon_sym_LPAREN, + ACTIONS(2496), 1, anon_sym_LBRACK, + ACTIONS(2498), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + ACTIONS(2594), 1, + anon_sym_, + STATE(787), 1, + aux_sym_long_expression_repeat1, + STATE(2651), 1, + sym_expression, + STATE(2719), 1, + sym_primary_expression, + STATE(2736), 1, + sym_selector_expression, + STATE(2751), 1, + sym_call, + STATE(5171), 1, + sym_dotted_name, + STATE(6038), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(574), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(2986), 2, + sym_binary_operator, + sym_subscript, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2500), 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(1586), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2885), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(532), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [29236] = 26, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(1165), 1, + STATE(2983), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2981), 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, + [32962] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2285), 1, - anon_sym_, - STATE(712), 1, - aux_sym_long_expression_repeat1, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2596), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(4769), 1, + STATE(5068), 1, sym_expression, - STATE(5018), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75416,19 +81201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75436,7 +81220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75453,52 +81237,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29353] = 26, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(806), 1, + [33083] = 26, + ACTIONS(456), 1, sym_identifier, - ACTIONS(812), 1, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(470), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1243), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(1249), 1, anon_sym_DQUOTE, - ACTIONS(2273), 1, + ACTIONS(2582), 1, anon_sym_, - STATE(645), 1, + STATE(770), 1, aux_sym_long_expression_repeat1, - STATE(1464), 1, + STATE(3583), 1, sym_primary_expression, - STATE(2035), 1, - sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(3302), 1, + STATE(3584), 1, sym_expression, - STATE(5083), 1, + STATE(3593), 1, + sym_call, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(578), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + ACTIONS(582), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75507,19 +81291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(476), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75527,7 +81311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75544,52 +81328,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29470] = 26, - ACTIONS(165), 1, + [33200] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(179), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(201), 1, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(205), 1, + ACTIONS(1104), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2335), 1, + ACTIONS(2524), 1, anon_sym_, - STATE(705), 1, + STATE(764), 1, aux_sym_long_expression_repeat1, - STATE(1900), 1, + STATE(2405), 1, sym_primary_expression, - STATE(2072), 1, + STATE(2406), 1, sym_call, - STATE(2093), 1, - sym_expression, - STATE(2102), 1, + STATE(2593), 1, sym_selector_expression, - STATE(5047), 1, + STATE(3772), 1, + sym_expression, + STATE(5095), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75598,19 +81382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75618,7 +81402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75635,143 +81419,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29587] = 26, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(179), 1, + [33317] = 4, + STATE(685), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2598), 27, + sym__newline, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(2165), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, - anon_sym_DQUOTE, - ACTIONS(2337), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(1900), 1, - sym_primary_expression, - STATE(2072), 1, - sym_call, - STATE(2090), 1, - sym_expression, - STATE(2102), 1, - sym_selector_expression, - STATE(5047), 1, - sym_dotted_name, - STATE(5909), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(209), 2, - anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2171), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2600), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2240), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [29704] = 26, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(201), 1, + [33390] = 26, + ACTIONS(369), 1, sym_identifier, - ACTIONS(205), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(383), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - ACTIONS(2335), 1, + ACTIONS(2602), 1, anon_sym_, - STATE(705), 1, + STATE(473), 1, aux_sym_long_expression_repeat1, - STATE(1900), 1, - sym_primary_expression, - STATE(2072), 1, + STATE(3482), 1, sym_call, - STATE(2093), 1, + STATE(3541), 1, sym_expression, - STATE(2102), 1, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, sym_selector_expression, - STATE(5047), 1, + STATE(5239), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75780,19 +81542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75800,7 +81562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75817,52 +81579,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29821] = 26, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(201), 1, + [33507] = 26, + ACTIONS(369), 1, sym_identifier, - ACTIONS(205), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(383), 1, anon_sym_not, - ACTIONS(2165), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - ACTIONS(2335), 1, + ACTIONS(2602), 1, anon_sym_, - STATE(705), 1, + STATE(473), 1, aux_sym_long_expression_repeat1, - STATE(1900), 1, - sym_primary_expression, - STATE(2072), 1, + STATE(3482), 1, sym_call, - STATE(2093), 1, + STATE(3541), 1, sym_expression, - STATE(2102), 1, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, sym_selector_expression, - STATE(5047), 1, + STATE(5239), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(2171), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75871,19 +81633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75891,7 +81653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75908,55 +81670,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29938] = 28, - ACTIONS(714), 1, + [33624] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(2339), 1, + ACTIONS(2604), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4910), 1, + STATE(5068), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5764), 1, + STATE(5848), 1, sym_keyword_argument, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75965,18 +81727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75984,7 +81746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76001,52 +81763,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30059] = 26, - ACTIONS(57), 1, + [33745] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(71), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(75), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(85), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1904), 1, + ACTIONS(2202), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2204), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2206), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, - anon_sym_DQUOTE, - ACTIONS(2341), 1, + ACTIONS(2210), 1, anon_sym_, - STATE(710), 1, + ACTIONS(2212), 1, + anon_sym_DQUOTE, + STATE(627), 1, aux_sym_long_expression_repeat1, - STATE(724), 1, + STATE(3968), 1, + sym_call, + STATE(3976), 1, sym_primary_expression, - STATE(741), 1, - sym_expression, - STATE(1129), 1, + STATE(4260), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, + STATE(5020), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + ACTIONS(2208), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76055,19 +81817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76075,7 +81837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76092,52 +81854,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30176] = 26, - ACTIONS(57), 1, + [33862] = 26, + ACTIONS(257), 1, sym_identifier, - ACTIONS(71), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(75), 1, + ACTIONS(271), 1, anon_sym_not, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(1904), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2343), 1, + ACTIONS(2560), 1, anon_sym_, - STATE(483), 1, + STATE(758), 1, aux_sym_long_expression_repeat1, - STATE(724), 1, - sym_primary_expression, - STATE(744), 1, + STATE(2337), 1, sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(2365), 1, + sym_primary_expression, + STATE(2406), 1, sym_call, - STATE(5044), 1, + STATE(2456), 1, + sym_selector_expression, + STATE(5114), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76146,19 +81908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76166,7 +81928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76183,52 +81945,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30293] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(1904), 1, + [33979] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2341), 1, - anon_sym_, - STATE(710), 1, - aux_sym_long_expression_repeat1, - STATE(724), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2606), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(741), 1, - sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(4096), 1, sym_call, - STATE(5044), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76237,19 +82002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76257,7 +82021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76274,52 +82038,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30410] = 26, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(1165), 1, + [34100] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(1167), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1169), 1, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(1175), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(2345), 1, - anon_sym_, - STATE(483), 1, - aux_sym_long_expression_repeat1, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2608), 1, + anon_sym_RPAREN, + STATE(4095), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(4761), 1, + STATE(5068), 1, sym_expression, - STATE(5018), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3679), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(478), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76328,19 +82095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 6, + ACTIONS(694), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76348,7 +82114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76365,52 +82131,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30527] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(71), 1, + [34221] = 26, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(85), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(1904), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(2478), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2482), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, - anon_sym_DQUOTE, - ACTIONS(2341), 1, + ACTIONS(2486), 1, anon_sym_, - STATE(710), 1, + ACTIONS(2488), 1, + anon_sym_DQUOTE, + STATE(704), 1, aux_sym_long_expression_repeat1, - STATE(724), 1, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(741), 1, - sym_expression, - STATE(1129), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, + STATE(4906), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(734), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2191), 3, + ACTIONS(2484), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76419,19 +82185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(556), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76439,7 +82205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76456,52 +82222,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30644] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(756), 1, + [34338] = 26, + ACTIONS(512), 1, sym_identifier, - ACTIONS(762), 1, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(526), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(2494), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2498), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2504), 1, anon_sym_DQUOTE, - ACTIONS(2347), 1, + ACTIONS(2610), 1, anon_sym_, - STATE(718), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1365), 1, + STATE(2615), 1, + sym_expression, + STATE(2719), 1, sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(2065), 1, + STATE(2736), 1, sym_selector_expression, - STATE(3318), 1, - sym_expression, - STATE(5089), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(574), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + ACTIONS(2500), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76510,19 +82276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(532), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76530,7 +82296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76547,52 +82313,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30761] = 26, + [34455] = 26, ACTIONS(71), 1, anon_sym_lambda, ACTIONS(85), 1, sym_string_start, - ACTIONS(756), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(762), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(2138), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2142), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE, - ACTIONS(2347), 1, + ACTIONS(2446), 1, anon_sym_, - STATE(718), 1, + STATE(610), 1, aux_sym_long_expression_repeat1, - STATE(1365), 1, - sym_primary_expression, - STATE(1533), 1, + STATE(860), 1, sym_call, - STATE(2065), 1, + STATE(1905), 1, + sym_primary_expression, + STATE(2224), 1, sym_selector_expression, - STATE(3318), 1, + STATE(3342), 1, sym_expression, - STATE(5089), 1, + STATE(5221), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + ACTIONS(2378), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76601,7 +82367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -76613,7 +82379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76621,7 +82387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76638,52 +82404,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30878] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(113), 1, + [34572] = 26, + ACTIONS(369), 1, sym_identifier, - ACTIONS(117), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(383), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(1209), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(1912), 1, - anon_sym_, - ACTIONS(1914), 1, + ACTIONS(1217), 1, anon_sym_DQUOTE, - STATE(693), 1, + ACTIONS(2602), 1, + anon_sym_, + STATE(473), 1, aux_sym_long_expression_repeat1, - STATE(1127), 1, - sym_primary_expression, - STATE(1513), 1, - sym_expression, - STATE(1533), 1, + STATE(3482), 1, sym_call, - STATE(2098), 1, + STATE(3541), 1, + sym_expression, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, sym_selector_expression, - STATE(5107), 1, + STATE(5239), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(568), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76692,19 +82458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(389), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76712,7 +82478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76729,55 +82495,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30995] = 28, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, + [34689] = 26, ACTIONS(538), 1, + sym_identifier, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1704), 1, - anon_sym_COLON, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(2478), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_LBRACE, + ACTIONS(2488), 1, + anon_sym_DQUOTE, + ACTIONS(2612), 1, + anon_sym_, + STATE(798), 1, + aux_sym_long_expression_repeat1, + STATE(3724), 1, + sym_expression, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, sym_selector_expression, - STATE(4824), 1, - sym_expression, - STATE(5075), 1, + STATE(5099), 1, sym_dotted_name, - STATE(5483), 1, - sym_slice, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2484), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76786,18 +82549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4177), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76805,7 +82569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76822,52 +82586,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31116] = 26, - ACTIONS(71), 1, + [34806] = 26, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(756), 1, + ACTIONS(1092), 1, sym_identifier, - ACTIONS(762), 1, + ACTIONS(1098), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(2180), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2182), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2184), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2190), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2614), 1, anon_sym_, - STATE(483), 1, + STATE(502), 1, aux_sym_long_expression_repeat1, - STATE(1365), 1, + STATE(2314), 1, sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(2065), 1, + STATE(2361), 1, sym_selector_expression, - STATE(3326), 1, + STATE(2406), 1, + sym_call, + STATE(3610), 1, sym_expression, - STATE(5089), 1, + STATE(5145), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(395), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76876,19 +82640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(277), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76896,7 +82660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76913,52 +82677,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31233] = 26, - ACTIONS(155), 1, + [34923] = 26, + ACTIONS(538), 1, sym_identifier, - ACTIONS(165), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(169), 1, + ACTIONS(550), 1, anon_sym_not, - ACTIONS(179), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(2165), 1, + ACTIONS(2478), 1, anon_sym_LPAREN, - ACTIONS(2167), 1, + ACTIONS(2480), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2482), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(2488), 1, anon_sym_DQUOTE, - ACTIONS(2275), 1, + ACTIONS(2612), 1, anon_sym_, - STATE(638), 1, + STATE(798), 1, aux_sym_long_expression_repeat1, - STATE(1125), 1, - sym_primary_expression, - STATE(1504), 1, + STATE(3724), 1, sym_expression, - STATE(1878), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(3778), 1, sym_call, - STATE(5096), 1, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(209), 2, + ACTIONS(734), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(2271), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2484), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76967,19 +82731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(4177), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 6, + ACTIONS(556), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76987,7 +82751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77004,55 +82768,143 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31350] = 28, - ACTIONS(714), 1, + [35040] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(1967), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(1971), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2616), 1, + anon_sym_, + STATE(799), 1, + aux_sym_long_expression_repeat1, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3854), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(562), 2, anon_sym_DOT, - ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(566), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [35157] = 26, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(1092), 1, sym_identifier, - ACTIONS(2351), 1, - anon_sym_RPAREN, - STATE(4056), 1, + ACTIONS(1098), 1, + anon_sym_not, + ACTIONS(2180), 1, + anon_sym_LPAREN, + ACTIONS(2182), 1, + anon_sym_LBRACK, + ACTIONS(2184), 1, + anon_sym_LBRACE, + ACTIONS(2190), 1, + anon_sym_DQUOTE, + ACTIONS(2286), 1, + anon_sym_, + STATE(791), 1, + aux_sym_long_expression_repeat1, + STATE(2314), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(2361), 1, sym_selector_expression, - STATE(4910), 1, + STATE(2406), 1, + sym_call, + STATE(3606), 1, sym_expression, - STATE(5012), 1, + STATE(5145), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + ACTIONS(395), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2186), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77061,18 +82913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77080,7 +82933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77097,55 +82950,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31471] = 28, - ACTIONS(714), 1, + [35274] = 28, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1698), 1, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(2353), 1, - anon_sym_RPAREN, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(1752), 1, + anon_sym_COLON, + STATE(3778), 1, sym_call, - STATE(4214), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4910), 1, + STATE(4892), 1, sym_expression, - STATE(5012), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, + STATE(5749), 1, + sym_slice, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77154,18 +83007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77173,7 +83026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77190,52 +83043,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31592] = 26, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(756), 1, + [35395] = 26, + ACTIONS(512), 1, sym_identifier, - ACTIONS(762), 1, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(526), 1, anon_sym_not, - ACTIONS(1904), 1, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(2494), 1, anon_sym_LPAREN, - ACTIONS(1906), 1, + ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(2498), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(2504), 1, anon_sym_DQUOTE, - ACTIONS(2347), 1, + ACTIONS(2594), 1, anon_sym_, - STATE(718), 1, + STATE(787), 1, aux_sym_long_expression_repeat1, - STATE(1365), 1, + STATE(2651), 1, + sym_expression, + STATE(2719), 1, sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(2065), 1, + STATE(2736), 1, sym_selector_expression, - STATE(3318), 1, - sym_expression, - STATE(5089), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(197), 2, + ACTIONS(574), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2066), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1910), 3, + ACTIONS(2500), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77244,19 +83097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 6, + ACTIONS(532), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77264,7 +83117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77281,337 +83134,291 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31709] = 10, - ACTIONS(61), 1, - anon_sym_if, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(2359), 1, - anon_sym_and, - ACTIONS(2361), 1, - anon_sym_or, - ACTIONS(2363), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 25, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [35512] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, + ACTIONS(682), 1, anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(690), 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(696), 1, sym_float, - ACTIONS(2355), 28, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_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, - [31793] = 21, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(2381), 1, + ACTIONS(1409), 1, anon_sym_not, - ACTIONS(2387), 1, - anon_sym_PIPE, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2391), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_is, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(1476), 1, - aux_sym_comparison_operator_repeat1, - STATE(2059), 1, - sym_argument_list, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2618), 1, + anon_sym_RPAREN, + STATE(4095), 1, + sym_primary_expression, + STATE(4096), 1, + sym_call, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, + sym_dotted_name, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2383), 2, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2395), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(2365), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, + STATE(4409), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [31899] = 10, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(2401), 1, - anon_sym_and, - ACTIONS(2403), 1, - anon_sym_or, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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(2357), 25, - sym__newline, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [35633] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(560), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(2478), 1, anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2488), 1, anon_sym_DQUOTE, + ACTIONS(2620), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(3718), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2484), 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(2355), 28, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [31983] = 21, - ACTIONS(2407), 1, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [35750] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + ACTIONS(1963), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2419), 1, - anon_sym_not, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2435), 1, - anon_sym_is, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - STATE(1481), 1, - aux_sym_comparison_operator_repeat1, - STATE(2083), 1, - sym_argument_list, - ACTIONS(3), 2, + ACTIONS(1967), 1, + anon_sym_LBRACE, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(2622), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3867), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2421), 2, + ACTIONS(562), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(566), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2423), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2411), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2433), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - 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(2365), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [32089] = 5, - ACTIONS(89), 1, - anon_sym_if, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [35867] = 4, + ACTIONS(2624), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 27, + ACTIONS(2154), 26, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -77621,7 +83428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -77636,13 +83442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 31, + ACTIONS(2156), 35, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -77658,6 +83467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -77668,53 +83478,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [32163] = 27, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + [35940] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(822), 1, + ACTIONS(1327), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(1331), 1, anon_sym_not, - STATE(183), 1, - aux_sym_check_statement_repeat1, - STATE(2027), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN, + ACTIONS(1965), 1, + anon_sym_LBRACK, + ACTIONS(1967), 1, + anon_sym_LBRACE, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(2616), 1, + anon_sym_, + STATE(799), 1, + aux_sym_long_expression_repeat1, + STATE(2350), 1, sym_call, - STATE(2033), 1, + STATE(2433), 1, sym_primary_expression, - STATE(2164), 1, + STATE(2720), 1, sym_selector_expression, - STATE(3347), 1, + STATE(3854), 1, sym_expression, - STATE(5144), 1, + STATE(5231), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5987), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + ACTIONS(562), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(566), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77723,18 +83532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(2757), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77742,7 +83552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77759,157 +83569,202 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32281] = 5, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 27, - sym__newline, + [36057] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + ACTIONS(1963), 1, anon_sym_LPAREN, + ACTIONS(1965), 1, anon_sym_LBRACK, + ACTIONS(1967), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1971), 1, + anon_sym_DQUOTE, + ACTIONS(2616), 1, + anon_sym_, + STATE(799), 1, + aux_sym_long_expression_repeat1, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3854), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(562), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(566), 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(2441), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [32355] = 6, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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(2443), 26, - sym__newline, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [36174] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(161), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1995), 1, anon_sym_LPAREN, + ACTIONS(1997), 1, anon_sym_LBRACK, + ACTIONS(1999), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(2005), 1, anon_sym_DQUOTE, + ACTIONS(2592), 1, + anon_sym_, + STATE(749), 1, + aux_sym_long_expression_repeat1, + STATE(1399), 1, + sym_expression, + STATE(1770), 1, + sym_call, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, + sym_dotted_name, + STATE(6093), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(225), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2001), 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(2445), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2268), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [32431] = 6, - ACTIONS(89), 1, + STATE(2248), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [36291] = 7, + ACTIONS(63), 1, anon_sym_if, - ACTIONS(2405), 1, + ACTIONS(2061), 1, + anon_sym_and, + ACTIONS(2065), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(699), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, + ACTIONS(2542), 26, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -77936,12 +83791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 31, + ACTIONS(2540), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -77956,7 +83812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -77968,241 +83823,763 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [32507] = 5, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 27, - sym__newline, + [36370] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(698), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(2168), 1, anon_sym_LPAREN, + ACTIONS(2170), 1, anon_sym_LBRACK, + ACTIONS(2172), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2626), 1, + anon_sym_, + STATE(819), 1, + aux_sym_long_expression_repeat1, + STATE(4096), 1, + sym_call, + STATE(4232), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, + sym_dotted_name, + STATE(6329), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2174), 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(2453), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4410), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [32581] = 6, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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(2455), 26, - sym__newline, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [36487] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(560), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(2478), 1, anon_sym_LPAREN, + ACTIONS(2480), 1, anon_sym_LBRACK, + ACTIONS(2482), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(2488), 1, anon_sym_DQUOTE, + ACTIONS(2612), 1, + anon_sym_, + STATE(798), 1, + aux_sym_long_expression_repeat1, + STATE(3724), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2484), 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(2457), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [32657] = 5, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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(2459), 27, - sym__newline, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [36604] = 26, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(85), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(792), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(2138), 1, anon_sym_LPAREN, + ACTIONS(2140), 1, anon_sym_LBRACK, + ACTIONS(2142), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2148), 1, + anon_sym_DQUOTE, + ACTIONS(2446), 1, + anon_sym_, + STATE(610), 1, + aux_sym_long_expression_repeat1, + STATE(860), 1, + sym_call, + STATE(1905), 1, + sym_primary_expression, + STATE(2224), 1, + sym_selector_expression, + STATE(3342), 1, + sym_expression, + STATE(5221), 1, + sym_dotted_name, + STATE(6308), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(209), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2378), 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(2461), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2264), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [32731] = 5, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(1765), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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(2459), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [36721] = 28, + ACTIONS(680), 1, anon_sym_LPAREN, + ACTIONS(682), 1, anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(690), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2628), 1, + anon_sym_RPAREN, + STATE(4095), 1, + sym_primary_expression, + STATE(4096), 1, + sym_call, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, + sym_dotted_name, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4409), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [36842] = 26, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(2478), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_LBRACE, + ACTIONS(2486), 1, + anon_sym_, + ACTIONS(2488), 1, + anon_sym_DQUOTE, + STATE(704), 1, + aux_sym_long_expression_repeat1, + STATE(3778), 1, + sym_call, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, + sym_selector_expression, + STATE(4906), 1, + sym_expression, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2484), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4121), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [36959] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(2168), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_LBRACK, + ACTIONS(2172), 1, + anon_sym_LBRACE, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2626), 1, + anon_sym_, + STATE(819), 1, + aux_sym_long_expression_repeat1, + STATE(4096), 1, + sym_call, + STATE(4232), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, + sym_dotted_name, + STATE(6329), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2174), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4410), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [37076] = 28, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym_RPAREN, + STATE(4095), 1, + sym_primary_expression, + STATE(4096), 1, + sym_call, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, + sym_dotted_name, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4409), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [37197] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(2168), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_LBRACK, + ACTIONS(2172), 1, + anon_sym_LBRACE, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2626), 1, + anon_sym_, + STATE(819), 1, + aux_sym_long_expression_repeat1, + STATE(4096), 1, + sym_call, + STATE(4232), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, + sym_dotted_name, + STATE(6329), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2174), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4410), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [37314] = 5, + ACTIONS(2632), 1, + anon_sym_PIPE, + STATE(813), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 26, + sym__newline, + 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_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, @@ -78213,13 +84590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 31, + ACTIONS(1956), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -78245,19 +84625,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [32805] = 5, - ACTIONS(89), 1, - anon_sym_if, + [37389] = 4, + ACTIONS(2635), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 27, + ACTIONS(1973), 26, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -78267,7 +84644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -78282,13 +84658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 31, + ACTIONS(1975), 35, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -78304,6 +84683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -78314,16 +84694,108 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [32879] = 5, - ACTIONS(61), 1, - anon_sym_if, + [37462] = 28, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1409), 1, + anon_sym_not, + ACTIONS(1758), 1, + sym_identifier, + ACTIONS(2637), 1, + anon_sym_RPAREN, + STATE(4095), 1, + sym_primary_expression, + STATE(4096), 1, + sym_call, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, + sym_expression, + STATE(5205), 1, + sym_dotted_name, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4409), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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(189), 27, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [37583] = 5, + ACTIONS(2639), 1, + anon_sym_EQ, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 27, sym__newline, sym__dedent, sym_string_start, @@ -78351,12 +84823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 31, + ACTIONS(2556), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -78383,16 +84857,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [32953] = 5, - ACTIONS(61), 1, - anon_sym_if, + [37658] = 4, + STATE(592), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 27, + ACTIONS(2598), 27, sym__newline, sym__dedent, sym_string_start, @@ -78420,13 +84891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 31, + ACTIONS(2600), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -78452,21 +84926,200 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33027] = 6, - ACTIONS(61), 1, - anon_sym_if, - ACTIONS(2363), 1, + [37731] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(2494), 1, + anon_sym_LPAREN, + ACTIONS(2496), 1, + anon_sym_LBRACK, + ACTIONS(2498), 1, + anon_sym_LBRACE, + ACTIONS(2504), 1, + anon_sym_DQUOTE, + ACTIONS(2594), 1, + anon_sym_, + STATE(787), 1, + aux_sym_long_expression_repeat1, + STATE(2651), 1, + sym_expression, + STATE(2719), 1, + sym_primary_expression, + STATE(2736), 1, + sym_selector_expression, + STATE(2751), 1, + sym_call, + STATE(5171), 1, + sym_dotted_name, + STATE(6038), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(574), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2986), 2, + sym_binary_operator, + sym_subscript, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2500), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2885), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(532), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2983), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2981), 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, + [37848] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(2168), 1, + anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_LBRACK, + ACTIONS(2172), 1, + anon_sym_LBRACE, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2641), 1, + anon_sym_, + STATE(502), 1, + aux_sym_long_expression_repeat1, + STATE(4096), 1, + sym_call, + STATE(4229), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, + sym_dotted_name, + STATE(6329), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2174), 3, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4410), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [37965] = 5, + ACTIONS(139), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 26, - sym__newline, - sym__dedent, + ACTIONS(2254), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -78474,6 +85127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -78490,12 +85144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2445), 31, + ACTIONS(2252), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -78522,50 +85177,63 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33103] = 6, - ACTIONS(61), 1, - anon_sym_if, - ACTIONS(2363), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [38039] = 17, + ACTIONS(2643), 1, anon_sym_LPAREN, + ACTIONS(2645), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2649), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2657), 1, anon_sym_PIPE, + ACTIONS(2659), 1, anon_sym_AMP, + ACTIONS(2661), 1, anon_sym_CARET, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2663), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2458), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 31, + ACTIONS(2386), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -78573,7 +85241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -78582,7 +85249,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, @@ -78592,16 +85258,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33179] = 5, - ACTIONS(61), 1, - anon_sym_if, + [38137] = 4, + ACTIONS(2639), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 27, + ACTIONS(2554), 27, sym__newline, sym__dedent, sym_string_start, @@ -78629,12 +85292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2453), 31, + ACTIONS(2556), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -78661,18 +85326,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33253] = 6, - ACTIONS(61), 1, + [38209] = 9, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(2667), 1, anon_sym_if, - ACTIONS(2363), 1, + ACTIONS(2669), 1, + anon_sym_and, + ACTIONS(2671), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(586), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 26, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 25, sym__newline, sym__dedent, sym_string_start, @@ -78682,7 +85355,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_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -78699,13 +85371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 31, + ACTIONS(2276), 27, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -78719,8 +85389,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -78731,17 +85399,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33329] = 5, - ACTIONS(61), 1, - anon_sym_if, + [38291] = 4, + STATE(918), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 27, - sym__newline, + ACTIONS(2154), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -78768,13 +85432,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 31, + ACTIONS(2156), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -78800,16 +85467,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33403] = 5, - ACTIONS(61), 1, + [38363] = 7, + ACTIONS(2667), 1, anon_sym_if, + ACTIONS(2669), 1, + anon_sym_and, + ACTIONS(2671), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(586), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 27, + ACTIONS(2542), 26, sym__newline, sym__dedent, sym_string_start, @@ -78820,7 +85491,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, @@ -78837,13 +85507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 31, + ACTIONS(2540), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -78857,7 +85527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -78869,122 +85538,139 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33477] = 5, - ACTIONS(61), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [38441] = 22, + ACTIONS(1944), 1, anon_sym_LPAREN, + ACTIONS(1946), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2679), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2465), 31, - anon_sym_import, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 9, + sym__newline, + 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(2384), 20, + anon_sym_import, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [33551] = 27, - ACTIONS(161), 1, + [38549] = 27, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(828), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(832), 1, + ACTIONS(846), 1, anon_sym_not, - STATE(161), 1, + STATE(213), 1, aux_sym_check_statement_repeat1, - STATE(1943), 1, - sym_primary_expression, - STATE(2072), 1, + STATE(1411), 1, sym_call, - STATE(2208), 1, + STATE(2225), 1, + sym_primary_expression, + STATE(2270), 1, sym_selector_expression, - STATE(3351), 1, + STATE(3403), 1, sym_expression, - STATE(5092), 1, + STATE(5185), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78993,18 +85679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79012,7 +85698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79029,23 +85715,103 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33669] = 7, - ACTIONS(61), 1, + [38667] = 22, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(2359), 1, anon_sym_and, - ACTIONS(2363), 1, - anon_sym_PLUS, + anon_sym_or, + ACTIONS(2394), 9, + sym__newline, + 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(2396), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [38775] = 5, + ACTIONS(2689), 1, + anon_sym_EQ, + STATE(948), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, - sym__newline, - sym__dedent, + ACTIONS(2554), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -79053,6 +85819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -79069,12 +85836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 30, + ACTIONS(2556), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -79089,6 +85858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -79100,135 +85870,148 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33747] = 9, - ACTIONS(61), 1, - anon_sym_if, - ACTIONS(2359), 1, - anon_sym_and, - ACTIONS(2363), 1, - anon_sym_PLUS, - ACTIONS(2447), 1, + [38849] = 22, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_and, anon_sym_or, - ACTIONS(2469), 25, + ACTIONS(2306), 9, sym__newline, - 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_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2467), 27, + ACTIONS(2308), 20, anon_sym_import, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, 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, - [33829] = 9, - ACTIONS(61), 1, - anon_sym_if, - ACTIONS(2359), 1, - anon_sym_and, - ACTIONS(2363), 1, - anon_sym_PLUS, + [38957] = 13, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, + ACTIONS(2691), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 13, + ACTIONS(2695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, sym__newline, 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(2469), 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(2449), 24, + sym_float, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -79239,30 +86022,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, 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, - [33911] = 7, - ACTIONS(89), 1, + [39047] = 7, + ACTIONS(2667), 1, anon_sym_if, - ACTIONS(2401), 1, + ACTIONS(2669), 1, anon_sym_and, - ACTIONS(2405), 1, + ACTIONS(2671), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(586), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, + ACTIONS(2244), 26, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -79286,13 +86073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 30, + ACTIONS(2242), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -79317,129 +86104,67 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33989] = 9, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(2401), 1, - anon_sym_and, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(2447), 1, + [39125] = 14, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2469), 25, - sym__newline, - 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, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2697), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2699), 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, - ACTIONS(2467), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_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, - [34071] = 4, - STATE(774), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2473), 27, + ACTIONS(1940), 16, sym__newline, 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(2471), 33, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -79448,7 +86173,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, @@ -79458,23 +86182,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34143] = 4, - STATE(752), 1, - aux_sym_dotted_name_repeat1, + [39217] = 10, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 27, - sym__newline, - sym__dedent, + ACTIONS(2069), 21, 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, @@ -79490,17 +86221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2475), 33, + ACTIONS(2067), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -79526,23 +86256,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34215] = 7, - ACTIONS(61), 1, + [39301] = 5, + ACTIONS(2701), 1, anon_sym_if, - ACTIONS(2359), 1, - anon_sym_and, - ACTIONS(2363), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(699), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2481), 26, + ACTIONS(2254), 27, sym__newline, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -79550,6 +86276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -79566,13 +86293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2479), 30, + ACTIONS(2252), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -79586,6 +86313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -79597,55 +86325,68 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34293] = 4, - ACTIONS(2487), 1, - anon_sym_DASH_GT, + [39375] = 15, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 26, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, sym__newline, 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(2483), 34, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -79654,8 +86395,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, anon_sym_is, @@ -79665,75 +86404,75 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34365] = 22, - ACTIONS(2369), 1, + [39469] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2649), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(2387), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2389), 1, + ACTIONS(2659), 1, anon_sym_AMP, - ACTIONS(2391), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2665), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - STATE(2059), 1, + STATE(2222), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + ACTIONS(2647), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 2, + ACTIONS(2655), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, + ACTIONS(2663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2491), 9, - sym__newline, - sym__dedent, + ACTIONS(2382), 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(2489), 20, + ACTIONS(2384), 21, anon_sym_import, anon_sym_assert, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -79751,62 +86490,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34473] = 22, - ACTIONS(2369), 1, + [39577] = 16, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2387), 1, - anon_sym_PIPE, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2391), 1, - anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2079), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - STATE(2059), 1, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + STATE(1318), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + ACTIONS(2691), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 2, + ACTIONS(2697), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, + ACTIONS(2699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 9, + ACTIONS(1940), 14, sym__newline, sym__dedent, sym_string_start, @@ -79814,80 +86532,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_AT, anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [34581] = 5, - ACTIONS(2509), 1, anon_sym_PIPE, - STATE(758), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 26, - sym__newline, - 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 33, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -79896,7 +86561,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, @@ -79906,130 +86570,163 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34655] = 4, - ACTIONS(2516), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 26, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [39673] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2721), 1, anon_sym_PIPE, + ACTIONS(2723), 1, anon_sym_AMP, + ACTIONS(2725), 1, anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2512), 34, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 21, + anon_sym_import, + anon_sym_assert, anon_sym_rule, + anon_sym_for, 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_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, - [34727] = 13, - ACTIONS(2369), 1, + [39781] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2649), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(2399), 1, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2659), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2665), 1, anon_sym_QMARK_LBRACK, - STATE(2059), 1, + STATE(2222), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + ACTIONS(2647), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 2, + ACTIONS(2655), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, - sym__newline, - 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, + ACTIONS(2663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 30, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 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(2396), 21, + anon_sym_import, + anon_sym_assert, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -80039,75 +86736,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, 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, - [34817] = 14, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [39889] = 9, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2228), 1, + anon_sym_and, + ACTIONS(2232), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2385), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 16, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 13, sym__newline, 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(2278), 13, + anon_sym_STAR_STAR, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_TILDE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 30, + anon_sym_QMARK_LBRACK, + ACTIONS(2242), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -80118,75 +86808,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, 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, - [34909] = 15, - ACTIONS(2369), 1, + [39971] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2649), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(2391), 1, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2659), 1, + anon_sym_AMP, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2399), 1, + ACTIONS(2665), 1, anon_sym_QMARK_LBRACK, - STATE(2059), 1, + STATE(2222), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + ACTIONS(2647), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 2, + ACTIONS(2655), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, + ACTIONS(2663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 15, - sym__newline, - sym__dedent, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 8, 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(2518), 30, + ACTIONS(2308), 21, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -80196,81 +86895,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, 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, - [35003] = 16, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2391), 1, - anon_sym_CARET, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [40079] = 4, + STATE(918), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2383), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2385), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, - sym__newline, + ACTIONS(2220), 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(2518), 30, + ACTIONS(2222), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, 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, @@ -80279,6 +86959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -80288,40 +86969,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35099] = 12, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [40151] = 6, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 20, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, sym__newline, - 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_PLUS, + 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, @@ -80332,21 +87005,22 @@ 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(2518), 30, + ACTIONS(2242), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -80355,6 +87029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -80364,31 +87039,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35187] = 10, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [40227] = 4, + ACTIONS(2558), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 22, + ACTIONS(2554), 27, sym__newline, - 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, @@ -80404,14 +87071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2518), 32, + ACTIONS(2556), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -80438,34 +87107,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35271] = 10, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [40299] = 4, + ACTIONS(2733), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 22, - sym__newline, - sym__dedent, + ACTIONS(2154), 25, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -80478,15 +87137,18 @@ 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(2518), 32, + ACTIONS(2156), 35, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -80502,6 +87164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -80512,62 +87175,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35355] = 22, - ACTIONS(2369), 1, + [40371] = 21, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2075), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2387), 1, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2346), 1, anon_sym_PIPE, - ACTIONS(2389), 1, + ACTIONS(2348), 1, anon_sym_AMP, - ACTIONS(2391), 1, + ACTIONS(2350), 1, anon_sym_CARET, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, + ACTIONS(2360), 1, anon_sym_not, - ACTIONS(2499), 1, + ACTIONS(2364), 1, anon_sym_is, - STATE(2059), 1, + STATE(1318), 1, sym_argument_list, - STATE(4730), 1, + STATE(3201), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + ACTIONS(2340), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2383), 2, + ACTIONS(2342), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 2, + ACTIONS(2344), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, + ACTIONS(2352), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2358), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2362), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 9, + ACTIONS(2356), 9, sym__newline, sym__dedent, sym_string_start, @@ -80577,9 +87234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(2522), 20, + ACTIONS(2310), 25, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, @@ -80592,22 +87252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [35463] = 4, - ACTIONS(2530), 1, - anon_sym_DASH_GT, + [40477] = 5, + ACTIONS(2735), 1, + anon_sym_PIPE, + STATE(848), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 26, - sym__newline, - sym__dedent, + ACTIONS(1954), 25, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -80617,9 +87280,9 @@ 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, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -80631,13 +87294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 34, + ACTIONS(1956), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -80655,7 +87319,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, @@ -80666,16 +87329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35535] = 4, - STATE(776), 1, - aux_sym_union_type_repeat1, + [40551] = 4, + ACTIONS(2738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 27, - sym__newline, - sym__dedent, + ACTIONS(1973), 25, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -80685,7 +87347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -80700,13 +87361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 33, + ACTIONS(1975), 35, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -80724,6 +87386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -80734,81 +87397,102 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35607] = 4, - STATE(776), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2538), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [40623] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2721), 1, + anon_sym_PIPE, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2719), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2536), 33, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 21, + anon_sym_import, + anon_sym_assert, anon_sym_rule, + anon_sym_for, 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [35679] = 4, - STATE(776), 1, - aux_sym_union_type_repeat1, + [40731] = 5, + ACTIONS(2667), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 27, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 27, sym__newline, sym__dedent, sym_string_start, @@ -80836,15 +87520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 33, + ACTIONS(2400), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -80870,13 +87552,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35751] = 4, - STATE(776), 1, - aux_sym_union_type_repeat1, + [40805] = 5, + ACTIONS(2667), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 27, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 27, sym__newline, sym__dedent, sym_string_start, @@ -80904,15 +87589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 33, + ACTIONS(129), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -80938,32 +87621,126 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35823] = 6, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2547), 1, + [40879] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2721), 1, + anon_sym_PIPE, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(773), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 26, - sym__newline, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 8, sym__dedent, sym_string_start, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 21, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [40987] = 12, + ACTIONS(2071), 1, anon_sym_LPAREN, + ACTIONS(2073), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, anon_sym_STAR_STAR, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 20, + sym__newline, + 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, @@ -80974,22 +87751,21 @@ 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(2540), 31, + ACTIONS(1942), 30, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -80998,7 +87774,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, @@ -81008,25 +87783,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35899] = 6, - ACTIONS(2552), 1, - anon_sym_DOT, - ACTIONS(2557), 1, + [41075] = 10, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - STATE(774), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 26, - sym__newline, + ACTIONS(2069), 21, 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, @@ -81043,16 +87822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 32, + ACTIONS(2067), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -81078,16 +87857,99 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [35975] = 5, - ACTIONS(2564), 1, - anon_sym_EQ, - STATE(776), 1, - aux_sym_union_type_repeat1, + [41159] = 22, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 27, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 9, sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [41267] = 4, + STATE(918), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -81114,14 +87976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 32, + ACTIONS(2194), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -81147,16 +88011,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36049] = 4, - STATE(758), 1, - aux_sym_union_type_repeat1, + [41339] = 5, + ACTIONS(2701), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 27, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, sym__newline, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -81181,15 +88048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2566), 33, + ACTIONS(2252), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -81215,17 +88080,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36121] = 4, + [41413] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(773), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2572), 27, + ACTIONS(201), 27, sym__newline, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -81250,13 +88114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2570), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -81283,31 +88148,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36193] = 10, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [41485] = 4, + STATE(1376), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 22, + ACTIONS(201), 27, sym__newline, - 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, @@ -81323,14 +88180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2574), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -81357,198 +88216,165 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36277] = 21, - ACTIONS(2369), 1, + [41557] = 5, + ACTIONS(2742), 1, + anon_sym_EQ, + STATE(918), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2379), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2381), 1, - anon_sym_not, - ACTIONS(2387), 1, - anon_sym_PIPE, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2391), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_is, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - STATE(2059), 1, - sym_argument_list, - STATE(3155), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2375), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2383), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2385), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2395), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 25, + ACTIONS(2556), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [36383] = 21, - ACTIONS(2407), 1, + [41631] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(899), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2417), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2419), 1, - anon_sym_not, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2435), 1, - anon_sym_is, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - STATE(2083), 1, - sym_argument_list, - STATE(3148), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2421), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2423), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2411), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2433), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 25, + ACTIONS(2288), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [36489] = 10, - ACTIONS(2407), 1, + [41703] = 10, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2437), 1, + ACTIONS(2079), 1, anon_sym_QMARK_LBRACK, - STATE(2083), 1, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + STATE(1318), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 22, + ACTIONS(1940), 22, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, @@ -81568,14 +88394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2574), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -81601,15 +88427,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36573] = 4, + [41787] = 7, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(2744), 1, + anon_sym_and, + ACTIONS(2746), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(788), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2572), 27, - sym__newline, + ACTIONS(2542), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -81619,7 +88450,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, @@ -81636,13 +88466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2570), 32, + ACTIONS(2540), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -81657,7 +88487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -81669,23 +88498,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36645] = 4, - STATE(787), 1, - aux_sym_dotted_name_repeat1, + [41865] = 10, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 27, + ACTIONS(2069), 22, sym__newline, 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, @@ -81701,17 +88538,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(2471), 33, + ACTIONS(2067), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -81737,144 +88572,161 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36717] = 4, - STATE(807), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2568), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [41949] = 21, + ACTIONS(1944), 1, anon_sym_LPAREN, + ACTIONS(1946), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + ACTIONS(2750), 1, + anon_sym_not, + ACTIONS(2754), 1, + anon_sym_is, + STATE(1323), 1, + aux_sym_comparison_operator_repeat1, + STATE(1374), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2679), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2748), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2752), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 9, + sym__newline, + 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(2566), 33, + ACTIONS(2310), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [36789] = 22, - ACTIONS(2407), 1, + [42055] = 22, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2437), 1, + ACTIONS(2079), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, + ACTIONS(2316), 1, anon_sym_not, - ACTIONS(2499), 1, + ACTIONS(2332), 1, anon_sym_is, - STATE(2083), 1, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + STATE(1318), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, + ACTIONS(2691), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2421), 2, + ACTIONS(2695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2423), 2, + ACTIONS(2697), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, + ACTIONS(2699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2524), 9, + ACTIONS(2394), 9, sym__newline, + 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(2522), 20, + ACTIONS(2396), 20, anon_sym_import, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -81891,15 +88743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36897] = 5, - ACTIONS(2578), 1, + [42163] = 5, + ACTIONS(2756), 1, anon_sym_EQ, - STATE(784), 1, + STATE(630), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 27, + ACTIONS(2554), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -81927,14 +88779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 32, + ACTIONS(2556), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -81960,17 +88812,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36971] = 6, - ACTIONS(2580), 1, - anon_sym_DOT, - ACTIONS(2583), 1, - anon_sym_QMARK_DOT, - STATE(787), 1, - aux_sym_dotted_name_repeat1, + [42237] = 4, + STATE(630), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 26, + ACTIONS(2758), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -81980,6 +88828,7 @@ 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, @@ -81997,14 +88846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 32, + ACTIONS(2760), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -82030,98 +88880,114 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37047] = 6, - ACTIONS(2586), 1, - anon_sym_DOT, - ACTIONS(2589), 1, + [42309] = 22, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(788), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 26, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2697), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(2540), 31, + ACTIONS(2384), 20, anon_sym_import, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [37123] = 10, - ACTIONS(2407), 1, + [42417] = 10, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2437), 1, + ACTIONS(2079), 1, anon_sym_QMARK_LBRACK, - STATE(2083), 1, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + STATE(1318), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 22, + ACTIONS(1940), 22, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, @@ -82141,14 +89007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -82174,34 +89040,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37207] = 10, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [42501] = 4, + ACTIONS(2762), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 22, - sym__newline, + ACTIONS(2033), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -82214,15 +89070,18 @@ 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(2518), 32, + ACTIONS(2035), 35, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -82238,6 +89097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -82248,40 +89108,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37291] = 12, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + [42573] = 10, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, + ACTIONS(2764), 1, + anon_sym_and, + ACTIONS(2766), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2423), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 20, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 25, sym__newline, 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, @@ -82292,29 +89151,28 @@ 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(2518), 30, + ACTIONS(2059), 28, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -82324,77 +89182,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37379] = 16, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + [42657] = 9, + ACTIONS(2244), 1, anon_sym_QMARK_DOT, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, + ACTIONS(2764), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2423), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 25, sym__newline, 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(2518), 30, + ACTIONS(2276), 27, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -82404,68 +89255,62 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37475] = 15, - ACTIONS(2407), 1, + [42739] = 10, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2437), 1, + ACTIONS(1952), 1, anon_sym_QMARK_LBRACK, - STATE(2083), 1, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + STATE(1374), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2423), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, + ACTIONS(1940), 22, sym__newline, 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(2518), 30, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -82474,6 +89319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -82483,67 +89329,62 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37569] = 14, - ACTIONS(2407), 1, + [42823] = 10, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(2437), 1, + ACTIONS(1952), 1, anon_sym_QMARK_LBRACK, - STATE(2083), 1, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + STATE(1374), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2423), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 16, + ACTIONS(1940), 22, sym__newline, 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(2518), 30, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -82552,6 +89393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -82561,41 +89403,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37661] = 13, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [42907] = 6, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(2671), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2423), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, sym__newline, + 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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -82606,21 +89439,22 @@ 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(2518), 30, + ACTIONS(2242), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -82629,6 +89463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -82638,42 +89473,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37751] = 9, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(2401), 1, - anon_sym_and, - ACTIONS(2405), 1, - anon_sym_PLUS, + [42983] = 4, + STATE(918), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 13, - sym__newline, + ACTIONS(1954), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -82681,46 +89499,58 @@ 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(2449), 24, + sym_float, + ACTIONS(1956), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, 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_check, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [37833] = 4, - STATE(784), 1, - aux_sym_union_type_repeat1, + [43055] = 4, + STATE(1319), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 27, + ACTIONS(201), 27, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -82745,15 +89575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 33, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -82779,148 +89609,263 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [37905] = 22, - ACTIONS(2407), 1, + [43127] = 12, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2437), 1, + ACTIONS(1952), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - STATE(2083), 1, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + STATE(1374), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, + ACTIONS(2673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2423), 2, + ACTIONS(2679), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, + ACTIONS(1940), 20, + sym__newline, + 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, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + sym_float, + ACTIONS(1942), 30, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2503), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [43215] = 4, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, sym__newline, 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(2501), 20, + ACTIONS(2770), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [38013] = 22, - ACTIONS(2407), 1, + [43287] = 16, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_STAR_STAR, - ACTIONS(2417), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2683), 1, anon_sym_AMP, - ACTIONS(2429), 1, + ACTIONS(2685), 1, anon_sym_CARET, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - STATE(2083), 1, + STATE(1374), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, + ACTIONS(2673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2421), 2, + ACTIONS(2677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2423), 2, + ACTIONS(2679), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2431), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(1940), 14, + sym__newline, + 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, - ACTIONS(2365), 5, + sym_float, + ACTIONS(1942), 30, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2491), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [43383] = 15, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2685), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -82928,14 +89873,24 @@ static const uint16_t ts_small_parse_table[] = { 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(2489), 20, + ACTIONS(1942), 30, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -82945,110 +89900,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, 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, - [38121] = 27, - ACTIONS(714), 1, + [43477] = 14, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(1389), 1, - anon_sym_not, - ACTIONS(1698), 1, - sym_identifier, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4910), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5764), 1, - sym_keyword_argument, - STATE(6132), 1, - sym_quant_op, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 16, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [38239] = 4, - STATE(784), 1, - aux_sym_union_type_repeat1, + [43569] = 4, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 27, + ACTIONS(2768), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -83076,15 +90024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 33, + ACTIONS(2770), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83110,20 +90058,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38311] = 7, - ACTIONS(89), 1, - anon_sym_if, - ACTIONS(2401), 1, - anon_sym_and, - ACTIONS(2405), 1, - anon_sym_PLUS, + [43641] = 4, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2481), 26, + ACTIONS(2768), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -83134,6 +90075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -83150,12 +90092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2479), 30, + ACTIONS(2770), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -83170,6 +90114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -83181,13 +90126,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38389] = 4, - STATE(783), 1, - aux_sym_dotted_name_repeat1, + [43713] = 4, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 27, + ACTIONS(2768), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -83215,15 +90160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2475), 33, + ACTIONS(2770), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83249,14 +90194,103 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38461] = 4, - STATE(784), 1, - aux_sym_union_type_repeat1, + [43785] = 13, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 27, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, sym__newline, + 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(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [43875] = 9, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(2744), 1, + anon_sym_and, + ACTIONS(2746), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 24, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -83265,8 +90299,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, @@ -83283,15 +90315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2536), 33, + ACTIONS(2276), 28, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83305,8 +90334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -83317,16 +90344,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38533] = 4, - STATE(784), 1, - aux_sym_union_type_repeat1, + [43957] = 5, + ACTIONS(2667), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 27, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 27, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83351,15 +90381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 33, + ACTIONS(2264), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83385,16 +90413,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38605] = 4, - ACTIONS(2592), 1, - anon_sym_DASH_GT, + [44031] = 6, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(2671), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 26, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 26, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83402,8 +90435,8 @@ 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, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -83418,15 +90451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 34, + ACTIONS(2256), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83442,7 +90473,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, @@ -83453,15 +90483,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38677] = 5, - ACTIONS(2594), 1, - anon_sym_PIPE, - STATE(807), 1, - aux_sym_union_type_repeat1, + [44107] = 6, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 26, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 26, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -83472,11 +90505,11 @@ 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, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83488,15 +90521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 33, + ACTIONS(2256), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83522,13 +90553,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38751] = 4, - ACTIONS(2597), 1, - anon_sym_DASH_GT, + [44183] = 7, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, + ACTIONS(2764), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 26, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 26, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -83539,8 +90577,8 @@ 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, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -83555,15 +90593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 34, + ACTIONS(2540), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83577,9 +90613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -83590,14 +90624,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38823] = 4, - ACTIONS(2599), 1, - anon_sym_DASH_GT, + [44261] = 4, + STATE(948), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 26, - sym__newline, + ACTIONS(2192), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -83609,6 +90642,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, @@ -83623,13 +90657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 34, + ACTIONS(2194), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -83647,7 +90682,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, @@ -83658,674 +90692,2272 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38895] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [44333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2774), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(724), 1, - sym_primary_expression, - STATE(739), 1, - sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, - sym_dotted_name, - STATE(5858), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(79), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2772), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2086), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2062), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, + [44403] = 5, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39010] = 26, - ACTIONS(510), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1363), 1, - anon_sym_not, - STATE(232), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2835), 1, - sym_primary_expression, - STATE(3023), 1, - sym_selector_expression, - STATE(5088), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(662), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2264), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [39125] = 26, - ACTIONS(161), 1, + [44477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2778), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, - ACTIONS(177), 1, - sym_float, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1900), 1, - sym_primary_expression, - STATE(2072), 1, - sym_call, - STATE(2095), 1, - sym_expression, - STATE(2102), 1, - sym_selector_expression, - STATE(5047), 1, - sym_dotted_name, - STATE(5909), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(207), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2776), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2240), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2227), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [39240] = 26, - ACTIONS(510), 1, + [44547] = 4, + ACTIONS(2780), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(654), 1, - sym_identifier, - ACTIONS(658), 1, - anon_sym_not, - STATE(99), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2850), 1, - sym_primary_expression, - STATE(3017), 1, - sym_selector_expression, - STATE(5087), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(662), 3, 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2156), 35, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3124), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [39355] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, + [44619] = 6, + ACTIONS(2782), 1, anon_sym_DOT, - ACTIONS(2601), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(2785), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(2678), 1, - sym_primary_expression, - STATE(2682), 1, - sym_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, - sym_dotted_name, - STATE(5934), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 3, + STATE(899), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2436), 32, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3063), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, - [39470] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [44695] = 5, + ACTIONS(2788), 1, + anon_sym_PIPE, + STATE(900), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(470), 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, - ACTIONS(472), 1, + ACTIONS(1956), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [44769] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 27, + sym__newline, sym_string_start, - ACTIONS(606), 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(2793), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(608), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [44839] = 4, + ACTIONS(2795), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1973), 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, - STATE(88), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, - sym_dotted_name, - STATE(5958), 1, - sym_quant_op, + 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(1975), 35, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [44911] = 6, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(2746), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(466), 3, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 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(2242), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [44987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2797), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2799), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2839), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(468), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2820), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2819), 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, + [45057] = 5, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39585] = 26, - ACTIONS(506), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 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(2264), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(510), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2803), 27, + sym__newline, + 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(2801), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45201] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2807), 27, + sym__newline, + 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(2805), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2809), 27, + sym__newline, + 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(2811), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45341] = 6, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(2746), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 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(2256), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2813), 27, + sym__newline, + 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(2815), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2817), 27, + sym__newline, + 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(2819), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45557] = 5, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 27, + sym__newline, + 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(2236), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45631] = 17, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 13, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [45729] = 14, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2653), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [45821] = 5, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, + sym__newline, + 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(2252), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45895] = 5, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 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(129), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45969] = 4, + STATE(948), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2220), 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(2222), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46041] = 4, + STATE(900), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2392), 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(2390), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46113] = 5, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 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(2400), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46187] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 27, + sym__newline, + 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(2823), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46257] = 5, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 27, + sym__newline, + 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(2252), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46331] = 10, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 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(1942), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46415] = 4, + STATE(948), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 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(2156), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46487] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2825), 27, + sym__newline, + 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(2827), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46557] = 9, + ACTIONS(63), 1, + anon_sym_if, + ACTIONS(2061), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 13, + sym__newline, + 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(2278), 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(2242), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46639] = 10, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, - anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, - sym_call, - STATE(2617), 1, - sym_expression, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, - sym_selector_expression, - STATE(5056), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 3, + ACTIONS(1940), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [39700] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [46723] = 27, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(101), 1, - sym_expression, - STATE(2793), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_not, + STATE(211), 1, + aux_sym_check_statement_repeat1, + STATE(1770), 1, sym_call, - STATE(3040), 1, + STATE(2247), 1, + sym_primary_expression, + STATE(2259), 1, sym_selector_expression, - STATE(5079), 1, + STATE(3396), 1, + sym_expression, + STATE(5190), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -84334,18 +92966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84353,7 +92985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84370,3676 +93002,3354 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39815] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [46841] = 12, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - STATE(2310), 1, - sym_expression, - STATE(2314), 1, - sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [39930] = 26, - ACTIONS(714), 1, + [46929] = 4, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2758), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4937), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2760), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [40045] = 26, - ACTIONS(714), 1, + [47001] = 5, + ACTIONS(2829), 1, + anon_sym_EQ, + STATE(615), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2556), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4935), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(6132), 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, + [47075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2007), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [40160] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [47145] = 16, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, - sym_primary_expression, - STATE(4071), 1, - sym_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, - sym_selector_expression, - STATE(5026), 1, - sym_dotted_name, - STATE(6132), 1, - sym_quant_op, + ACTIONS(2659), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [40275] = 26, - ACTIONS(67), 1, + [47241] = 15, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(794), 1, - sym_identifier, - ACTIONS(798), 1, - anon_sym_not, - STATE(124), 1, - sym_expression, - STATE(779), 1, - sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(1614), 1, - sym_selector_expression, - STATE(5082), 1, - sym_dotted_name, - STATE(5858), 1, - sym_quant_op, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(2062), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, + [47335] = 5, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40390] = 26, - ACTIONS(486), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3729), 1, - sym_primary_expression, - STATE(3742), 1, - sym_expression, - STATE(4027), 1, - sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(622), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2236), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [40505] = 26, - ACTIONS(714), 1, + [47409] = 13, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(4053), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, + [47499] = 5, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40620] = 26, - ACTIONS(714), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(4052), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2400), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, + [47573] = 5, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40735] = 26, - ACTIONS(714), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(4049), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2236), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [40850] = 26, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, + [47647] = 10, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(4045), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(2669), 1, + anon_sym_and, + ACTIONS(2671), 1, + anon_sym_PLUS, + ACTIONS(2831), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, - anon_sym_PLUS, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 25, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2059), 28, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, + [47731] = 6, + ACTIONS(2833), 1, + anon_sym_DOT, + ACTIONS(2836), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(939), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40965] = 26, - ACTIONS(714), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(2436), 32, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2615), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(4030), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [47807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, + ACTIONS(2825), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2827), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [41080] = 26, - ACTIONS(714), 1, + [47877] = 4, + STATE(1001), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2598), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2600), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2615), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(4024), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [47949] = 4, + STATE(954), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, + ACTIONS(2598), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2600), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [41195] = 26, - ACTIONS(714), 1, + [48021] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, - sym_string_start, - ACTIONS(752), 1, + ACTIONS(2823), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2615), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(4023), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48091] = 8, + ACTIONS(2846), 1, + anon_sym_not, + ACTIONS(2852), 1, + anon_sym_is, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, + ACTIONS(2843), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2849), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 23, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2841), 28, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [41310] = 26, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACK, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, - ACTIONS(177), 1, - sym_float, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(209), 1, + [48171] = 6, + ACTIONS(2855), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(2858), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, - anon_sym_not, - STATE(129), 1, - sym_expression, - STATE(1464), 1, - sym_primary_expression, - STATE(2035), 1, - sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5083), 1, - sym_dotted_name, - STATE(5909), 1, - sym_quant_op, + STATE(945), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(173), 3, + ACTIONS(2007), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 33, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2210), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2227), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [41425] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [48247] = 4, + STATE(886), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, - anon_sym_DQUOTE, - ACTIONS(470), 1, - sym_float, - ACTIONS(472), 1, - sym_string_start, - ACTIONS(606), 1, - anon_sym_DOT, - ACTIONS(608), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(2629), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, - sym_dotted_name, - STATE(5958), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(466), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(468), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2820), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2819), 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, - [41540] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [48319] = 4, + ACTIONS(2861), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2033), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_lambda, - ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, - anon_sym_DQUOTE, - ACTIONS(698), 1, - sym_float, - ACTIONS(700), 1, - sym_string_start, - ACTIONS(736), 1, - anon_sym_DOT, - ACTIONS(738), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(105), 1, - sym_expression, - STATE(2766), 1, - sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, - sym_selector_expression, - STATE(5059), 1, - sym_dotted_name, - STATE(5976), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(694), 3, 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2035), 35, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3144), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(696), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3226), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3227), 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, - [41655] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [48391] = 4, + STATE(848), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2392), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, - anon_sym_DQUOTE, - ACTIONS(650), 1, - sym_float, - ACTIONS(652), 1, - sym_string_start, - ACTIONS(740), 1, - anon_sym_DOT, - ACTIONS(742), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(2793), 1, - sym_primary_expression, - STATE(2883), 1, - sym_expression, - STATE(3027), 1, - sym_call, - STATE(3040), 1, - sym_selector_expression, - STATE(5079), 1, - sym_dotted_name, - STATE(5965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(646), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2390), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3169), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(648), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3207), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3203), 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, + [48463] = 6, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(2863), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41770] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3), 1, - sym_expression, - STATE(726), 1, - sym_primary_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, + [48539] = 7, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(2863), 1, + anon_sym_PLUS, + ACTIONS(2865), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41885] = 26, - ACTIONS(67), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - ACTIONS(83), 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(85), 1, - sym_string_start, - ACTIONS(197), 1, + ACTIONS(2540), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(794), 1, - sym_identifier, - ACTIONS(798), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(779), 1, - sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(1614), 1, - sym_selector_expression, - STATE(3283), 1, - sym_expression, - STATE(5082), 1, - sym_dotted_name, - STATE(5858), 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, + [48617] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(79), 3, + STATE(939), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2288), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2062), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, + [48689] = 5, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42000] = 26, - ACTIONS(135), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(6), 1, - sym_expression, - STATE(1064), 1, - sym_primary_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2264), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [42115] = 26, - ACTIONS(161), 1, + [48763] = 20, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, - ACTIONS(177), 1, - sym_float, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(828), 1, - sym_identifier, - ACTIONS(832), 1, - anon_sym_not, - STATE(1943), 1, - sym_primary_expression, - STATE(2072), 1, - sym_call, - STATE(2208), 1, - sym_selector_expression, - STATE(3368), 1, - sym_expression, - STATE(5092), 1, - sym_dotted_name, - STATE(5909), 1, - sym_quant_op, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2332), 1, + anon_sym_is, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(207), 3, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 9, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2386), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [42230] = 26, - ACTIONS(135), 1, + [48867] = 4, + STATE(945), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2300), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, - anon_sym_not, - STATE(127), 1, - sym_expression, - STATE(1411), 1, - sym_primary_expression, - STATE(1911), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5035), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2298), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2165), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [42345] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_lambda, - ACTIONS(688), 1, - anon_sym_LBRACE, - ACTIONS(690), 1, + [48939] = 8, + ACTIONS(2870), 1, anon_sym_not, - ACTIONS(692), 1, - anon_sym_DQUOTE, - ACTIONS(698), 1, - sym_float, - ACTIONS(700), 1, - sym_string_start, - ACTIONS(736), 1, - anon_sym_DOT, - ACTIONS(738), 1, - anon_sym_QMARK_DOT, - STATE(2766), 1, - sym_primary_expression, - STATE(2855), 1, - sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, - sym_selector_expression, - STATE(5059), 1, - sym_dotted_name, - STATE(5976), 1, - sym_quant_op, + ACTIONS(2876), 1, + anon_sym_is, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(694), 3, + ACTIONS(2867), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2873), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 23, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2841), 28, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(696), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3226), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3227), 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, - [42460] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [49019] = 10, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(94), 1, - sym_expression, - STATE(2678), 1, - sym_primary_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, - sym_dotted_name, - STATE(5934), 1, - sym_quant_op, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(2069), 22, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2067), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3063), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, - [42575] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [49103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2817), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(726), 1, - sym_primary_expression, - STATE(730), 1, - sym_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2819), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2056), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [42690] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1339), 1, - anon_sym_not, - ACTIONS(2601), 1, + [49173] = 21, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(1948), 1, + anon_sym_STAR_STAR, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(227), 1, - sym_expression, - STATE(2751), 1, - sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5115), 1, - sym_dotted_name, - STATE(5934), 1, - sym_quant_op, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2322), 1, + anon_sym_PIPE, + ACTIONS(2324), 1, + anon_sym_AMP, + ACTIONS(2326), 1, + anon_sym_CARET, + ACTIONS(2368), 1, + anon_sym_not, + ACTIONS(2372), 1, + anon_sym_is, + STATE(1374), 1, + sym_argument_list, + STATE(3214), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(2314), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2318), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2320), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2328), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2366), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2310), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, + [49279] = 6, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(2863), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42805] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(135), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1879), 1, - sym_primary_expression, - STATE(2027), 1, - sym_call, - STATE(2043), 1, - sym_expression, - STATE(2204), 1, - sym_selector_expression, - STATE(5104), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(147), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2256), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, + [49355] = 5, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42920] = 26, - ACTIONS(506), 1, - sym_identifier, - ACTIONS(510), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(91), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, - sym_selector_expression, - STATE(5056), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2252), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, + [49429] = 5, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [43035] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 26, + sym__dedent, sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, - anon_sym_DQUOTE, - ACTIONS(2629), 1, - sym_float, - STATE(3775), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, - sym_primary_expression, - STATE(4000), 1, - sym_selector_expression, - STATE(5108), 1, - sym_dotted_name, - STATE(5996), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2625), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2252), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(574), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4192), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4160), 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, + [49503] = 5, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [43150] = 26, - ACTIONS(93), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_not, - STATE(123), 1, - sym_expression, - STATE(780), 1, - sym_primary_expression, - STATE(1655), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5130), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2236), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [43265] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + [49577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2813), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1339), 1, - anon_sym_not, - ACTIONS(2601), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(2751), 1, - sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(4204), 1, - sym_expression, - STATE(5115), 1, - sym_dotted_name, - STATE(5934), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2815), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3057), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3063), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, - [43380] = 26, - ACTIONS(416), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, + [49647] = 10, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_not, - STATE(229), 1, - sym_expression, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, - sym_call, - STATE(2402), 1, - sym_selector_expression, - STATE(5145), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, + ACTIONS(2863), 1, + anon_sym_PLUS, + ACTIONS(2865), 1, + anon_sym_and, + ACTIONS(2879), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, - anon_sym_PLUS, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2059), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [43495] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [49731] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2809), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3593), 1, - sym_expression, - STATE(3608), 1, - sym_primary_expression, - STATE(3663), 1, - sym_call, - STATE(3832), 1, - sym_selector_expression, - STATE(5122), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2811), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4009), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [43610] = 26, - ACTIONS(510), 1, + [49801] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2797), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, - anon_sym_not, - STATE(218), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2590), 1, - sym_primary_expression, - STATE(2738), 1, - sym_selector_expression, - STATE(5127), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2799), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2856), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [43725] = 26, - ACTIONS(510), 1, - anon_sym_LPAREN, - ACTIONS(512), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, - anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, - anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2590), 1, - sym_primary_expression, - STATE(2738), 1, - sym_selector_expression, - STATE(3876), 1, - sym_expression, - STATE(5127), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 3, + [49871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2793), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2856), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [43840] = 26, - ACTIONS(714), 1, + [49941] = 17, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(3914), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 13, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [43955] = 26, - ACTIONS(714), 1, + [50039] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2807), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(3911), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5172), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2805), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, + [50109] = 5, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [44070] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(82), 1, - sym_expression, - STATE(2314), 1, - sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(129), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, + [50183] = 7, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(2744), 1, + anon_sym_and, + ACTIONS(2746), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [44185] = 26, - ACTIONS(67), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - ACTIONS(83), 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(85), 1, - sym_string_start, - ACTIONS(197), 1, + ACTIONS(2242), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2631), 1, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(778), 1, - sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5164), 1, - sym_expression, - STATE(5858), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [50261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(2803), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2801), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(1993), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, + [50331] = 9, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(2863), 1, + anon_sym_PLUS, + ACTIONS(2865), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [44300] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 24, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(406), 1, - sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - STATE(3432), 1, - sym_primary_expression, - STATE(3438), 1, - sym_expression, - STATE(3460), 1, - sym_call, - STATE(3558), 1, - sym_selector_expression, - STATE(5136), 1, - sym_dotted_name, - STATE(6057), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(402), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2276), 28, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(404), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, - STATE(3671), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3665), 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, + [50413] = 5, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [44415] = 26, - ACTIONS(510), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1363), 1, - anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2835), 1, - sym_primary_expression, - STATE(3023), 1, - sym_selector_expression, - STATE(4330), 1, - sym_expression, - STATE(5088), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(662), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(129), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [44530] = 10, - ACTIONS(2633), 1, + [50487] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(2195), 1, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(1940), 21, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, @@ -88059,13 +96369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 32, + ACTIONS(1942), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -88092,128 +96403,104 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [44613] = 26, - ACTIONS(135), 1, + [50571] = 5, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, - sym_identifier, - STATE(865), 1, - sym_primary_expression, - STATE(1880), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5174), 1, - sym_expression, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2400), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [44728] = 12, - ACTIONS(2633), 1, + [50645] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(2195), 1, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + ACTIONS(1940), 21, + sym__dedent, 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, @@ -88225,13 +96512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 30, + ACTIONS(1942), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -88239,6 +96527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -88247,6 +96536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -88256,239 +96546,126 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [44815] = 26, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, - sym_identifier, - STATE(4082), 1, - sym_call, - STATE(4088), 1, - sym_primary_expression, - STATE(4140), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, + [50729] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(726), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(4275), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [44930] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + ACTIONS(201), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - STATE(84), 1, - sym_expression, - STATE(2314), 1, - sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, + anon_sym_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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [45045] = 16, - ACTIONS(2633), 1, + [50801] = 12, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2651), 1, - anon_sym_AMP, - ACTIONS(2653), 1, - anon_sym_CARET, - STATE(2195), 1, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2647), 2, + ACTIONS(2719), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2655), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(1940), 19, + sym__dedent, 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(2518), 30, + ACTIONS(1942), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -88513,60 +96690,62 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [45140] = 15, - ACTIONS(2633), 1, + [50889] = 16, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2653), 1, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, anon_sym_CARET, - STATE(2195), 1, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(1940), 13, + sym__dedent, 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(2518), 30, + ACTIONS(1942), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -88591,59 +96770,61 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [45233] = 14, - ACTIONS(2633), 1, + [50985] = 15, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(2195), 1, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 15, + ACTIONS(1940), 14, + sym__dedent, 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(2518), 30, + ACTIONS(1942), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -88668,125 +96849,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [45324] = 26, - ACTIONS(416), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_not, - STATE(138), 1, - sym_expression, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, - sym_call, - STATE(2402), 1, - sym_selector_expression, - STATE(5145), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2453), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [45439] = 13, - ACTIONS(2633), 1, + [51079] = 14, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(2195), 1, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2520), 17, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, @@ -88794,21 +96889,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_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(2518), 30, + ACTIONS(1942), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -88833,165 +96927,62 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [45528] = 26, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, - anon_sym_not, - STATE(1411), 1, - sym_primary_expression, - STATE(1911), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(3339), 1, - sym_expression, - STATE(5035), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2165), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [45643] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2633), 1, + [51171] = 13, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2651), 1, - anon_sym_AMP, - ACTIONS(2653), 1, - anon_sym_CARET, - ACTIONS(2657), 1, - anon_sym_PIPE, - STATE(2195), 1, + STATE(2160), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 8, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, + sym__dedent, 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(2501), 20, + ACTIONS(1942), 31, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -89001,1032 +96992,507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, 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, - [45750] = 26, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACK, + [51261] = 7, ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, - anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, - ACTIONS(177), 1, - sym_float, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, - sym_identifier, - STATE(1899), 1, - sym_selector_expression, - STATE(1924), 1, - sym_primary_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(207), 3, + anon_sym_if, + ACTIONS(2863), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2199), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [45865] = 26, - ACTIONS(416), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_not, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, - sym_call, - STATE(2402), 1, - sym_selector_expression, - STATE(3511), 1, - sym_expression, - STATE(5145), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, + ACTIONS(2865), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2453), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, + STATE(862), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [45980] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2633), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2639), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2651), 1, - anon_sym_AMP, - ACTIONS(2653), 1, - anon_sym_CARET, - ACTIONS(2657), 1, - anon_sym_PIPE, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2647), 2, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2655), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2489), 20, + ACTIONS(2242), 31, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_rule, + anon_sym_for, 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_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, - [46087] = 26, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_LBRACK, + [51339] = 5, ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - STATE(1064), 1, - sym_primary_expression, - STATE(1076), 1, - sym_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2147), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [46202] = 26, - ACTIONS(135), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, - anon_sym_not, - STATE(1411), 1, - sym_primary_expression, - STATE(1911), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(3340), 1, - sym_expression, - STATE(5035), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 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, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2165), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [46317] = 26, - ACTIONS(390), 1, - anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, - anon_sym_LBRACE, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(406), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, + ACTIONS(2252), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4909), 1, - sym_dotted_name, - STATE(5011), 1, - sym_expression, - STATE(6057), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(402), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(404), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3671), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3665), 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, - [46432] = 26, - ACTIONS(506), 1, - sym_identifier, - ACTIONS(510), 1, - anon_sym_LPAREN, - ACTIONS(512), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, - anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - STATE(92), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, - sym_selector_expression, - STATE(5056), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, + [51413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2849), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [46547] = 26, - ACTIONS(714), 1, + ACTIONS(2778), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(4967), 1, - sym_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2776), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [46662] = 26, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [51483] = 6, + ACTIONS(2881), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(2884), 1, anon_sym_QMARK_DOT, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, - anon_sym_not, - STATE(1411), 1, - sym_primary_expression, - STATE(1911), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(3295), 1, - sym_expression, - STATE(5035), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, + STATE(987), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(2007), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 33, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2165), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [46777] = 26, - ACTIONS(93), 1, + [51559] = 17, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(900), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, + ACTIONS(2721), 1, + anon_sym_PIPE, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 12, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [46892] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [51657] = 20, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(2075), 1, + anon_sym_STAR_STAR, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - STATE(106), 1, - sym_expression, - STATE(2314), 1, - sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, + ACTIONS(2340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2344), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2386), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [47007] = 26, - ACTIONS(93), 1, + [51761] = 27, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(2663), 1, - sym_identifier, - ACTIONS(2665), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(900), 1, + ACTIONS(1758), 1, + sym_identifier, + STATE(4095), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5068), 1, sym_expression, - STATE(5982), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(5848), 1, + sym_keyword_argument, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -90035,18 +97501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -90054,7 +97520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -90071,1297 +97537,1061 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47122] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, + [51879] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2774), 27, + sym__newline, sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, - anon_sym_DQUOTE, - ACTIONS(2629), 1, - sym_float, - STATE(3807), 1, - sym_call, - STATE(3825), 1, - sym_primary_expression, - STATE(4004), 1, - sym_selector_expression, - STATE(4867), 1, - sym_expression, - STATE(5150), 1, - sym_dotted_name, - STATE(5996), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(2625), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2772), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(4208), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(574), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4192), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4160), 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, + [51949] = 7, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, + ACTIONS(2764), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [47237] = 26, - ACTIONS(93), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 26, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_not, - STATE(1426), 1, - sym_primary_expression, - STATE(1659), 1, - sym_call, - STATE(1916), 1, - sym_selector_expression, - STATE(3293), 1, - sym_expression, - STATE(5053), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, - STATE(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [47352] = 26, - ACTIONS(510), 1, + [52027] = 21, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, - anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1363), 1, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2659), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2889), 1, anon_sym_not, - STATE(234), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2835), 1, - sym_primary_expression, - STATE(3023), 1, - sym_selector_expression, - STATE(5088), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, + ACTIONS(2893), 1, + anon_sym_is, + STATE(1599), 1, + aux_sym_comparison_operator_repeat1, + STATE(2222), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(662), 3, + ACTIONS(2647), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2891), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2310), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [47467] = 26, - ACTIONS(93), 1, + [52133] = 21, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, - sym_primary_expression, - STATE(1094), 1, - sym_expression, - STATE(1659), 1, - sym_call, - STATE(1897), 1, - sym_selector_expression, - STATE(5071), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, + ACTIONS(2721), 1, + anon_sym_PIPE, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2897), 1, + anon_sym_not, + ACTIONS(2901), 1, + anon_sym_is, + STATE(1359), 1, + aux_sym_comparison_operator_repeat1, + STATE(2160), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2895), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2310), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [47582] = 26, - ACTIONS(93), 1, - anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, + [52239] = 10, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(906), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, + ACTIONS(2744), 1, + anon_sym_and, + ACTIONS(2746), 1, + anon_sym_PLUS, + ACTIONS(2903), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 3, - anon_sym_PLUS, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2059), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [47697] = 26, - ACTIONS(93), 1, + [52323] = 4, + STATE(948), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(907), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1956), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [47812] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + [52395] = 4, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - ACTIONS(2667), 1, - sym_identifier, - STATE(2753), 1, - sym_primary_expression, - STATE(2804), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, - [47927] = 26, - ACTIONS(486), 1, + [52467] = 4, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, - anon_sym_not, - STATE(3761), 1, - sym_primary_expression, - STATE(3981), 1, - sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(4906), 1, - sym_expression, - STATE(4995), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(622), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [48042] = 26, - ACTIONS(93), 1, + [52539] = 4, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(910), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [48157] = 26, - ACTIONS(93), 1, + [52611] = 4, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(911), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [48272] = 26, - ACTIONS(93), 1, + [52683] = 4, + STATE(987), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2300), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(912), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2298), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [48387] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [52755] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2007), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(5), 1, - sym_expression, - STATE(726), 1, - sym_primary_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2056), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [48502] = 26, - ACTIONS(93), 1, + [52825] = 21, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + ACTIONS(2907), 1, anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(914), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, + ACTIONS(2911), 1, + anon_sym_is, + STATE(1318), 1, + sym_argument_list, + STATE(1435), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2905), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2310), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [48617] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [52931] = 4, + STATE(999), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3859), 1, - sym_expression, - STATE(3872), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, - sym_selector_expression, - STATE(5026), 1, - sym_dotted_name, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [48732] = 26, - ACTIONS(93), 1, + [53003] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2663), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(916), 1, - sym_primary_expression, - STATE(1317), 1, + STATE(2428), 1, sym_selector_expression, - STATE(1659), 1, + STATE(2436), 1, sym_call, - STATE(5113), 1, + STATE(3184), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5177), 1, + STATE(5251), 1, sym_expression, - STATE(5982), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91370,18 +98600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -91389,7 +98619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -91406,51 +98636,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48847] = 26, - ACTIONS(67), 1, + [53118] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(794), 1, - sym_identifier, - ACTIONS(798), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(121), 1, - sym_expression, - STATE(779), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(2344), 1, sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(1614), 1, + STATE(2371), 1, sym_selector_expression, - STATE(5082), 1, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91459,18 +98689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -91478,7 +98708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -91495,51 +98725,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48962] = 26, - ACTIONS(714), 1, + [53233] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(4056), 1, + STATE(4095), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4982), 1, + STATE(5157), 1, sym_expression, - STATE(5012), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91548,18 +98778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -91567,7 +98797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -91584,136 +98814,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49077] = 22, - ACTIONS(2407), 1, + [53348] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2677), 1, - anon_sym_PIPE, - ACTIONS(2679), 1, - anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_CARET, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 9, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(524), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_TILDE, + ACTIONS(534), 1, sym_float, - ACTIONS(2522), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [49184] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(610), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(2601), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(95), 1, - sym_expression, - STATE(2678), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2917), 1, + sym_identifier, + STATE(2722), 1, sym_primary_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2751), 1, sym_call, - STATE(5051), 1, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5280), 1, + sym_expression, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91722,18 +98867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -91741,7 +98886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -91758,51 +98903,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49299] = 26, - ACTIONS(534), 1, + [53463] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(3716), 1, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3727), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4949), 1, + STATE(5008), 1, sym_expression, - STATE(5075), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91811,18 +98956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -91830,7 +98975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -91847,51 +98992,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49414] = 26, - ACTIONS(93), 1, + [53578] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(919), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1317), 1, + STATE(3628), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, + STATE(5116), 1, sym_expression, - STATE(5982), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91900,18 +99045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -91919,7 +99064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -91936,51 +99081,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49529] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [53693] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(93), 1, - sym_expression, - STATE(2672), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2680), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, + STATE(5163), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -91989,18 +99134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -92008,7 +99153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -92025,51 +99170,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49644] = 26, - ACTIONS(135), 1, + [53808] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(8), 1, - sym_expression, - STATE(1064), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1901), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, + STATE(4981), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5211), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -92078,18 +99223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -92097,7 +99242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -92114,197 +99259,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49759] = 10, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 22, - sym__newline, - 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(2518), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [49842] = 10, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 22, - sym__newline, - 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(2518), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [49925] = 26, - ACTIONS(510), 1, + [53923] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(3482), 1, sym_call, - STATE(2560), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(4937), 1, sym_dotted_name, - STATE(5167), 1, + STATE(5150), 1, sym_expression, - STATE(5947), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -92313,18 +99312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -92332,7 +99331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -92349,51 +99348,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50040] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(534), 1, + [54038] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(544), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(3588), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(3835), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5121), 1, + STATE(4974), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5128), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -92402,18 +99401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -92421,7 +99420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -92438,283 +99437,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50155] = 12, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 20, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [50242] = 16, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2679), 1, - anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_CARET, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [50337] = 15, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2681), 1, - anon_sym_CARET, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [50430] = 26, - ACTIONS(161), 1, + [54153] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(126), 1, - sym_expression, - STATE(1464), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(2330), 1, sym_primary_expression, - STATE(2035), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2072), 1, + STATE(2406), 1, sym_call, - STATE(5083), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -92723,18 +99490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -92742,7 +99509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -92759,128 +99526,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50545] = 14, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 16, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [50636] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [54268] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(11), 1, - sym_expression, - STATE(1125), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1878), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(4989), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5147), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -92889,18 +99579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -92908,7 +99598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -92925,127 +99615,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50751] = 13, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [50840] = 26, - ACTIONS(714), 1, + [54383] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(4214), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(4987), 1, - sym_expression, - STATE(5012), 1, + STATE(4990), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5079), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93054,18 +99668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93073,7 +99687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93090,51 +99704,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50955] = 26, - ACTIONS(93), 1, + [54498] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(764), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(1426), 1, - sym_primary_expression, - STATE(1659), 1, + STATE(3482), 1, sym_call, - STATE(1916), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(3309), 1, + STATE(5104), 1, sym_expression, - STATE(5053), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93143,18 +99757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93162,7 +99776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93179,136 +99793,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51070] = 22, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2677), 1, - anon_sym_PIPE, - ACTIONS(2679), 1, - anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_CARET, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 9, - sym__newline, - 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(2501), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [51177] = 26, - ACTIONS(454), 1, + [54613] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(221), 1, - sym_expression, - STATE(2538), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(2706), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5068), 1, + STATE(5081), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93317,18 +99846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93336,7 +99865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93353,136 +99882,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51292] = 22, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2677), 1, - anon_sym_PIPE, - ACTIONS(2679), 1, - anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_CARET, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 9, - sym__newline, - 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(2489), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [51399] = 26, - ACTIONS(93), 1, + [54728] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1078), 1, - sym_expression, - STATE(1080), 1, - sym_primary_expression, - STATE(1659), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(1897), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5187), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93491,18 +99935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93510,7 +99954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93527,51 +99971,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51514] = 26, - ACTIONS(93), 1, + [54843] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(764), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(1426), 1, + STATE(4095), 1, sym_primary_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(1916), 1, + STATE(4309), 1, sym_selector_expression, - STATE(3321), 1, + STATE(5035), 1, sym_expression, - STATE(5053), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93580,18 +100024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93599,7 +100043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93616,51 +100060,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51629] = 26, - ACTIONS(416), 1, + [54958] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(2253), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5179), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5121), 1, sym_expression, - STATE(5953), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93669,18 +100113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93688,7 +100132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93705,51 +100149,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51744] = 26, - ACTIONS(454), 1, + [55073] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1315), 1, - anon_sym_not, - STATE(2538), 1, - sym_primary_expression, - STATE(2706), 1, - sym_selector_expression, - STATE(2707), 1, + STATE(4096), 1, sym_call, - STATE(3883), 1, + STATE(4116), 1, sym_expression, - STATE(5068), 1, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93758,18 +100202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(4410), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93777,7 +100221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93794,51 +100238,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51859] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [55188] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - STATE(2), 1, - sym_expression, - STATE(724), 1, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(4096), 1, sym_call, - STATE(5044), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5197), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93847,18 +100291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93866,7 +100310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93883,51 +100327,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51974] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [55303] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(4), 1, - sym_expression, - STATE(724), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1129), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5227), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -93936,18 +100380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -93955,7 +100399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -93972,51 +100416,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52089] = 26, - ACTIONS(93), 1, + [55418] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(770), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(1426), 1, - sym_primary_expression, - STATE(1659), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(1916), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(3336), 1, - sym_expression, - STATE(5053), 1, + STATE(5000), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5151), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94025,18 +100469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94044,7 +100488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94061,51 +100505,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52204] = 26, - ACTIONS(486), 1, + [55533] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(3482), 1, sym_call, - STATE(3781), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5084), 1, - sym_expression, - STATE(5123), 1, + STATE(5001), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5120), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94114,18 +100558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94133,7 +100577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94150,51 +100594,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52319] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [55648] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(7), 1, - sym_expression, - STATE(1125), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1878), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(5106), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94203,18 +100647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94222,7 +100666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94239,51 +100683,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52434] = 26, - ACTIONS(416), 1, + [55763] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3008), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5181), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(5172), 1, sym_expression, - STATE(5953), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94292,18 +100736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94311,7 +100755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94328,51 +100772,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52549] = 26, - ACTIONS(257), 1, + [55878] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(842), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(125), 1, - sym_expression, - STATE(2399), 1, + STATE(4095), 1, sym_primary_expression, - STATE(2407), 1, + STATE(4096), 1, sym_call, - STATE(2505), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5000), 1, + STATE(5193), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94381,18 +100825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94400,7 +100844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94417,51 +100861,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52664] = 26, - ACTIONS(416), 1, + [55993] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(2689), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(2691), 1, + ACTIONS(818), 1, anon_sym_not, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(3008), 1, + STATE(847), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5181), 1, + STATE(879), 1, + sym_call, + STATE(1752), 1, + sym_selector_expression, + STATE(3325), 1, sym_expression, - STATE(5953), 1, + STATE(5179), 1, + sym_dotted_name, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94470,18 +100914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94489,7 +100933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94506,51 +100950,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52779] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [56108] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(3874), 1, + STATE(4096), 1, sym_call, - STATE(4139), 1, + STATE(4309), 1, sym_selector_expression, - STATE(4960), 1, + STATE(5045), 1, sym_expression, - STATE(5116), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94559,18 +101003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94578,7 +101022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94595,51 +101039,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52894] = 26, - ACTIONS(416), 1, + [56223] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3778), 1, sym_call, - STATE(3020), 1, + STATE(3779), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5181), 1, + STATE(3900), 1, + sym_selector_expression, + STATE(5194), 1, sym_expression, - STATE(5953), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94648,18 +101092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94667,7 +101111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94684,51 +101128,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53009] = 26, - ACTIONS(416), 1, + [56338] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(3052), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(4963), 1, sym_dotted_name, - STATE(5181), 1, + STATE(5247), 1, sym_expression, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94737,18 +101181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94756,7 +101200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94773,51 +101217,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53124] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [56453] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(107), 1, - sym_expression, - STATE(2793), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(3040), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5079), 1, + STATE(4958), 1, sym_dotted_name, - STATE(5965), 1, + STATE(5235), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94826,18 +101270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94845,7 +101289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94862,51 +101306,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53239] = 26, - ACTIONS(416), 1, + [56568] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3053), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5181), 1, + STATE(5228), 1, sym_expression, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -94915,18 +101359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -94934,7 +101378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -94951,51 +101395,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53354] = 26, - ACTIONS(416), 1, + [56683] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3061), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5181), 1, + STATE(5219), 1, sym_expression, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95004,18 +101448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95023,7 +101467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95040,51 +101484,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53469] = 26, - ACTIONS(416), 1, + [56798] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(3088), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5181), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, + sym_selector_expression, + STATE(5136), 1, sym_expression, - STATE(5953), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95093,18 +101537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95112,7 +101556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95129,51 +101573,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53584] = 26, - ACTIONS(486), 1, + [56913] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3744), 1, - sym_primary_expression, - STATE(4111), 1, + STATE(3778), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5191), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, + sym_selector_expression, + STATE(5166), 1, sym_expression, - STATE(6002), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95182,18 +101626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95201,7 +101645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95218,51 +101662,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53699] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [57028] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(718), 1, anon_sym_LBRACE, ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(730), 1, sym_string_start, ACTIONS(752), 1, anon_sym_DOT, ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, - sym_primary_expression, - STATE(3972), 1, + ACTIONS(1411), 1, + sym_identifier, + ACTIONS(1415), 1, + anon_sym_not, + STATE(253), 1, sym_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, + STATE(2889), 1, + sym_primary_expression, + STATE(3102), 1, sym_selector_expression, - STATE(5026), 1, + STATE(3115), 1, + sym_call, + STATE(5119), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95271,18 +101715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95290,7 +101734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95307,140 +101751,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53814] = 26, - ACTIONS(416), 1, + [57143] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(3038), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(4934), 1, sym_dotted_name, - STATE(5181), 1, + STATE(5090), 1, sym_expression, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2621), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [53929] = 26, - ACTIONS(416), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2689), 1, - sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(3066), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5181), 1, - sym_expression, - STATE(5953), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2455), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(708), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95449,18 +101804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95468,7 +101823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95485,51 +101840,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54044] = 26, - ACTIONS(416), 1, + [57258] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(3001), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(4930), 1, sym_dotted_name, - STATE(5181), 1, + STATE(5082), 1, sym_expression, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95538,18 +101893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95557,7 +101912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95574,51 +101929,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54159] = 26, - ACTIONS(714), 1, + [57373] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1104), 1, anon_sym_not, - STATE(4056), 1, + STATE(128), 1, + sym_expression, + STATE(2405), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2406), 1, sym_call, - STATE(4214), 1, + STATE(2593), 1, sym_selector_expression, - STATE(5004), 1, - sym_expression, - STATE(5012), 1, + STATE(5095), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95627,18 +101982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95646,7 +102001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95663,51 +102018,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54274] = 26, - ACTIONS(416), 1, + [57488] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(2973), 1, - sym_expression, - STATE(3010), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3224), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5095), 1, + STATE(5083), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95716,18 +102071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95735,7 +102090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95752,51 +102107,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54389] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [57603] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3874), 1, + STATE(3482), 1, sym_call, - STATE(4043), 1, + STATE(3533), 1, sym_primary_expression, - STATE(4062), 1, - sym_expression, - STATE(4224), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4990), 1, + STATE(5085), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95805,18 +102160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95824,7 +102179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95841,51 +102196,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54504] = 26, - ACTIONS(161), 1, + [57718] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(993), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1899), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, + STATE(4309), 1, + sym_selector_expression, STATE(5202), 1, sym_expression, - STATE(5909), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95894,18 +102249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -95913,7 +102268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -95930,51 +102285,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54619] = 26, - ACTIONS(534), 1, + [57833] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1327), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1331), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(267), 1, + sym_expression, + STATE(2350), 1, sym_call, - STATE(3727), 1, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, sym_selector_expression, - STATE(5073), 1, - sym_expression, - STATE(5075), 1, + STATE(5231), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -95983,18 +102338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2757), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96002,7 +102357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96019,51 +102374,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54734] = 26, - ACTIONS(510), 1, + [57948] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(2921), 1, + sym_identifier, + STATE(4096), 1, sym_call, - STATE(2835), 1, + STATE(4115), 1, sym_primary_expression, - STATE(3023), 1, + STATE(4276), 1, sym_selector_expression, - STATE(4358), 1, - sym_expression, - STATE(5088), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5259), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96072,18 +102427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96091,7 +102446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96108,51 +102463,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54849] = 26, - ACTIONS(634), 1, + [58063] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(237), 1, - sym_expression, - STATE(2840), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(2921), 1, + sym_identifier, + STATE(4096), 1, sym_call, - STATE(3028), 1, + STATE(4114), 1, + sym_primary_expression, + STATE(4276), 1, sym_selector_expression, - STATE(5014), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5965), 1, + STATE(5259), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96161,18 +102516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96180,7 +102535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96197,140 +102552,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54964] = 26, - ACTIONS(510), 1, + [58178] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - sym_identifier, ACTIONS(1363), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(2835), 1, + STATE(3779), 1, sym_primary_expression, - STATE(3023), 1, + STATE(3900), 1, sym_selector_expression, - STATE(4363), 1, + STATE(5108), 1, sym_expression, - STATE(5088), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(3222), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [55079] = 26, - ACTIONS(257), 1, - anon_sym_LPAREN, - ACTIONS(259), 1, - anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, - anon_sym_LBRACE, - ACTIONS(267), 1, - anon_sym_DQUOTE, - ACTIONS(273), 1, - sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(854), 1, - anon_sym_not, - STATE(140), 1, - sym_expression, - STATE(2313), 1, - sym_primary_expression, - STATE(2328), 1, - sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(5009), 1, - sym_dotted_name, - STATE(6187), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2456), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(269), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96339,18 +102605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96358,7 +102624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96375,51 +102641,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55194] = 26, - ACTIONS(510), 1, + [58293] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(2835), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3023), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4369), 1, - sym_expression, - STATE(5088), 1, + STATE(4949), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5169), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96428,18 +102694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96447,7 +102713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96464,51 +102730,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55309] = 26, - ACTIONS(454), 1, + [58408] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(2535), 1, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2677), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5113), 1, + STATE(4954), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5134), 1, sym_expression, - STATE(5958), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96517,18 +102783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96536,7 +102802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96553,51 +102819,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55424] = 26, - ACTIONS(634), 1, + [58523] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1371), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2840), 1, - sym_primary_expression, - STATE(3027), 1, + STATE(3482), 1, sym_call, - STATE(3028), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(4255), 1, + STATE(5160), 1, sym_expression, - STATE(5014), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96606,18 +102872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96625,7 +102891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96642,51 +102908,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55539] = 26, - ACTIONS(135), 1, + [58638] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(870), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1880), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5174), 1, + STATE(5175), 1, sym_expression, - STATE(5990), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96695,18 +102961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96714,7 +102980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96731,75 +102997,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55654] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2633), 1, + [58753] = 23, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, - anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2077), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2079), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2651), 1, - anon_sym_AMP, - ACTIONS(2653), 1, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, anon_sym_CARET, - ACTIONS(2657), 1, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, anon_sym_PIPE, - STATE(2195), 1, + ACTIONS(2925), 1, + anon_sym_for, + STATE(1318), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, + ACTIONS(2691), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, + ACTIONS(2695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2655), 2, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2524), 8, + ACTIONS(2927), 8, + sym__newline, + 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(2522), 20, + ACTIONS(2923), 19, anon_sym_import, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -96816,51 +103083,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [55761] = 26, - ACTIONS(161), 1, + [58862] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(989), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1899), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(4096), 1, sym_call, + STATE(4309), 1, + sym_selector_expression, STATE(5113), 1, - sym_dotted_name, - STATE(5202), 1, sym_expression, - STATE(5909), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96869,18 +103136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96888,7 +103155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96905,51 +103172,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55876] = 26, - ACTIONS(135), 1, + [58977] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, - sym_identifier, - STATE(868), 1, + STATE(2856), 1, sym_primary_expression, - STATE(1880), 1, + STATE(2998), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(2027), 1, + STATE(3115), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, STATE(5174), 1, - sym_expression, - STATE(5990), 1, + sym_dotted_name, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -96958,18 +103225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -96977,7 +103244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -96994,51 +103261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55991] = 26, - ACTIONS(534), 1, + [59092] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3678), 1, + STATE(3758), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97047,18 +103314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97066,7 +103333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97083,51 +103350,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56106] = 26, - ACTIONS(534), 1, + [59207] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - ACTIONS(2701), 1, + ACTIONS(2931), 1, anon_sym_not, - STATE(3678), 1, + STATE(3758), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97136,18 +103403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97155,7 +103422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97172,51 +103439,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56221] = 26, - ACTIONS(161), 1, + [59322] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(2695), 1, - sym_identifier, - ACTIONS(2703), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(989), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1899), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5202), 1, + STATE(5131), 1, sym_expression, - STATE(5909), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97225,18 +103492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97244,7 +103511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97261,51 +103528,229 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56336] = 26, - ACTIONS(135), 1, + [59437] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2643), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(866), 1, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1880), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, + STATE(4995), 1, + sym_dotted_name, + STATE(5188), 1, + sym_expression, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [59552] = 26, + ACTIONS(375), 1, + anon_sym_LPAREN, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_LBRACE, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(5113), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, + sym_selector_expression, + STATE(4969), 1, sym_dotted_name, - STATE(5174), 1, + STATE(5168), 1, sym_expression, - STATE(5990), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + ACTIONS(387), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [59667] = 26, + ACTIONS(375), 1, + anon_sym_LPAREN, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_LBRACE, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, + sym_selector_expression, + STATE(5141), 1, + sym_expression, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97314,18 +103759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97333,7 +103778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97350,51 +103795,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56451] = 26, - ACTIONS(390), 1, + [59782] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(3460), 1, + STATE(4096), 1, sym_call, - STATE(3464), 1, + STATE(4113), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4276), 1, sym_selector_expression, - STATE(4837), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5010), 1, + STATE(5259), 1, sym_expression, - STATE(6057), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97403,18 +103848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97422,7 +103867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97439,51 +103884,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56566] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [59897] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1198), 1, - sym_expression, - STATE(1878), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(4900), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97492,18 +103937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97511,7 +103956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97528,51 +103973,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56681] = 26, - ACTIONS(534), 1, + [60012] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4784), 1, + STATE(4902), 1, sym_expression, - STATE(5075), 1, + STATE(5220), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97581,18 +104026,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97600,7 +104045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97617,51 +104062,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56796] = 26, - ACTIONS(534), 1, + [60127] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, ACTIONS(550), 1, - sym_float, + anon_sym_not, ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(3750), 1, + sym_expression, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, sym_selector_expression, - STATE(4785), 1, - sym_expression, - STATE(5075), 1, + STATE(5099), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97670,18 +104115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4177), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97689,7 +104134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97706,51 +104151,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56911] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(534), 1, + [60242] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(544), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - STATE(3661), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2921), 1, + sym_identifier, + STATE(4096), 1, sym_call, - STATE(3835), 1, + STATE(4112), 1, + sym_primary_expression, + STATE(4276), 1, sym_selector_expression, - STATE(5121), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5259), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97759,18 +104204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97778,7 +104223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97795,51 +104240,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57026] = 26, - ACTIONS(161), 1, + [60357] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(992), 1, + STATE(4096), 1, + sym_call, + STATE(4111), 1, sym_primary_expression, - STATE(1899), 1, + STATE(4276), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5202), 1, + STATE(5259), 1, sym_expression, - STATE(5909), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97848,18 +104293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97867,7 +104312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97884,51 +104329,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57141] = 26, - ACTIONS(682), 1, + [60472] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(239), 1, - sym_expression, - STATE(2879), 1, + ACTIONS(2929), 1, + sym_identifier, + STATE(3747), 1, sym_primary_expression, - STATE(2993), 1, + STATE(3778), 1, sym_call, - STATE(3005), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5067), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5268), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -97937,18 +104382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -97956,7 +104401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -97973,51 +104418,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57256] = 26, - ACTIONS(534), 1, + [60587] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3641), 1, + STATE(3746), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98026,18 +104471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98045,7 +104490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98062,51 +104507,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57371] = 26, - ACTIONS(534), 1, + [60702] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3640), 1, + STATE(3744), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98115,18 +104560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98134,7 +104579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98151,51 +104596,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57486] = 26, - ACTIONS(534), 1, + [60817] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3636), 1, + STATE(3743), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98204,18 +104649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98223,7 +104668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98240,51 +104685,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57601] = 26, - ACTIONS(534), 1, + [60932] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3634), 1, + STATE(3742), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98293,18 +104738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98312,7 +104757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98329,51 +104774,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57716] = 26, - ACTIONS(534), 1, + [61047] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3632), 1, + STATE(3741), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98382,18 +104827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98401,7 +104846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98418,51 +104863,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57831] = 26, - ACTIONS(534), 1, + [61162] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2929), 1, sym_identifier, - STATE(3630), 1, + STATE(3740), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3778), 1, sym_call, - STATE(3726), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5268), 1, sym_expression, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98471,18 +104916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98490,7 +104935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98507,51 +104952,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57946] = 26, - ACTIONS(534), 1, + [61277] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2699), 1, - sym_identifier, - STATE(3629), 1, + STATE(2856), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3726), 1, + STATE(3017), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(5113), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(5178), 1, - sym_expression, - STATE(6118), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3920), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98560,18 +105005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98579,7 +105024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98596,51 +105041,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58061] = 26, - ACTIONS(682), 1, + [61392] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(236), 1, - sym_expression, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(2921), 1, + sym_identifier, + STATE(4096), 1, sym_call, - STATE(3005), 1, + STATE(4110), 1, + sym_primary_expression, + STATE(4276), 1, sym_selector_expression, - STATE(5067), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5259), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98649,18 +105094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98668,7 +105113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98685,51 +105130,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58176] = 26, - ACTIONS(161), 1, + [61507] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(995), 1, + STATE(4096), 1, + sym_call, + STATE(4109), 1, sym_primary_expression, - STATE(1899), 1, + STATE(4276), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5202), 1, + STATE(5259), 1, sym_expression, - STATE(5909), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98738,18 +105183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98757,7 +105202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98774,51 +105219,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58291] = 26, - ACTIONS(161), 1, + [61622] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, - sym_identifier, - STATE(996), 1, + STATE(2856), 1, sym_primary_expression, - STATE(1899), 1, + STATE(3014), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(2072), 1, + STATE(3115), 1, sym_call, - STATE(5113), 1, + STATE(5174), 1, sym_dotted_name, - STATE(5202), 1, - sym_expression, - STATE(5909), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -98827,18 +105272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -98846,7 +105291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -98863,140 +105308,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58406] = 26, - ACTIONS(634), 1, + [61737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2807), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(644), 1, - anon_sym_DQUOTE, - ACTIONS(650), 1, - sym_float, - ACTIONS(652), 1, - sym_string_start, - ACTIONS(740), 1, - anon_sym_DOT, - ACTIONS(742), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, - sym_identifier, - STATE(2853), 1, - sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3073), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5190), 1, - sym_expression, - STATE(5965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(646), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2805), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3220), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(648), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3203), 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, - [58521] = 26, - ACTIONS(257), 1, + [61806] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_primary_expression, - STATE(2374), 1, - sym_expression, - STATE(2407), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2921), 1, + sym_identifier, + STATE(4096), 1, sym_call, - STATE(2660), 1, + STATE(4108), 1, + sym_primary_expression, + STATE(4276), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5259), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99005,18 +105427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99024,7 +105446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99041,51 +105463,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58636] = 26, - ACTIONS(161), 1, + [61921] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(997), 1, + STATE(4096), 1, + sym_call, + STATE(4107), 1, sym_primary_expression, - STATE(1899), 1, + STATE(4276), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5202), 1, + STATE(5259), 1, sym_expression, - STATE(5909), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99094,18 +105516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99113,7 +105535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99130,51 +105552,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58751] = 26, - ACTIONS(161), 1, + [62036] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(1002), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1899), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5202), 1, + STATE(5138), 1, sym_expression, - STATE(5909), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99183,18 +105605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99202,7 +105624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99219,51 +105641,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58866] = 26, - ACTIONS(161), 1, + [62151] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(1003), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1899), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5202), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5129), 1, sym_expression, - STATE(5909), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99272,18 +105694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99291,7 +105713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99308,51 +105730,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58981] = 26, - ACTIONS(416), 1, + [62266] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1341), 1, - sym_identifier, - ACTIONS(1345), 1, - anon_sym_not, - STATE(2365), 1, + STATE(4096), 1, sym_call, - STATE(3007), 1, + STATE(4105), 1, + sym_expression, + STATE(4242), 1, sym_primary_expression, - STATE(3219), 1, + STATE(4321), 1, sym_selector_expression, - STATE(4271), 1, - sym_expression, - STATE(5058), 1, + STATE(5102), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99361,18 +105783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(4410), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99380,7 +105802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99397,136 +105819,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59096] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2721), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59203] = 26, - ACTIONS(390), 1, + [62381] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(4827), 1, - sym_dotted_name, - STATE(5001), 1, + STATE(5077), 1, sym_expression, - STATE(6057), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99535,18 +105872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99554,7 +105891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99571,51 +105908,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59318] = 26, - ACTIONS(161), 1, + [62496] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(1004), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1899), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5202), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5076), 1, sym_expression, - STATE(5909), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99624,18 +105961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99643,7 +105980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99660,197 +105997,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59433] = 10, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 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(2518), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59516] = 10, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 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(2518), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59599] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [62611] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(103), 1, - sym_expression, - STATE(2766), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3042), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(5059), 1, + STATE(5089), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -99859,18 +106050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -99878,7 +106069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -99895,283 +106086,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59714] = 12, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [62726] = 26, + ACTIONS(708), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59801] = 16, - ACTIONS(2707), 1, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 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(2518), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, + ACTIONS(716), 1, 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_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, - [59896] = 15, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(718), 1, 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(2518), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(720), 1, 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, - [59989] = 26, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2699), 1, - sym_identifier, - STATE(3619), 1, + STATE(2856), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3726), 1, + STATE(3011), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(5113), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(5178), 1, - sym_expression, - STATE(6118), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3920), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -100180,18 +106139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -100199,7 +106158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -100216,51 +106175,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60104] = 26, - ACTIONS(534), 1, + [62841] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(3612), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(3482), 1, sym_call, - STATE(3726), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5113), 1, + STATE(4929), 1, sym_dotted_name, - STATE(5183), 1, + STATE(5110), 1, sym_expression, - STATE(6118), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -100269,18 +106228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -100288,7 +106247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -100305,51 +106264,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60219] = 26, - ACTIONS(682), 1, + [62956] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(2942), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(2933), 1, + anon_sym_not, + STATE(4096), 1, sym_call, - STATE(3094), 1, + STATE(4102), 1, + sym_primary_expression, + STATE(4276), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5184), 1, + STATE(5259), 1, sym_expression, - STATE(5976), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -100358,18 +106317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -100377,7 +106336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -100394,51 +106353,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60334] = 26, - ACTIONS(682), 1, + [63071] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(2921), 1, + sym_identifier, + STATE(4096), 1, sym_call, - STATE(3005), 1, + STATE(4102), 1, + sym_primary_expression, + STATE(4276), 1, sym_selector_expression, - STATE(4318), 1, - sym_expression, - STATE(5067), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5259), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -100447,18 +106406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -100466,7 +106425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -100483,289 +106442,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60449] = 14, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 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(2518), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [60540] = 13, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 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(2518), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [60629] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2721), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [60736] = 26, - ACTIONS(390), 1, + [63186] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(4095), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(4998), 1, + STATE(5096), 1, sym_expression, - STATE(5018), 1, + STATE(5205), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -100774,18 +106495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -100793,7 +106514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -100810,136 +106531,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60851] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2707), 1, + [63301] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, + anon_sym_LBRACE, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(2721), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2929), 1, + sym_identifier, + STATE(3733), 1, + sym_primary_expression, + STATE(3778), 1, + sym_call, + STATE(3887), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5268), 1, + sym_expression, + STATE(6322), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(2489), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, + STATE(4227), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [60958] = 26, - ACTIONS(390), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [63416] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(2929), 1, + sym_identifier, + STATE(3732), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3778), 1, + sym_call, + STATE(3887), 1, sym_selector_expression, - STATE(4996), 1, - sym_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5268), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -100948,18 +106673,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -100967,7 +106692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -100984,51 +106709,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61073] = 26, - ACTIONS(135), 1, + [63531] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2643), 1, + ACTIONS(2935), 1, sym_identifier, - STATE(864), 1, + STATE(2980), 1, sym_primary_expression, - STATE(1880), 1, + STATE(3039), 1, sym_selector_expression, - STATE(2027), 1, + STATE(3115), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5174), 1, + STATE(5260), 1, sym_expression, - STATE(5990), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101037,18 +106762,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101056,7 +106781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101073,51 +106798,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61188] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [63646] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(2937), 1, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4126), 1, - sym_primary_expression, - STATE(4230), 1, + STATE(3458), 1, sym_selector_expression, - STATE(5113), 1, + STATE(3925), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5199), 1, + STATE(5282), 1, sym_expression, - STATE(6288), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101126,18 +106851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101145,7 +106870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101162,51 +106887,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61303] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [63761] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1156), 1, sym_identifier, - STATE(3874), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(4125), 1, + STATE(3533), 1, sym_primary_expression, - STATE(4230), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5187), 1, + STATE(5153), 1, sym_expression, - STATE(6288), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101215,18 +106940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101234,7 +106959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101251,51 +106976,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61418] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [63876] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1155), 1, - sym_expression, - STATE(1878), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(5156), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101304,18 +107029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101323,7 +107048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101340,7 +107065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61533] = 26, + [63991] = 26, ACTIONS(93), 1, anon_sym_LPAREN, ACTIONS(95), 1, @@ -101355,36 +107080,36 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(111), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(772), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(818), 1, anon_sym_not, - STATE(120), 1, - sym_expression, - STATE(780), 1, + STATE(847), 1, sym_primary_expression, - STATE(1655), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(879), 1, sym_call, - STATE(5130), 1, + STATE(1752), 1, + sym_selector_expression, + STATE(3336), 1, + sym_expression, + STATE(5179), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101393,7 +107118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -101404,7 +107129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101412,7 +107137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101429,51 +107154,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61648] = 26, - ACTIONS(67), 1, + [64106] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2735), 1, - sym_identifier, - STATE(1028), 1, + STATE(112), 1, + sym_expression, + STATE(2856), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3034), 1, sym_selector_expression, - STATE(1533), 1, + STATE(3115), 1, sym_call, - STATE(5113), 1, + STATE(5174), 1, sym_dotted_name, - STATE(5157), 1, - sym_expression, - STATE(5858), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101482,18 +107207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101501,7 +107226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101518,48 +107243,48 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61763] = 26, - ACTIONS(67), 1, + [64221] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(2735), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(2737), 1, + ACTIONS(818), 1, anon_sym_not, - STATE(1028), 1, + STATE(847), 1, sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5157), 1, + STATE(1752), 1, + sym_selector_expression, + STATE(3328), 1, sym_expression, - STATE(5858), 1, + STATE(5179), 1, + sym_dotted_name, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, ACTIONS(119), 3, @@ -101571,18 +107296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101590,7 +107315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101607,51 +107332,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61878] = 26, - ACTIONS(67), 1, + [64336] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1199), 1, - sym_expression, - STATE(1533), 1, + STATE(4096), 1, sym_call, - STATE(2098), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5107), 1, + STATE(5127), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101660,18 +107385,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101679,7 +107404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101696,140 +107421,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61993] = 26, - ACTIONS(93), 1, + [64451] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(781), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(3778), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5186), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [62108] = 26, - ACTIONS(93), 1, - anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_not, - STATE(780), 1, + STATE(3779), 1, sym_primary_expression, - STATE(1655), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(3267), 1, + STATE(5209), 1, sym_expression, - STATE(5130), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101838,18 +107474,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101857,7 +107493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101874,51 +107510,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62223] = 26, - ACTIONS(67), 1, + [64566] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(1031), 1, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3628), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(4956), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5225), 1, sym_expression, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -101927,18 +107563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -101946,7 +107582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -101963,51 +107599,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62338] = 26, - ACTIONS(67), 1, + [64681] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(1032), 1, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3628), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(4961), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5237), 1, sym_expression, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102016,18 +107652,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102035,7 +107671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102052,51 +107688,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62453] = 26, - ACTIONS(67), 1, + [64796] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(1033), 1, + STATE(3482), 1, + sym_call, + STATE(3532), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3618), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5262), 1, sym_expression, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102105,18 +107741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102124,7 +107760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102141,51 +107777,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62568] = 26, - ACTIONS(67), 1, + [64911] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(1036), 1, + STATE(3482), 1, + sym_call, + STATE(3531), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3618), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5262), 1, sym_expression, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102194,18 +107830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102213,7 +107849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102230,51 +107866,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62683] = 26, - ACTIONS(135), 1, + [65026] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2643), 1, + ACTIONS(2941), 1, sym_identifier, - STATE(861), 1, - sym_primary_expression, - STATE(1880), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(1411), 1, sym_call, - STATE(5113), 1, + STATE(1710), 1, + sym_selector_expression, + STATE(2139), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5174), 1, + STATE(5254), 1, sym_expression, - STATE(5990), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102283,18 +107919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102302,7 +107938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102319,51 +107955,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62798] = 26, - ACTIONS(534), 1, + [65141] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(3482), 1, sym_call, - STATE(3727), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(4798), 1, - sym_expression, - STATE(5075), 1, + STATE(5192), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5242), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102372,18 +108008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102391,7 +108027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102408,51 +108044,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62913] = 26, - ACTIONS(67), 1, + [65256] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(1037), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3628), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5245), 1, sym_expression, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102461,18 +108097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102480,7 +108116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102497,51 +108133,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63028] = 26, - ACTIONS(67), 1, + [65371] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(1038), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5240), 1, sym_expression, - STATE(5858), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102550,18 +108186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102569,7 +108205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102586,51 +108222,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63143] = 26, - ACTIONS(135), 1, + [65486] = 26, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, - sym_identifier, - STATE(859), 1, + STATE(2369), 1, sym_primary_expression, - STATE(1880), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(2402), 1, + sym_expression, + STATE(2436), 1, sym_call, - STATE(5113), 1, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, sym_dotted_name, - STATE(5174), 1, - sym_expression, - STATE(5990), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102639,18 +108275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102658,7 +108294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102675,51 +108311,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63258] = 26, - ACTIONS(67), 1, + [65601] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(1040), 1, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5157), 1, + STATE(5133), 1, sym_expression, - STATE(5858), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102728,18 +108364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102747,7 +108383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102764,136 +108400,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63373] = 22, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2749), 1, - anon_sym_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_CARET, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [65716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, + ACTIONS(2803), 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, - ACTIONS(2747), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2522), 19, + ACTIONS(2801), 34, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [63480] = 26, - ACTIONS(67), 1, + [65785] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(1043), 1, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(4096), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5157), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5097), 1, sym_expression, - STATE(5858), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102902,18 +108519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -102921,7 +108538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -102938,51 +108555,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63595] = 26, - ACTIONS(135), 1, + [65900] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(128), 1, - sym_expression, - STATE(1411), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1911), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5035), 1, + STATE(5002), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5123), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -102991,18 +108608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -103010,7 +108627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -103027,272 +108644,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63710] = 10, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 22, - sym__newline, - 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(2518), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [66015] = 26, + ACTIONS(424), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [63793] = 10, - ACTIONS(2369), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 22, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 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, + ACTIONS(444), 1, sym_float, - ACTIONS(2518), 31, - anon_sym_import, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [63876] = 12, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + STATE(2369), 1, + sym_primary_expression, + STATE(2372), 1, + sym_expression, + STATE(2436), 1, + sym_call, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, + sym_dotted_name, + STATE(6027), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 20, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2707), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [63963] = 26, - ACTIONS(135), 1, + STATE(2608), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [66130] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(1880), 1, - sym_selector_expression, - STATE(2016), 1, - sym_primary_expression, - STATE(2027), 1, + STATE(3778), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5205), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, + sym_selector_expression, + STATE(4907), 1, sym_expression, - STATE(5990), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -103301,18 +108786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -103320,7 +108805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -103337,51 +108822,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64078] = 26, - ACTIONS(135), 1, + [66245] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(822), 1, + ACTIONS(1345), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(1351), 1, anon_sym_not, - STATE(2027), 1, - sym_call, - STATE(2033), 1, + STATE(2656), 1, sym_primary_expression, - STATE(2164), 1, + STATE(2751), 1, + sym_call, + STATE(2755), 1, sym_selector_expression, - STATE(3352), 1, + STATE(4212), 1, sym_expression, - STATE(5144), 1, + STATE(5210), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -103390,18 +108875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -103409,7 +108894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -103426,285 +108911,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64193] = 16, - ACTIONS(2369), 1, + [66360] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_CARET, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + ACTIONS(71), 1, 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_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, - [64288] = 15, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2753), 1, - anon_sym_CARET, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(77), 1, 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, + ACTIONS(83), 1, sym_float, - ACTIONS(2518), 29, - anon_sym_import, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(2943), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [64381] = 14, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(1802), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 16, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [64472] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(534), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [66475] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(544), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(3586), 1, - sym_expression, - STATE(3717), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2945), 1, + sym_identifier, + STATE(2392), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3835), 1, + STATE(2428), 1, sym_selector_expression, - STATE(5121), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -103713,18 +109053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -103732,7 +109072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -103749,127 +109089,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64587] = 13, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, - sym__newline, - 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [64676] = 26, - ACTIONS(486), 1, + [66590] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(2945), 1, sym_identifier, - STATE(3446), 1, + STATE(2390), 1, + sym_primary_expression, + STATE(2428), 1, sym_selector_expression, - STATE(3663), 1, + STATE(2436), 1, sym_call, - STATE(3696), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5270), 1, sym_expression, - STATE(6002), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -103878,18 +109142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -103897,7 +109161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -103914,51 +109178,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64791] = 26, - ACTIONS(534), 1, + [66705] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(2945), 1, + sym_identifier, + STATE(2385), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(2428), 1, sym_selector_expression, - STATE(4804), 1, - sym_expression, - STATE(5075), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -103967,18 +109231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -103986,7 +109250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104003,136 +109267,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64906] = 22, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2749), 1, - anon_sym_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_CARET, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [65013] = 26, - ACTIONS(486), 1, + [66820] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(2759), 1, - sym_identifier, - ACTIONS(2761), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, + ACTIONS(2945), 1, + sym_identifier, + STATE(2384), 1, + sym_primary_expression, + STATE(2428), 1, sym_selector_expression, - STATE(3663), 1, + STATE(2436), 1, sym_call, - STATE(3696), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5270), 1, sym_expression, - STATE(6002), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104141,18 +109320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104160,7 +109339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104177,51 +109356,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65128] = 26, - ACTIONS(486), 1, + [66935] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, - anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3781), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(4919), 1, + STATE(5124), 1, sym_expression, - STATE(5123), 1, + STATE(5192), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104230,18 +109409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104249,7 +109428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104266,136 +109445,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65243] = 22, - ACTIONS(2369), 1, + [67050] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2749), 1, - anon_sym_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_CARET, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [65350] = 26, - ACTIONS(67), 1, - anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, - sym_primary_expression, - STATE(1173), 1, - sym_expression, - STATE(1533), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(2098), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5107), 1, + STATE(4970), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5112), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104404,18 +109498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104423,7 +109517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104440,51 +109534,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65465] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [67165] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2287), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2304), 1, - sym_expression, - STATE(2329), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(4999), 1, + STATE(5122), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104493,18 +109587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104512,7 +109606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104529,51 +109623,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65580] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1339), 1, - anon_sym_not, - ACTIONS(2601), 1, + [67280] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(444), 1, sym_float, - STATE(230), 1, - sym_expression, - STATE(2751), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2945), 1, + sym_identifier, + STATE(2383), 1, sym_primary_expression, - STATE(2824), 1, + STATE(2428), 1, sym_selector_expression, - STATE(2870), 1, + STATE(2436), 1, sym_call, - STATE(5115), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104582,18 +109676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104601,7 +109695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104618,51 +109712,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65695] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [67395] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(2287), 1, + ACTIONS(1345), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + STATE(2656), 1, sym_primary_expression, - STATE(2319), 1, - sym_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(2751), 1, sym_call, - STATE(4999), 1, + STATE(2755), 1, + sym_selector_expression, + STATE(4210), 1, + sym_expression, + STATE(5210), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104671,18 +109765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104690,7 +109784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104707,51 +109801,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65810] = 26, - ACTIONS(135), 1, + [67510] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(1167), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1880), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5174), 1, + STATE(5111), 1, sym_expression, - STATE(5990), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104760,18 +109854,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104779,7 +109873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104796,51 +109890,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65925] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [67625] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2287), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2301), 1, - sym_expression, - STATE(2329), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(4999), 1, + STATE(5192), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5218), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104849,18 +109943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104868,7 +109962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104885,51 +109979,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66040] = 26, - ACTIONS(390), 1, + [67740] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3460), 1, + STATE(3482), 1, sym_call, - STATE(3464), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4844), 1, - sym_expression, - STATE(5018), 1, + STATE(5192), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5200), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -104943,13 +110037,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -104957,7 +110051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -104974,51 +110068,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66155] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [67855] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(576), 1, + anon_sym_QMARK_DOT, + ACTIONS(1345), 1, sym_identifier, - STATE(3771), 1, + ACTIONS(1351), 1, + anon_sym_not, + STATE(2656), 1, sym_primary_expression, - STATE(3807), 1, + STATE(2751), 1, sym_call, - STATE(3943), 1, + STATE(2755), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5200), 1, + STATE(4209), 1, sym_expression, - STATE(5996), 1, + STATE(5210), 1, + sym_dotted_name, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105027,18 +110121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105046,7 +110140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105063,51 +110157,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66270] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + [67970] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(391), 1, sym_float, - STATE(3807), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3825), 1, + STATE(3533), 1, sym_primary_expression, - STATE(4004), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4829), 1, + STATE(5107), 1, sym_expression, - STATE(5150), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(4239), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105116,18 +110210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105135,7 +110229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105152,51 +110246,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66385] = 26, - ACTIONS(251), 1, + [68085] = 26, + ACTIONS(538), 1, sym_identifier, - ACTIONS(257), 1, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(265), 1, + ACTIONS(550), 1, anon_sym_not, - ACTIONS(267), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(2287), 1, - sym_primary_expression, - STATE(2297), 1, + STATE(3723), 1, sym_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(3778), 1, sym_call, - STATE(4999), 1, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105205,18 +110299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(4177), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105224,7 +110318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105241,51 +110335,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66500] = 26, - ACTIONS(486), 1, + [68200] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, - anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4313), 1, + STATE(604), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5168), 1, + STATE(703), 1, sym_expression, - STATE(6002), 1, + STATE(860), 1, + sym_call, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105294,18 +110388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105313,7 +110407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105330,51 +110424,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66615] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [68315] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2287), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2291), 1, - sym_expression, - STATE(2329), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(4999), 1, + STATE(4943), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5170), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105383,18 +110477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105402,7 +110496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105419,51 +110513,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66730] = 26, - ACTIONS(534), 1, + [68430] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4809), 1, + STATE(4908), 1, sym_expression, - STATE(5075), 1, + STATE(5220), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105472,18 +110566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105491,7 +110585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105508,51 +110602,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66845] = 26, - ACTIONS(486), 1, + [68545] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4314), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2652), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5168), 1, + STATE(5280), 1, sym_expression, - STATE(6002), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105561,18 +110655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105580,7 +110674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105597,51 +110691,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66960] = 26, - ACTIONS(486), 1, + [68660] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(4315), 1, + STATE(3779), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5168), 1, + STATE(3900), 1, + sym_selector_expression, + STATE(5144), 1, sym_expression, - STATE(6002), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105650,18 +110744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105669,7 +110763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105686,51 +110780,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67075] = 26, - ACTIONS(486), 1, + [68775] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4316), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2653), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5168), 1, + STATE(5280), 1, sym_expression, - STATE(6002), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105739,18 +110833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105758,7 +110852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105775,51 +110869,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67190] = 26, - ACTIONS(486), 1, + [68890] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + ACTIONS(1345), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1351), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4321), 1, + STATE(2656), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5168), 1, + STATE(2751), 1, + sym_call, + STATE(2755), 1, + sym_selector_expression, + STATE(4207), 1, sym_expression, - STATE(6002), 1, + STATE(5210), 1, + sym_dotted_name, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -105828,18 +110922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -105847,7 +110941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -105864,135 +110958,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67305] = 21, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2637), 1, - anon_sym_STAR_STAR, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2651), 1, - anon_sym_AMP, - ACTIONS(2653), 1, - anon_sym_CARET, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_not, - ACTIONS(2771), 1, - anon_sym_is, - STATE(2022), 1, - aux_sym_comparison_operator_repeat1, - STATE(2195), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2655), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2765), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2769), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 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(2365), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [67410] = 26, - ACTIONS(135), 1, + [69005] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, - sym_primary_expression, - STATE(1422), 1, - sym_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, + ACTIONS(814), 1, + sym_identifier, + ACTIONS(818), 1, + anon_sym_not, + STATE(847), 1, + sym_primary_expression, + STATE(879), 1, sym_call, - STATE(5065), 1, + STATE(1752), 1, + sym_selector_expression, + STATE(3332), 1, + sym_expression, + STATE(5179), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106001,18 +111011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106020,7 +111030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106037,51 +111047,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67525] = 26, - ACTIONS(510), 1, + [69120] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1291), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(1297), 1, + ACTIONS(846), 1, anon_sym_not, - STATE(250), 1, - sym_expression, - STATE(2396), 1, + STATE(1411), 1, sym_call, - STATE(2590), 1, + STATE(2225), 1, sym_primary_expression, - STATE(2738), 1, + STATE(2270), 1, sym_selector_expression, - STATE(5127), 1, + STATE(3391), 1, + sym_expression, + STATE(5185), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106090,18 +111100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106109,7 +111119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106126,51 +111136,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67640] = 26, - ACTIONS(486), 1, + [69235] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + ACTIONS(2917), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(2947), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4244), 1, + STATE(2689), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5168), 1, + STATE(5280), 1, sym_expression, - STATE(6002), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106179,18 +111189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106198,7 +111208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106215,51 +111225,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67755] = 26, - ACTIONS(135), 1, + [69350] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1461), 1, - sym_expression, - STATE(1901), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, + STATE(4941), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5118), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106268,18 +111278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106287,7 +111297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106304,51 +111314,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67870] = 26, - ACTIONS(486), 1, + [69465] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4329), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2689), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5168), 1, + STATE(5280), 1, sym_expression, - STATE(6002), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106357,18 +111367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106376,7 +111386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106393,51 +111403,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67985] = 26, - ACTIONS(135), 1, + [69580] = 26, + ACTIONS(456), 1, + sym_identifier, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, + STATE(3583), 1, sym_primary_expression, - STATE(1470), 1, + STATE(3593), 1, + sym_call, + STATE(3638), 1, sym_expression, - STATE(1901), 1, + STATE(3756), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, + STATE(5214), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106446,18 +111456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106465,7 +111475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106482,51 +111492,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68100] = 26, - ACTIONS(486), 1, + [69695] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2759), 1, - sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(3713), 1, + STATE(2781), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, + sym_selector_expression, + STATE(5140), 1, sym_dotted_name, - STATE(5163), 1, - sym_expression, - STATE(6002), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106535,18 +111545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106554,7 +111564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106571,51 +111581,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68215] = 26, - ACTIONS(486), 1, + [69810] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3600), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(3482), 1, sym_call, - STATE(5113), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, + sym_selector_expression, + STATE(4973), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5206), 1, sym_expression, - STATE(6002), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106624,18 +111634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106643,7 +111653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106660,51 +111670,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68330] = 26, - ACTIONS(486), 1, + [69925] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(4370), 1, + STATE(3533), 1, sym_primary_expression, - STATE(5113), 1, + STATE(3628), 1, + sym_selector_expression, + STATE(4960), 1, sym_dotted_name, - STATE(5203), 1, + STATE(5207), 1, sym_expression, - STATE(6002), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106713,18 +111723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106732,7 +111742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106749,51 +111759,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68445] = 26, - ACTIONS(486), 1, + [70040] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1369), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3761), 1, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(3981), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(4842), 1, + STATE(5183), 1, sym_expression, - STATE(4995), 1, + STATE(5192), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106802,18 +111812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106821,7 +111831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106838,51 +111848,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68560] = 26, - ACTIONS(135), 1, + [70155] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1473), 1, - sym_expression, - STATE(1901), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5065), 1, + STATE(5094), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -106891,18 +111901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -106910,7 +111920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -106927,121 +111937,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68675] = 7, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(2773), 1, - anon_sym_and, - ACTIONS(2775), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2481), 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(2479), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_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, - [68752] = 26, - ACTIONS(135), 1, + [70270] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1409), 1, + anon_sym_not, + STATE(4095), 1, sym_primary_expression, - STATE(1086), 1, - sym_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(4096), 1, sym_call, - STATE(5065), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5176), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107050,18 +111990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107069,7 +112009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107086,121 +112026,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68867] = 7, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(2779), 1, - anon_sym_and, - ACTIONS(2781), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2481), 26, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [70385] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, + ACTIONS(544), 1, anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(552), 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(558), 1, sym_float, - ACTIONS(2479), 29, - anon_sym_import, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, + sym_selector_expression, + STATE(5103), 1, + sym_expression, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4121), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [68944] = 26, - ACTIONS(135), 1, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [70500] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(814), 1, - sym_identifier, - ACTIONS(820), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(1411), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1911), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(3334), 1, + STATE(4916), 1, sym_expression, - STATE(5035), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107209,18 +112168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107228,7 +112187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107245,135 +112204,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69059] = 21, - ACTIONS(2407), 1, + [70615] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(2417), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_LBRACE, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2677), 1, - anon_sym_PIPE, - ACTIONS(2679), 1, - anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2785), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2789), 1, - anon_sym_is, - STATE(2060), 1, - aux_sym_comparison_operator_repeat1, - STATE(2083), 1, - sym_argument_list, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, + sym_selector_expression, + STATE(4936), 1, + sym_dotted_name, + STATE(5148), 1, + sym_expression, + STATE(6316), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2783), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - 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(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [69164] = 26, - ACTIONS(135), 1, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [70730] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(2643), 1, - sym_identifier, - ACTIONS(2791), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(959), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1880), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5113), 1, + STATE(4968), 1, sym_dotted_name, - STATE(5174), 1, + STATE(5149), 1, sym_expression, - STATE(5990), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107382,18 +112346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107401,7 +112365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107418,51 +112382,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69279] = 26, - ACTIONS(93), 1, + [70845] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(121), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(125), 1, + ACTIONS(287), 1, anon_sym_not, - ACTIONS(193), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, - sym_primary_expression, - STATE(1475), 1, + STATE(70), 1, sym_expression, - STATE(1659), 1, - sym_call, - STATE(1897), 1, + STATE(2294), 1, + sym_primary_expression, + STATE(2357), 1, sym_selector_expression, - STATE(5071), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107471,18 +112435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107490,7 +112454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107507,51 +112471,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69394] = 26, - ACTIONS(135), 1, + [70960] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2643), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(959), 1, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1880), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5174), 1, + STATE(5132), 1, sym_expression, - STATE(5990), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107560,18 +112524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107579,7 +112543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107596,51 +112560,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69509] = 26, - ACTIONS(93), 1, + [71075] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, - sym_primary_expression, - STATE(1491), 1, - sym_expression, - STATE(1659), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(1897), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5155), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107649,18 +112613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107668,7 +112632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107685,51 +112649,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69624] = 26, - ACTIONS(682), 1, + [71190] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(231), 1, - sym_expression, - STATE(2879), 1, + STATE(4095), 1, sym_primary_expression, - STATE(2993), 1, + STATE(4096), 1, sym_call, - STATE(3005), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5067), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5233), 1, + sym_expression, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107738,18 +112702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107757,7 +112721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107774,123 +112738,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69739] = 9, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(2773), 1, - anon_sym_and, - ACTIONS(2775), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [71305] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, + ACTIONS(377), 1, 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(2469), 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(2449), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69820] = 26, - ACTIONS(93), 1, - anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, - sym_primary_expression, - STATE(1494), 1, - sym_expression, - STATE(1659), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(1897), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5071), 1, + STATE(4986), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5109), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107899,18 +112791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -107918,7 +112810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -107935,51 +112827,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69935] = 26, - ACTIONS(416), 1, + [71420] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1341), 1, - sym_identifier, - ACTIONS(1345), 1, - anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(3007), 1, + STATE(2719), 1, sym_primary_expression, - STATE(3219), 1, - sym_selector_expression, - STATE(4291), 1, + STATE(2734), 1, sym_expression, - STATE(5058), 1, + STATE(2736), 1, + sym_selector_expression, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -107988,18 +112880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108007,7 +112899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108024,51 +112916,131 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70050] = 26, - ACTIONS(93), 1, + [71535] = 17, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 12, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(103), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(109), 1, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(121), 1, + ACTIONS(2386), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(125), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [71632] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, + anon_sym_LBRACK, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(524), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, anon_sym_not, - ACTIONS(193), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + sym_float, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, - sym_primary_expression, - STATE(1496), 1, + STATE(2646), 1, sym_expression, - STATE(1659), 1, - sym_call, - STATE(1897), 1, + STATE(2719), 1, + sym_primary_expression, + STATE(2736), 1, sym_selector_expression, - STATE(5071), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108077,18 +113049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108096,7 +113068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108113,51 +113085,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70165] = 26, - ACTIONS(390), 1, + [71747] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(2945), 1, sym_identifier, - STATE(3457), 1, + STATE(2382), 1, sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3554), 1, + STATE(2428), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5170), 1, + STATE(5270), 1, sym_expression, - STATE(6057), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108166,18 +113138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108185,7 +113157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108202,51 +113174,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70280] = 26, - ACTIONS(390), 1, + [71862] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2612), 1, + sym_expression, + STATE(2719), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2736), 1, sym_selector_expression, - STATE(4763), 1, - sym_expression, - STATE(5018), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108255,18 +113227,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108274,7 +113246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108291,51 +113263,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70395] = 26, - ACTIONS(416), 1, + [71977] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1341), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(3007), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3219), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4258), 1, + STATE(5159), 1, sym_expression, - STATE(5058), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108344,18 +113316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108363,7 +113335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108380,51 +113352,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70510] = 26, - ACTIONS(412), 1, + [72092] = 26, + ACTIONS(512), 1, sym_identifier, - ACTIONS(416), 1, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(424), 1, + ACTIONS(526), 1, anon_sym_not, - ACTIONS(426), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(2296), 1, + STATE(2629), 1, sym_expression, - STATE(2314), 1, + STATE(2719), 1, sym_primary_expression, - STATE(2338), 1, + STATE(2736), 1, sym_selector_expression, - STATE(2365), 1, + STATE(2751), 1, sym_call, - STATE(5063), 1, + STATE(5171), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108433,18 +113405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108452,7 +113424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108469,42 +113441,28 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70625] = 9, - ACTIONS(2777), 1, + [72207] = 5, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2779), 1, - anon_sym_and, - ACTIONS(2781), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 13, - sym__newline, + ACTIONS(2402), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108512,80 +113470,90 @@ 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(2449), 23, + sym_float, + ACTIONS(2400), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, + anon_sym_for, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70706] = 26, - ACTIONS(416), 1, + [72280] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(2977), 1, - sym_expression, - STATE(3010), 1, + STATE(4095), 1, sym_primary_expression, - STATE(3224), 1, + STATE(4096), 1, + sym_call, + STATE(4309), 1, sym_selector_expression, - STATE(5095), 1, + STATE(5195), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108594,18 +113562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108613,7 +113581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108630,51 +113598,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70821] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [72395] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(3608), 1, - sym_primary_expression, - STATE(3633), 1, - sym_expression, - STATE(3663), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3832), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(5122), 1, + STATE(5101), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108683,18 +113651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108702,7 +113670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108719,51 +113687,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70936] = 26, - ACTIONS(486), 1, + [72510] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(2945), 1, sym_identifier, - STATE(3657), 1, + STATE(2381), 1, sym_primary_expression, - STATE(3663), 1, - sym_call, - STATE(3781), 1, + STATE(2428), 1, sym_selector_expression, - STATE(4774), 1, - sym_expression, - STATE(5123), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108772,18 +113740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108791,7 +113759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108808,52 +113776,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71051] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [72625] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(2919), 1, sym_identifier, - ACTIONS(2795), 1, - sym_line_continuation, - STATE(3867), 1, - sym_primary_expression, - STATE(3874), 1, + STATE(3482), 1, sym_call, - STATE(4230), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5113), 1, + STATE(4962), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5165), 1, sym_expression, - STATE(6288), 1, + STATE(6316), 1, sym_quant_op, - STATE(3560), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108862,18 +113829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108881,7 +113848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108898,51 +113865,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71168] = 26, - ACTIONS(257), 1, + [72740] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(854), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(139), 1, - sym_expression, - STATE(2313), 1, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2328), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(5009), 1, + STATE(4925), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5167), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -108951,18 +113918,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -108970,7 +113937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -108987,51 +113954,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71283] = 26, - ACTIONS(416), 1, + [72855] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1341), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(3007), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3219), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4269), 1, + STATE(5177), 1, sym_expression, - STATE(5058), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109040,18 +114007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109059,7 +114026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109076,51 +114043,119 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71398] = 26, - ACTIONS(416), 1, + [72970] = 5, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 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(129), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [73043] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2365), 1, + STATE(3482), 1, sym_call, - STATE(2987), 1, - sym_expression, - STATE(3010), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3224), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5095), 1, + STATE(5178), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109129,18 +114164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109148,7 +114183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109165,29 +114200,34 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71513] = 7, - ACTIONS(131), 1, + [73158] = 10, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2773), 1, + ACTIONS(2981), 1, anon_sym_and, - ACTIONS(2775), 1, + ACTIONS(2983), 1, + anon_sym_or, + ACTIONS(2985), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, + ACTIONS(2057), 24, + 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_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -109204,13 +114244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 30, + ACTIONS(2059), 28, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -109224,7 +114263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -109235,7 +114273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [71590] = 26, + [73241] = 26, ACTIONS(9), 1, sym_identifier, ACTIONS(13), 1, @@ -109256,29 +114294,29 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(55), 1, sym_string_start, - ACTIONS(219), 1, + ACTIONS(199), 1, anon_sym_LBRACK, - STATE(3862), 1, - sym_primary_expression, - STATE(3874), 1, + STATE(3968), 1, sym_call, - STATE(4139), 1, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, sym_selector_expression, - STATE(5112), 1, - sym_expression, - STATE(5116), 1, + STATE(5088), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5198), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, @@ -109288,7 +114326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -109299,7 +114337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109307,7 +114345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109324,51 +114362,187 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71705] = 26, - ACTIONS(390), 1, + [73356] = 5, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2236), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(396), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [73429] = 5, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 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(2252), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [73502] = 26, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1247), 1, anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(1255), 1, sym_identifier, - STATE(3434), 1, - sym_primary_expression, - STATE(3460), 1, + STATE(3593), 1, sym_call, - STATE(3554), 1, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5170), 1, + STATE(5091), 1, sym_expression, - STATE(6057), 1, + STATE(5162), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109377,18 +114551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109396,7 +114570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109413,51 +114587,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71820] = 26, - ACTIONS(390), 1, + [73617] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(2793), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, sym_identifier, - ACTIONS(2797), 1, + ACTIONS(590), 1, anon_sym_not, - STATE(3434), 1, + STATE(3842), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(3460), 1, + STATE(3968), 1, sym_call, - STATE(3554), 1, + STATE(4250), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5139), 1, sym_dotted_name, - STATE(5170), 1, - sym_expression, - STATE(6057), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3679), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109466,18 +114640,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109485,7 +114659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109502,51 +114676,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71935] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [73732] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(3874), 1, + STATE(4096), 1, sym_call, - STATE(4029), 1, + STATE(4217), 1, sym_primary_expression, - STATE(4230), 1, + STATE(4276), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5259), 1, sym_expression, - STATE(6288), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109555,18 +114729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109574,7 +114748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109591,51 +114765,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72050] = 26, - ACTIONS(416), 1, + [73847] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, - sym_identifier, - ACTIONS(706), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(2988), 1, - sym_expression, - STATE(3010), 1, + ACTIONS(2945), 1, + sym_identifier, + STATE(2355), 1, sym_primary_expression, - STATE(3224), 1, + STATE(2428), 1, sym_selector_expression, - STATE(5095), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109644,18 +114818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109663,7 +114837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109680,51 +114854,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72165] = 26, - ACTIONS(416), 1, + [73962] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - STATE(186), 1, - sym_expression, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + ACTIONS(2987), 1, + sym_identifier, + STATE(3968), 1, sym_call, - STATE(2402), 1, + STATE(3979), 1, + sym_primary_expression, + STATE(4224), 1, sym_selector_expression, - STATE(5145), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109733,18 +114907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109752,7 +114926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109769,51 +114943,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72280] = 26, - ACTIONS(416), 1, + [74077] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1341), 1, - sym_identifier, - ACTIONS(1345), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(3007), 1, + ACTIONS(2987), 1, + sym_identifier, + STATE(3954), 1, sym_primary_expression, - STATE(3219), 1, + STATE(3968), 1, + sym_call, + STATE(4224), 1, sym_selector_expression, - STATE(4287), 1, - sym_expression, - STATE(5058), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109822,18 +114996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109841,7 +115015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109858,51 +115032,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72395] = 26, - ACTIONS(390), 1, + [74192] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1104), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2405), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2406), 1, + sym_call, + STATE(2593), 1, sym_selector_expression, - STATE(4754), 1, + STATE(3794), 1, sym_expression, - STATE(5018), 1, + STATE(5095), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -109911,18 +115085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -109930,7 +115104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -109947,51 +115121,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72510] = 26, - ACTIONS(390), 1, + [74307] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1092), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2314), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2361), 1, sym_selector_expression, - STATE(4753), 1, + STATE(2406), 1, + sym_call, + STATE(3582), 1, sym_expression, - STATE(5018), 1, + STATE(5145), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110000,18 +115174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110019,7 +115193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110036,51 +115210,131 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72625] = 26, - ACTIONS(384), 1, + [74422] = 17, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(390), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [74519] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(3427), 1, + ACTIONS(1345), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + STATE(238), 1, sym_expression, - STATE(3432), 1, + STATE(2656), 1, sym_primary_expression, - STATE(3460), 1, + STATE(2751), 1, sym_call, - STATE(3558), 1, + STATE(2755), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5210), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110089,18 +115343,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110108,7 +115362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110125,51 +115379,122 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72740] = 26, - ACTIONS(416), 1, + [74634] = 8, + ACTIONS(3008), 1, + anon_sym_not, + ACTIONS(3014), 1, + anon_sym_is, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3005), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3011), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 23, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2841), 27, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [74713] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, + ACTIONS(1092), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(2975), 1, - sym_expression, - STATE(3010), 1, + STATE(2314), 1, sym_primary_expression, - STATE(3224), 1, + STATE(2361), 1, sym_selector_expression, - STATE(5095), 1, + STATE(2406), 1, + sym_call, + STATE(3598), 1, + sym_expression, + STATE(5145), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110178,18 +115503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110197,7 +115522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110214,51 +115539,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72855] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [74828] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(1092), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(3874), 1, - sym_call, - STATE(4043), 1, + STATE(2314), 1, sym_primary_expression, - STATE(4048), 1, - sym_expression, - STATE(4224), 1, + STATE(2361), 1, sym_selector_expression, - STATE(4990), 1, + STATE(2406), 1, + sym_call, + STATE(3609), 1, + sym_expression, + STATE(5145), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110267,18 +115592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110286,7 +115611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110303,51 +115628,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72970] = 26, - ACTIONS(390), 1, + [74943] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(662), 1, sym_identifier, - STATE(3435), 1, + ACTIONS(668), 1, + anon_sym_not, + STATE(3840), 1, + sym_expression, + STATE(3901), 1, sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3554), 1, + STATE(3975), 1, sym_selector_expression, - STATE(5113), 1, + STATE(4216), 1, + sym_call, + STATE(5164), 1, sym_dotted_name, - STATE(5170), 1, - sym_expression, - STATE(6057), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110356,18 +115681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110375,7 +115700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110392,51 +115717,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73085] = 26, - ACTIONS(390), 1, + [75058] = 26, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2793), 1, - sym_identifier, - STATE(3452), 1, + STATE(2369), 1, sym_primary_expression, - STATE(3460), 1, + STATE(2374), 1, + sym_expression, + STATE(2436), 1, sym_call, - STATE(3554), 1, + STATE(2458), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5158), 1, sym_dotted_name, - STATE(5170), 1, - sym_expression, - STATE(6057), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110445,18 +115770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110464,7 +115789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110481,51 +115806,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73200] = 26, - ACTIONS(390), 1, + [75173] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(3437), 1, + STATE(2758), 1, sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3554), 1, + STATE(2861), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2877), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5170), 1, + STATE(5249), 1, sym_expression, - STATE(6057), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3679), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110534,18 +115859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110553,7 +115878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110570,51 +115895,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73315] = 26, - ACTIONS(390), 1, + [75288] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1247), 1, anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(1255), 1, sym_identifier, - STATE(3439), 1, - sym_primary_expression, - STATE(3460), 1, + STATE(3593), 1, sym_call, - STATE(3554), 1, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5170), 1, + STATE(4948), 1, sym_expression, - STATE(6057), 1, + STATE(5162), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110623,18 +115948,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110642,7 +115967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110659,51 +115984,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73430] = 26, - ACTIONS(390), 1, + [75403] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(3441), 1, - sym_primary_expression, - STATE(3460), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3554), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5170), 1, + STATE(4967), 1, sym_expression, - STATE(6057), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110712,18 +116037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110731,7 +116056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110748,51 +116073,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73545] = 26, - ACTIONS(390), 1, + [75518] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(3442), 1, + ACTIONS(3019), 1, + anon_sym_not, + STATE(2758), 1, sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3554), 1, + STATE(2861), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2877), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5170), 1, + STATE(5249), 1, sym_expression, - STATE(6057), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3679), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110801,18 +116126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110820,7 +116145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110837,51 +116162,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73660] = 26, - ACTIONS(390), 1, + [75633] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(1092), 1, sym_identifier, - STATE(3445), 1, + ACTIONS(1098), 1, + anon_sym_not, + STATE(2314), 1, sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3554), 1, + STATE(2361), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5170), 1, + STATE(2406), 1, + sym_call, + STATE(3579), 1, sym_expression, - STATE(6057), 1, + STATE(5145), 1, + sym_dotted_name, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110890,18 +116215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110909,7 +116234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -110926,51 +116251,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73775] = 26, - ACTIONS(486), 1, + [75748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2778), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2776), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(492), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [75817] = 26, + ACTIONS(375), 1, + anon_sym_LPAREN, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(3482), 1, sym_call, - STATE(3781), 1, + STATE(3535), 1, + sym_primary_expression, + STATE(3618), 1, sym_selector_expression, - STATE(4777), 1, - sym_expression, - STATE(5123), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -110979,18 +116370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -110998,7 +116389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111015,51 +116406,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73890] = 26, - ACTIONS(534), 1, + [75932] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2699), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(3704), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(3021), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3726), 1, + STATE(3535), 1, + sym_primary_expression, + STATE(3618), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5178), 1, + STATE(5262), 1, sym_expression, - STATE(6118), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3920), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(546), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -111068,18 +116459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3947), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -111087,7 +116478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111104,51 +116495,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74005] = 26, - ACTIONS(534), 1, + [76047] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1379), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(2436), 1, sym_call, - STATE(3727), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, sym_selector_expression, - STATE(4786), 1, + STATE(4481), 1, sym_expression, - STATE(5075), 1, + STATE(5117), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -111157,18 +116548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -111176,7 +116567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111193,135 +116584,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74120] = 21, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2721), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2801), 1, - anon_sym_not, - ACTIONS(2805), 1, - anon_sym_is, - STATE(1938), 1, - aux_sym_comparison_operator_repeat1, - STATE(2116), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2799), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2803), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2365), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [74225] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [76162] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(724), 1, + ACTIONS(1247), 1, + anon_sym_not, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, - STATE(747), 1, - sym_expression, - STATE(1129), 1, + STATE(3739), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, + STATE(4903), 1, + sym_expression, + STATE(5162), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -111330,18 +116637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -111349,7 +116656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111366,187 +116673,153 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74340] = 21, - ACTIONS(2369), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2749), 1, - anon_sym_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_CARET, - ACTIONS(2809), 1, - anon_sym_not, - ACTIONS(2813), 1, - anon_sym_is, - STATE(1928), 1, - aux_sym_comparison_operator_repeat1, - STATE(2059), 1, - sym_argument_list, + [76277] = 5, + ACTIONS(2979), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 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, - ACTIONS(2747), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2807), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 24, + ACTIONS(2252), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74445] = 26, - ACTIONS(161), 1, + [76350] = 6, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2985), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, - ACTIONS(177), 1, - sym_float, - ACTIONS(179), 1, - sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1900), 1, - sym_primary_expression, - STATE(2047), 1, - sym_expression, - STATE(2072), 1, - sym_call, - STATE(2102), 1, - sym_selector_expression, - STATE(5047), 1, - sym_dotted_name, - STATE(5909), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(207), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2256), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(175), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2227), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2233), 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, - [74560] = 4, - STATE(1477), 1, - aux_sym_comparison_operator_repeat1, + [76425] = 5, + ACTIONS(2979), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -111573,14 +116846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(2264), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -111606,140 +116878,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74631] = 26, - ACTIONS(486), 1, + [76498] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3663), 1, + STATE(3482), 1, sym_call, - STATE(4283), 1, + STATE(3533), 1, sym_primary_expression, - STATE(4399), 1, - sym_expression, - STATE(4414), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5041), 1, + STATE(4856), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(4416), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [74746] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(2678), 1, - sym_primary_expression, - STATE(2692), 1, - sym_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, - sym_dotted_name, - STATE(5934), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3055), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -111748,18 +116931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -111767,7 +116950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111784,51 +116967,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74861] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [76613] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(1503), 1, - sym_expression, - STATE(1878), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(4858), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -111837,18 +117020,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -111856,7 +117039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111873,51 +117056,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74976] = 26, - ACTIONS(506), 1, + [76728] = 26, + ACTIONS(369), 1, sym_identifier, - ACTIONS(510), 1, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(518), 1, + ACTIONS(383), 1, anon_sym_not, - ACTIONS(520), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, + STATE(3482), 1, sym_call, - STATE(2552), 1, + STATE(3487), 1, sym_expression, - STATE(2669), 1, + STATE(3544), 1, sym_primary_expression, - STATE(2681), 1, + STATE(3613), 1, sym_selector_expression, - STATE(5056), 1, + STATE(5239), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -111926,18 +117109,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -111945,7 +117128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -111962,51 +117145,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75091] = 26, - ACTIONS(161), 1, + [76843] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, + ACTIONS(1247), 1, anon_sym_not, - STATE(1464), 1, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, - STATE(2035), 1, + STATE(3739), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(3301), 1, + STATE(4839), 1, sym_expression, - STATE(5083), 1, + STATE(5162), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112015,18 +117198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112034,7 +117217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112051,51 +117234,120 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75206] = 26, - ACTIONS(412), 1, + [76958] = 6, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2985), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_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(416), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [77033] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2299), 1, - sym_expression, - STATE(2314), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2939), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3507), 1, sym_primary_expression, - STATE(2338), 1, + STATE(3618), 1, sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112104,18 +117356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112123,7 +117375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112140,51 +117392,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75321] = 26, - ACTIONS(486), 1, + [77148] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(3729), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2939), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3509), 1, sym_primary_expression, - STATE(3823), 1, - sym_expression, - STATE(4027), 1, + STATE(3618), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112193,18 +117445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112212,7 +117464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112229,51 +117481,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75436] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [77263] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2551), 1, - sym_expression, - STATE(2672), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2939), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3521), 1, sym_primary_expression, - STATE(2680), 1, + STATE(3618), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112282,18 +117534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112301,7 +117553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112318,51 +117570,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75551] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [77378] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2773), 1, - sym_expression, - STATE(2793), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2939), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(3040), 1, + STATE(3522), 1, + sym_primary_expression, + STATE(3618), 1, sym_selector_expression, - STATE(5079), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5965), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112371,18 +117623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112390,7 +117642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112407,51 +117659,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75666] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [77493] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, - sym_primary_expression, - STATE(2776), 1, - sym_expression, - STATE(2993), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2939), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(3042), 1, + STATE(3527), 1, + sym_primary_expression, + STATE(3618), 1, sym_selector_expression, - STATE(5059), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112460,18 +117712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112479,7 +117731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112496,51 +117748,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75781] = 26, - ACTIONS(390), 1, + [77608] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3466), 1, + STATE(3479), 1, sym_primary_expression, - STATE(3554), 1, + STATE(3482), 1, + sym_call, + STATE(3618), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5170), 1, + STATE(5262), 1, sym_expression, - STATE(6057), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112549,18 +117801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112568,7 +117820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112585,51 +117837,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75896] = 26, - ACTIONS(390), 1, + [77723] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2793), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(3460), 1, + STATE(3482), 1, sym_call, - STATE(3467), 1, + STATE(3530), 1, sym_primary_expression, - STATE(3554), 1, + STATE(3618), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5195), 1, + STATE(5262), 1, sym_expression, - STATE(6057), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3679), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(402), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112638,18 +117890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3599), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112657,7 +117909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112674,51 +117926,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76011] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [77838] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, - sym_primary_expression, - STATE(1506), 1, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_not, + STATE(257), 1, sym_expression, - STATE(1878), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(2850), 1, sym_call, - STATE(5096), 1, + STATE(2852), 1, + sym_primary_expression, + STATE(3042), 1, + sym_selector_expression, + STATE(5216), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(3046), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112727,18 +117979,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112746,7 +117998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112763,51 +118015,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76126] = 26, - ACTIONS(87), 1, + [77953] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(93), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(101), 1, + ACTIONS(436), 1, anon_sym_not, - ACTIONS(103), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(726), 1, - sym_primary_expression, - STATE(750), 1, + STATE(2332), 1, sym_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(2369), 1, + sym_primary_expression, + STATE(2436), 1, sym_call, - STATE(5099), 1, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112816,18 +118068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112835,7 +118087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -112852,16 +118104,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76241] = 4, - STATE(1482), 1, - aux_sym_comparison_operator_repeat1, + [78068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + ACTIONS(2774), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -112886,14 +118135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(2772), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -112919,51 +118170,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76312] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [78137] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2891), 1, sym_primary_expression, - STATE(1507), 1, - sym_expression, - STATE(1878), 1, + STATE(3039), 1, sym_selector_expression, - STATE(2072), 1, + STATE(3115), 1, sym_call, - STATE(5096), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -112972,18 +118223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -112991,7 +118242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113008,51 +118259,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76427] = 26, - ACTIONS(161), 1, + [78252] = 26, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, - anon_sym_not, - STATE(1464), 1, + STATE(2335), 1, + sym_expression, + STATE(2369), 1, sym_primary_expression, - STATE(2035), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(2436), 1, sym_call, - STATE(3303), 1, - sym_expression, - STATE(5083), 1, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113061,18 +118312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113080,7 +118331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113097,51 +118348,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76542] = 26, - ACTIONS(129), 1, + [78367] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(135), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(143), 1, + ACTIONS(436), 1, anon_sym_not, - ACTIONS(145), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(1879), 1, + STATE(2336), 1, + sym_expression, + STATE(2369), 1, sym_primary_expression, - STATE(2027), 1, + STATE(2436), 1, sym_call, - STATE(2058), 1, - sym_expression, - STATE(2204), 1, + STATE(2458), 1, sym_selector_expression, - STATE(5104), 1, + STATE(5158), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113150,18 +118401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113169,7 +118420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113186,51 +118437,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76657] = 26, - ACTIONS(161), 1, + [78482] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, + ACTIONS(1247), 1, anon_sym_not, - STATE(1464), 1, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, - STATE(2035), 1, + STATE(3739), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(3305), 1, + STATE(4843), 1, sym_expression, - STATE(5083), 1, + STATE(5162), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113239,18 +118490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113258,7 +118509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113275,51 +118526,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76772] = 26, - ACTIONS(554), 1, + [78597] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(564), 1, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(568), 1, + ACTIONS(434), 1, + anon_sym_LBRACE, + ACTIONS(436), 1, anon_sym_not, - ACTIONS(576), 1, + ACTIONS(438), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_float, + ACTIONS(446), 1, sym_string_start, - ACTIONS(734), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(2617), 1, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + STATE(2340), 1, + sym_expression, + STATE(2369), 1, + sym_primary_expression, + STATE(2436), 1, + sym_call, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, + sym_dotted_name, + STATE(6027), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2707), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2608), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [78712] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(2961), 1, sym_float, - STATE(3807), 1, - sym_call, - STATE(3815), 1, - sym_expression, - STATE(3841), 1, + STATE(2756), 1, sym_primary_expression, - STATE(4000), 1, + STATE(2877), 1, + sym_call, + STATE(2904), 1, sym_selector_expression, - STATE(5108), 1, + STATE(4283), 1, + sym_expression, + STATE(5208), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113328,18 +118668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113347,7 +118687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113364,51 +118704,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76887] = 26, - ACTIONS(257), 1, + [78827] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(842), 1, + ACTIONS(3017), 1, sym_identifier, - ACTIONS(848), 1, - anon_sym_not, - STATE(2399), 1, + STATE(2766), 1, sym_primary_expression, - STATE(2407), 1, - sym_call, - STATE(2505), 1, + STATE(2861), 1, sym_selector_expression, - STATE(3725), 1, - sym_expression, - STATE(5000), 1, + STATE(2877), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5249), 1, + sym_expression, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113417,18 +118757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113436,7 +118776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113453,51 +118793,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77002] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [78942] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(3608), 1, - sym_primary_expression, - STATE(3663), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(3832), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(4202), 1, - sym_expression, - STATE(5122), 1, + STATE(4978), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5184), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113506,18 +118846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113525,7 +118865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113542,51 +118882,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77117] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + [79057] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(3432), 1, - sym_primary_expression, - STATE(3444), 1, - sym_expression, - STATE(3460), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3558), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5018), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113595,18 +118935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113614,7 +118954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113631,51 +118971,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77232] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [79172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(177), 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(179), 1, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79241] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2951), 1, + anon_sym_LBRACK, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(2959), 1, + anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + ACTIONS(3017), 1, + sym_identifier, + STATE(2768), 1, sym_primary_expression, - STATE(1509), 1, - sym_expression, - STATE(1878), 1, + STATE(2861), 1, sym_selector_expression, - STATE(2072), 1, + STATE(2877), 1, sym_call, - STATE(5096), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5249), 1, + sym_expression, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113684,18 +119090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113703,7 +119109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113720,51 +119126,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77347] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(534), 1, + [79356] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(544), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(3654), 1, - sym_expression, - STATE(3717), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3023), 1, + sym_identifier, + STATE(684), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3835), 1, + STATE(859), 1, sym_selector_expression, - STATE(5121), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113773,18 +119179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113792,7 +119198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113809,20 +119215,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77462] = 7, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2815), 1, - anon_sym_and, - ACTIONS(2817), 1, - anon_sym_PLUS, + [79471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2481), 25, + ACTIONS(201), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -113832,6 +119230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -113848,12 +119247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2479), 30, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -113868,6 +119269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -113879,51 +119281,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77539] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [79540] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_not, + STATE(2405), 1, sym_primary_expression, - STATE(3909), 1, - sym_expression, - STATE(4082), 1, + STATE(2406), 1, sym_call, - STATE(4242), 1, + STATE(2593), 1, sym_selector_expression, - STATE(5026), 1, + STATE(3785), 1, + sym_expression, + STATE(5095), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -113932,18 +119334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -113951,7 +119353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -113968,51 +119370,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77654] = 26, - ACTIONS(534), 1, + [79655] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2640), 1, sym_primary_expression, - STATE(3719), 1, + STATE(2751), 1, sym_call, - STATE(3727), 1, + STATE(2842), 1, sym_selector_expression, - STATE(5075), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5120), 1, + STATE(5280), 1, sym_expression, - STATE(6118), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114021,18 +119423,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114040,7 +119442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114057,51 +119459,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77769] = 26, - ACTIONS(257), 1, + [79770] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2939), 1, + sym_identifier, + STATE(3480), 1, sym_primary_expression, - STATE(2407), 1, + STATE(3482), 1, sym_call, - STATE(2408), 1, - sym_expression, - STATE(2660), 1, + STATE(3618), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114110,18 +119512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114129,7 +119531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114146,51 +119548,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77884] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [79885] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(2939), 1, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4065), 1, + STATE(3481), 1, sym_primary_expression, - STATE(4230), 1, + STATE(3482), 1, + sym_call, + STATE(3618), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5262), 1, sym_expression, - STATE(6288), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114199,18 +119601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114218,7 +119620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114235,51 +119637,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77999] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [80000] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1084), 1, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4064), 1, + ACTIONS(1090), 1, + anon_sym_not, + STATE(214), 1, + sym_expression, + STATE(2373), 1, sym_primary_expression, - STATE(4230), 1, + STATE(2436), 1, + sym_call, + STATE(2594), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5215), 1, sym_dotted_name, - STATE(5187), 1, - sym_expression, - STATE(6288), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114288,18 +119690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114307,7 +119709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114324,51 +119726,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78114] = 26, - ACTIONS(161), 1, + [80115] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(1464), 1, - sym_primary_expression, - STATE(2035), 1, - sym_selector_expression, - STATE(2072), 1, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(3308), 1, - sym_expression, - STATE(5083), 1, + STATE(2393), 1, + sym_selector_expression, + STATE(2447), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114377,18 +119779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114396,7 +119798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114413,51 +119815,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78229] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [80230] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(2945), 1, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4060), 1, + STATE(2351), 1, sym_primary_expression, - STATE(4230), 1, + STATE(2428), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5270), 1, sym_expression, - STATE(6288), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114466,18 +119868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114485,7 +119887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114502,51 +119904,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78344] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [80345] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4038), 1, + STATE(870), 1, sym_primary_expression, - STATE(4230), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5256), 1, sym_expression, - STATE(6288), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114555,18 +119957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114574,7 +119976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114591,51 +119993,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78459] = 26, - ACTIONS(67), 1, + [80460] = 26, + ACTIONS(257), 1, + sym_identifier, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(271), 1, + anon_sym_not, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(762), 1, - anon_sym_not, - STATE(1365), 1, + STATE(2365), 1, sym_primary_expression, - STATE(1533), 1, + STATE(2391), 1, + sym_expression, + STATE(2406), 1, sym_call, - STATE(2065), 1, + STATE(2456), 1, sym_selector_expression, - STATE(3312), 1, - sym_expression, - STATE(5089), 1, + STATE(5114), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114644,18 +120046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114663,7 +120065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114680,51 +120082,119 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78574] = 26, - ACTIONS(390), 1, + [80575] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + 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(197), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [80648] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(3027), 1, + sym_identifier, + STATE(867), 1, sym_primary_expression, - STATE(3508), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, sym_selector_expression, - STATE(4757), 1, - sym_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114733,18 +120203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114752,7 +120222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114769,51 +120239,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78689] = 26, - ACTIONS(67), 1, + [80763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3035), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3033), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(73), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [80832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(77), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(83), 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(85), 1, + ACTIONS(3037), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [80901] = 26, + ACTIONS(93), 1, + anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(756), 1, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(762), 1, + ACTIONS(3041), 1, anon_sym_not, - STATE(1365), 1, + STATE(856), 1, sym_primary_expression, - STATE(1533), 1, + STATE(879), 1, sym_call, - STATE(2065), 1, + STATE(978), 1, sym_selector_expression, - STATE(3319), 1, - sym_expression, - STATE(5089), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114822,18 +120424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -114841,7 +120443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -114858,30 +120460,21 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78804] = 10, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2637), 1, - anon_sym_STAR_STAR, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [81016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(3045), 27, + sym__newline, + 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, @@ -114897,14 +120490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2518), 32, + ACTIONS(3043), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -114931,51 +120526,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78887] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [81085] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(520), 1, + anon_sym_LBRACK, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2733), 1, - sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4026), 1, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(576), 1, + anon_sym_QMARK_DOT, + STATE(102), 1, + sym_expression, + STATE(2719), 1, sym_primary_expression, - STATE(4230), 1, + STATE(2736), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(5187), 1, - sym_expression, - STATE(6288), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -114984,18 +120579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115003,7 +120598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115020,51 +120615,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79002] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [81200] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(2945), 1, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(4025), 1, + ACTIONS(3047), 1, + anon_sym_not, + STATE(2351), 1, sym_primary_expression, - STATE(4230), 1, + STATE(2428), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5270), 1, sym_expression, - STATE(6288), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115073,18 +120668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115092,7 +120687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115109,7 +120704,9 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79117] = 26, + [81315] = 26, + ACTIONS(59), 1, + sym_identifier, ACTIONS(67), 1, anon_sym_LPAREN, ACTIONS(69), 1, @@ -115118,42 +120715,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_not, ACTIONS(77), 1, anon_sym_DQUOTE, ACTIONS(83), 1, sym_float, ACTIONS(85), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(762), 1, - anon_sym_not, - STATE(1365), 1, + STATE(604), 1, sym_primary_expression, - STATE(1533), 1, + STATE(804), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(2065), 1, + STATE(946), 1, sym_selector_expression, - STATE(3325), 1, - sym_expression, - STATE(5089), 1, + STATE(5236), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115162,7 +120757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -115173,7 +120768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115181,7 +120776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115198,51 +120793,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79232] = 26, - ACTIONS(67), 1, + [81430] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, - sym_primary_expression, - STATE(1511), 1, - sym_expression, - STATE(1533), 1, + ACTIONS(1247), 1, + anon_sym_not, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, sym_call, - STATE(2098), 1, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, sym_selector_expression, - STATE(5107), 1, + STATE(4844), 1, + sym_expression, + STATE(5162), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115251,18 +120846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115270,7 +120865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115287,51 +120882,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79347] = 26, - ACTIONS(454), 1, + [81545] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1247), 1, anon_sym_not, - STATE(220), 1, - sym_expression, - STATE(2538), 1, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, + sym_call, + STATE(3616), 1, sym_primary_expression, - STATE(2706), 1, + STATE(3739), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5068), 1, + STATE(4846), 1, + sym_expression, + STATE(5162), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115340,18 +120935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115359,7 +120954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115376,121 +120971,229 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79462] = 7, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2821), 1, - anon_sym_and, - ACTIONS(2823), 1, - anon_sym_PLUS, + [81660] = 26, + ACTIONS(143), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, + sym_float, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(842), 1, + sym_primary_expression, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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(2481), 26, - sym__newline, - 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, + [81775] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, + ACTIONS(145), 1, anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(153), 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(159), 1, sym_float, - ACTIONS(2479), 29, - anon_sym_import, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3049), 1, + sym_identifier, + ACTIONS(3051), 1, + anon_sym_not, + STATE(842), 1, + sym_primary_expression, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [79539] = 26, - ACTIONS(67), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [81890] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3027), 1, + sym_identifier, + STATE(856), 1, sym_primary_expression, - STATE(1514), 1, - sym_expression, - STATE(1533), 1, + STATE(879), 1, sym_call, - STATE(2098), 1, + STATE(978), 1, sym_selector_expression, - STATE(5107), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115499,18 +121202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115518,7 +121221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115535,51 +121238,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79654] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [82005] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - STATE(3874), 1, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, sym_call, - STATE(3958), 1, - sym_expression, - STATE(4043), 1, + STATE(2041), 1, sym_primary_expression, - STATE(4224), 1, - sym_selector_expression, - STATE(4990), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115588,18 +121291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115607,7 +121310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115624,51 +121327,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79769] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [82120] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1084), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(1090), 1, anon_sym_not, - STATE(3874), 1, - sym_call, - STATE(4015), 1, - sym_expression, - STATE(4043), 1, + STATE(2373), 1, sym_primary_expression, - STATE(4224), 1, + STATE(2436), 1, + sym_call, + STATE(2594), 1, sym_selector_expression, - STATE(4990), 1, + STATE(3607), 1, + sym_expression, + STATE(5215), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115677,18 +121380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115696,7 +121399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115713,51 +121416,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79884] = 26, - ACTIONS(390), 1, + [82235] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(2945), 1, + sym_identifier, + STATE(2386), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2428), 1, sym_selector_expression, - STATE(4965), 1, - sym_expression, - STATE(5018), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115766,18 +121469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115785,7 +121488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115802,51 +121505,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79999] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [82350] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3023), 1, + sym_identifier, + STATE(548), 1, sym_primary_expression, - STATE(3874), 1, - sym_call, - STATE(4139), 1, + STATE(859), 1, sym_selector_expression, - STATE(4980), 1, - sym_expression, - STATE(5116), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115855,18 +121558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115874,7 +121577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115891,51 +121594,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80114] = 26, - ACTIONS(714), 1, + [82465] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2615), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(4082), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(4109), 1, + STATE(3533), 1, sym_primary_expression, - STATE(4140), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, + STATE(4836), 1, sym_expression, - STATE(6132), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(4296), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(726), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -115944,18 +121647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -115963,7 +121666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -115980,51 +121683,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80229] = 26, - ACTIONS(714), 1, + [82580] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1247), 1, anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, sym_call, - STATE(4214), 1, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, sym_selector_expression, - STATE(4970), 1, - sym_expression, - STATE(5012), 1, + STATE(5162), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5238), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116033,18 +121736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116052,7 +121755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116069,51 +121772,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80344] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + [82695] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, + ACTIONS(820), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(1770), 1, sym_call, - STATE(3468), 1, - sym_expression, - STATE(3558), 1, + STATE(2024), 1, + sym_primary_expression, + STATE(2254), 1, sym_selector_expression, - STATE(5136), 1, + STATE(3360), 1, + sym_expression, + STATE(5087), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116122,18 +121825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116141,7 +121844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116158,51 +121861,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80459] = 26, - ACTIONS(93), 1, + [82810] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_not, - STATE(119), 1, - sym_expression, - STATE(780), 1, + STATE(2350), 1, + sym_call, + STATE(2453), 1, sym_primary_expression, - STATE(1655), 1, + STATE(2557), 1, + sym_expression, + STATE(2704), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5130), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116211,18 +121914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116230,7 +121933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116247,51 +121950,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80574] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [82925] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2945), 1, + sym_identifier, + STATE(2387), 1, sym_primary_expression, - STATE(3874), 1, - sym_call, - STATE(4139), 1, + STATE(2428), 1, sym_selector_expression, - STATE(4977), 1, - sym_expression, - STATE(5116), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116300,18 +122003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116319,7 +122022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116336,51 +122039,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80689] = 26, - ACTIONS(390), 1, + [83040] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, + STATE(2350), 1, sym_call, - STATE(3464), 1, + STATE(2453), 1, sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4748), 1, + STATE(2499), 1, sym_expression, - STATE(5018), 1, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116389,18 +122092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116408,7 +122111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116425,51 +122128,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80804] = 26, - ACTIONS(67), 1, + [83155] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(762), 1, - anon_sym_not, - STATE(1365), 1, - sym_primary_expression, - STATE(1533), 1, + STATE(2350), 1, sym_call, - STATE(2065), 1, - sym_selector_expression, - STATE(3328), 1, + STATE(2453), 1, + sym_primary_expression, + STATE(2474), 1, sym_expression, - STATE(5089), 1, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116478,18 +122181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116497,7 +122200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116514,34 +122217,22 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80919] = 9, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(2773), 1, - anon_sym_and, - ACTIONS(2775), 1, - anon_sym_PLUS, + [83270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2469), 24, + ACTIONS(3055), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -116558,10 +122249,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2467), 27, + ACTIONS(3053), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -116576,6 +122271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -116586,35 +122283,90 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81000] = 9, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(2779), 1, - anon_sym_and, - ACTIONS(2781), 1, - anon_sym_PLUS, + [83339] = 4, + ACTIONS(3057), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(201), 27, + sym__newline, + 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(197), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, anon_sym_or, - ACTIONS(2469), 25, - sym__newline, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [83410] = 4, + STATE(1387), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -116631,10 +122383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2467), 26, + ACTIONS(197), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -116648,6 +122405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -116658,51 +122417,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81081] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [83481] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, ACTIONS(199), 1, - anon_sym_QMARK_DOT, - STATE(724), 1, - sym_primary_expression, - STATE(745), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_not, + STATE(3836), 1, sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(3936), 1, + sym_primary_expression, + STATE(3968), 1, sym_call, - STATE(5044), 1, + STATE(4250), 1, + sym_selector_expression, + STATE(5139), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116711,18 +122470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116730,7 +122489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116747,51 +122506,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81196] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [83596] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(21), 1, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(2951), 1, + anon_sym_LBRACK, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + STATE(2756), 1, sym_primary_expression, - STATE(3874), 1, + STATE(2877), 1, sym_call, - STATE(4139), 1, + STATE(2904), 1, sym_selector_expression, - STATE(5052), 1, + STATE(4281), 1, sym_expression, - STATE(5116), 1, + STATE(5208), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116800,18 +122559,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116819,7 +122578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116836,51 +122595,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81311] = 26, - ACTIONS(57), 1, + [83711] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(67), 1, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - STATE(724), 1, + STATE(3877), 1, sym_primary_expression, - STATE(743), 1, - sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(3948), 1, sym_call, - STATE(5044), 1, + STATE(4181), 1, + sym_selector_expression, + STATE(4947), 1, + sym_expression, + STATE(5125), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116889,18 +122648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116908,7 +122667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -116925,51 +122684,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81426] = 26, - ACTIONS(67), 1, + [83826] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(2373), 1, sym_primary_expression, - STATE(1519), 1, - sym_expression, - STATE(1533), 1, + STATE(2436), 1, sym_call, - STATE(2098), 1, + STATE(2594), 1, sym_selector_expression, - STATE(5107), 1, + STATE(3597), 1, + sym_expression, + STATE(5215), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -116978,18 +122737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -116997,7 +122756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117014,51 +122773,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81541] = 26, - ACTIONS(57), 1, + [83941] = 26, + ACTIONS(482), 1, sym_identifier, - ACTIONS(67), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(494), 1, anon_sym_not, - ACTIONS(77), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - STATE(724), 1, - sym_primary_expression, - STATE(742), 1, + STATE(2350), 1, + sym_call, + STATE(2423), 1, sym_expression, - STATE(1129), 1, + STATE(2453), 1, + sym_primary_expression, + STATE(2704), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117067,18 +122826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117086,7 +122845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117103,51 +122862,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81656] = 26, - ACTIONS(135), 1, + [84056] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(2373), 1, sym_primary_expression, - STATE(1186), 1, - sym_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(2436), 1, sym_call, - STATE(5065), 1, + STATE(2594), 1, + sym_selector_expression, + STATE(3594), 1, + sym_expression, + STATE(5215), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117156,18 +122915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117175,7 +122934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117192,121 +122951,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81771] = 7, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(2779), 1, - anon_sym_and, - ACTIONS(2781), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, - sym__newline, - 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(2449), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - 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, - [81848] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [84171] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(724), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(2373), 1, sym_primary_expression, - STATE(748), 1, - sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(2436), 1, sym_call, - STATE(5044), 1, + STATE(2594), 1, + sym_selector_expression, + STATE(3589), 1, + sym_expression, + STATE(5215), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117315,18 +123004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117334,7 +123023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117351,51 +123040,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81963] = 26, - ACTIONS(57), 1, + [84286] = 26, + ACTIONS(369), 1, sym_identifier, - ACTIONS(67), 1, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(383), 1, anon_sym_not, - ACTIONS(77), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(724), 1, - sym_primary_expression, - STATE(740), 1, + STATE(3482), 1, + sym_call, + STATE(3489), 1, sym_expression, - STATE(1129), 1, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5044), 1, + STATE(5239), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117404,18 +123093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117423,7 +123112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117440,51 +123129,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [82078] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [84401] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_not, + STATE(2405), 1, sym_primary_expression, - STATE(3874), 1, + STATE(2406), 1, sym_call, - STATE(4139), 1, + STATE(2593), 1, sym_selector_expression, - STATE(5116), 1, - sym_dotted_name, - STATE(5142), 1, + STATE(3773), 1, sym_expression, - STATE(6288), 1, + STATE(5095), 1, + sym_dotted_name, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117493,18 +123182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117512,7 +123201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117529,195 +123218,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [82193] = 9, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2815), 1, - anon_sym_and, - ACTIONS(2817), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [84516] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(472), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(478), 1, sym_float, - ACTIONS(2469), 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(2449), 24, - anon_sym_import, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - anon_sym_or, - sym_integer, + ACTIONS(2937), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82274] = 9, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2821), 1, - anon_sym_and, - ACTIONS(2823), 1, - anon_sym_PLUS, + STATE(3458), 1, + sym_selector_expression, + STATE(3831), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 13, - sym__newline, - 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, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2469), 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(2449), 23, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_or, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82355] = 26, - ACTIONS(161), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [84631] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, - sym_primary_expression, - STATE(2072), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(2088), 1, - sym_expression, - STATE(2102), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5047), 1, + STATE(4857), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117726,18 +123360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117745,7 +123379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117762,51 +123396,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [82470] = 26, - ACTIONS(390), 1, + [84746] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(4742), 1, - sym_expression, - STATE(5018), 1, + STATE(3830), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117815,18 +123449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117834,7 +123468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -117851,123 +123485,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [82585] = 9, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(2815), 1, - anon_sym_and, - ACTIONS(2817), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2469), 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(2467), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_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, - [82666] = 26, - ACTIONS(161), 1, + [84861] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3828), 1, sym_primary_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(2091), 1, - sym_expression, - STATE(2102), 1, - sym_selector_expression, - STATE(5047), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -117976,18 +123538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -117995,7 +123557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118012,53 +123574,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [82781] = 27, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [84976] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(2825), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, sym_identifier, - STATE(3862), 1, + STATE(840), 1, sym_primary_expression, - STATE(3874), 1, + STATE(1770), 1, sym_call, - STATE(4250), 1, + STATE(1955), 1, sym_selector_expression, - STATE(4415), 1, - sym_schema_instantiation, - STATE(4973), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5149), 1, + STATE(5279), 1, sym_expression, - STATE(6288), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118067,18 +123627,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118086,8 +123646,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 15, + STATE(2235), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -118102,51 +123663,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [82898] = 26, - ACTIONS(161), 1, + [85091] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3825), 1, sym_primary_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(2092), 1, - sym_expression, - STATE(2102), 1, - sym_selector_expression, - STATE(5047), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118155,18 +123716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118174,7 +123735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118191,123 +123752,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [83013] = 9, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2821), 1, - anon_sym_and, - ACTIONS(2823), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2469), 25, - sym__newline, - 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(2467), 26, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - 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, - [83094] = 26, - ACTIONS(161), 1, + [85206] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2929), 1, + sym_identifier, + STATE(3720), 1, sym_primary_expression, - STATE(2049), 1, - sym_expression, - STATE(2072), 1, + STATE(3778), 1, sym_call, - STATE(2102), 1, + STATE(3887), 1, sym_selector_expression, - STATE(5047), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5268), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118316,18 +123805,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118335,7 +123824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118352,51 +123841,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [83209] = 26, - ACTIONS(161), 1, + [85321] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3824), 1, sym_primary_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(2094), 1, - sym_expression, - STATE(2102), 1, - sym_selector_expression, - STATE(5047), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118405,18 +123894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118424,7 +123913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118441,258 +123930,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [83324] = 7, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2815), 1, - anon_sym_and, - ACTIONS(2817), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [85436] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(472), 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(478), 1, sym_float, - ACTIONS(2449), 30, - anon_sym_import, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(2937), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83401] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + STATE(3458), 1, + sym_selector_expression, + STATE(3818), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - 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(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [83472] = 7, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2821), 1, - anon_sym_and, - ACTIONS(2823), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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(2447), 26, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2449), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - 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, - [83549] = 26, - ACTIONS(257), 1, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [85551] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(854), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2313), 1, + ACTIONS(2929), 1, + sym_identifier, + STATE(3767), 1, sym_primary_expression, - STATE(2328), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(3778), 1, sym_call, - STATE(3718), 1, - sym_expression, - STATE(5009), 1, + STATE(3887), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5268), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118701,18 +124072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118720,7 +124091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118737,51 +124108,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [83664] = 26, - ACTIONS(486), 1, + [85666] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(748), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3663), 1, - sym_call, - STATE(4283), 1, + ACTIONS(2929), 1, + sym_identifier, + STATE(3768), 1, sym_primary_expression, - STATE(4342), 1, - sym_expression, - STATE(4414), 1, + STATE(3778), 1, + sym_call, + STATE(3887), 1, sym_selector_expression, - STATE(5041), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5268), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118790,18 +124161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(4227), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118809,7 +124180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118826,51 +124197,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [83779] = 26, - ACTIONS(486), 1, + [85781] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(748), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3663), 1, - sym_call, - STATE(4283), 1, - sym_primary_expression, - STATE(4345), 1, - sym_expression, - STATE(4414), 1, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(5041), 1, + STATE(3802), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118879,18 +124250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118898,7 +124269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -118915,51 +124286,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [83894] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [85896] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(279), 1, sym_float, - STATE(2678), 1, - sym_primary_expression, - STATE(2688), 1, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(1092), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + STATE(208), 1, sym_expression, - STATE(2837), 1, + STATE(2314), 1, + sym_primary_expression, + STATE(2361), 1, sym_selector_expression, - STATE(2870), 1, + STATE(2406), 1, sym_call, - STATE(5051), 1, + STATE(5145), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -118968,18 +124339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -118987,7 +124358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119004,51 +124375,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84009] = 26, - ACTIONS(486), 1, + [86011] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, + ACTIONS(662), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(668), 1, anon_sym_not, - STATE(3663), 1, - sym_call, - STATE(4283), 1, + STATE(3901), 1, sym_primary_expression, - STATE(4348), 1, + STATE(3960), 1, sym_expression, - STATE(4414), 1, + STATE(3975), 1, sym_selector_expression, - STATE(5041), 1, + STATE(4216), 1, + sym_call, + STATE(5164), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119057,18 +124428,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119076,7 +124447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119093,51 +124464,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84124] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [86126] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(558), 1, sym_float, - STATE(2678), 1, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(2686), 1, - sym_expression, - STATE(2837), 1, + STATE(3900), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, + STATE(5199), 1, + sym_expression, + STATE(5220), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119146,18 +124517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119165,7 +124536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119182,51 +124553,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84239] = 26, - ACTIONS(257), 1, + [86241] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(842), 1, - sym_identifier, - ACTIONS(848), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2399), 1, - sym_primary_expression, - STATE(2407), 1, + ACTIONS(3027), 1, + sym_identifier, + STATE(879), 1, sym_call, - STATE(2505), 1, + STATE(978), 1, sym_selector_expression, - STATE(3817), 1, - sym_expression, - STATE(5000), 1, + STATE(1055), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119235,18 +124606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119254,7 +124625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119271,51 +124642,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84354] = 26, - ACTIONS(9), 1, + [86356] = 26, + ACTIONS(482), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(494), 1, anon_sym_not, - ACTIONS(49), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_primary_expression, - STATE(3874), 1, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + STATE(2350), 1, sym_call, - STATE(4139), 1, - sym_selector_expression, - STATE(4918), 1, + STATE(2453), 1, + sym_primary_expression, + STATE(2559), 1, sym_expression, - STATE(5116), 1, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119324,18 +124695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119343,7 +124714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119360,51 +124731,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84469] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, + [86471] = 26, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, + ACTIONS(638), 1, sym_string_start, - ACTIONS(610), 1, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(2601), 1, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(2961), 1, sym_float, - STATE(2678), 1, + STATE(2756), 1, sym_primary_expression, - STATE(2685), 1, - sym_expression, - STATE(2837), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2877), 1, sym_call, - STATE(5051), 1, + STATE(2904), 1, + sym_selector_expression, + STATE(4280), 1, + sym_expression, + STATE(5208), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119413,18 +124784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119432,7 +124803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119449,51 +124820,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84584] = 26, - ACTIONS(257), 1, + [86586] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_primary_expression, - STATE(2358), 1, - sym_expression, - STATE(2407), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(2660), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5040), 1, + STATE(2589), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119502,18 +124873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119521,7 +124892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119538,51 +124909,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84699] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [86701] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(391), 1, sym_float, - STATE(2678), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2695), 1, - sym_expression, - STATE(2837), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, + STATE(4860), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119591,18 +124962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119610,7 +124981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119627,51 +124998,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84814] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [86816] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(109), 1, sym_float, - STATE(2678), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3027), 1, + sym_identifier, + STATE(879), 1, + sym_call, + STATE(956), 1, sym_primary_expression, - STATE(2683), 1, - sym_expression, - STATE(2837), 1, + STATE(978), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119680,18 +125051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119699,7 +125070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119716,7 +125087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [84929] = 26, + [86931] = 26, ACTIONS(486), 1, anon_sym_LPAREN, ACTIONS(488), 1, @@ -119731,36 +125102,125 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(504), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, sym_identifier, - ACTIONS(748), 1, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2588), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [87046] = 26, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, anon_sym_not, - STATE(3663), 1, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + STATE(1411), 1, sym_call, - STATE(4283), 1, + STATE(1730), 1, sym_primary_expression, - STATE(4355), 1, + STATE(2048), 1, sym_expression, - STATE(4414), 1, + STATE(2191), 1, sym_selector_expression, - STATE(5041), 1, + STATE(5137), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119769,18 +125229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119788,7 +125248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119805,7 +125265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85044] = 26, + [87161] = 26, ACTIONS(486), 1, anon_sym_LPAREN, ACTIONS(488), 1, @@ -119820,33 +125280,33 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(504), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(3025), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + STATE(2350), 1, sym_call, - STATE(3720), 1, + STATE(2393), 1, + sym_selector_expression, + STATE(2586), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5203), 1, + STATE(5258), 1, sym_expression, - STATE(6002), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, ACTIONS(498), 3, @@ -119858,7 +125318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -119869,7 +125329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119877,7 +125337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119894,51 +125354,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85159] = 26, - ACTIONS(506), 1, + [87276] = 26, + ACTIONS(616), 1, sym_identifier, - ACTIONS(510), 1, - anon_sym_LPAREN, - ACTIONS(512), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(516), 1, - anon_sym_LBRACE, - ACTIONS(518), 1, + ACTIONS(630), 1, anon_sym_not, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, + ACTIONS(638), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2951), 1, + anon_sym_LBRACK, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, - sym_call, - STATE(2608), 1, + ACTIONS(2959), 1, + anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + STATE(2795), 1, sym_expression, - STATE(2669), 1, + STATE(2838), 1, sym_primary_expression, - STATE(2681), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, sym_selector_expression, - STATE(5056), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -119947,18 +125407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -119966,7 +125426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -119983,7 +125443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85274] = 26, + [87391] = 26, ACTIONS(486), 1, anon_sym_LPAREN, ACTIONS(488), 1, @@ -119998,36 +125458,36 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(504), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, - sym_identifier, - ACTIONS(748), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3663), 1, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(4257), 1, - sym_expression, - STATE(4283), 1, - sym_primary_expression, - STATE(4414), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5041), 1, + STATE(2585), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120036,7 +125496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -120047,7 +125507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120055,7 +125515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120072,51 +125532,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85389] = 26, - ACTIONS(506), 1, - sym_identifier, - ACTIONS(510), 1, + [87506] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(520), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(2610), 1, - sym_expression, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5056), 1, + STATE(2584), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120125,18 +125585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120144,7 +125604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120161,51 +125621,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85504] = 26, - ACTIONS(67), 1, + [87621] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, - sym_primary_expression, - STATE(1533), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(1540), 1, - sym_expression, - STATE(2098), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5107), 1, + STATE(2583), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120214,18 +125674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120233,7 +125693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120250,7 +125710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85619] = 26, + [87736] = 26, ACTIONS(486), 1, anon_sym_LPAREN, ACTIONS(488), 1, @@ -120265,33 +125725,33 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(504), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(3025), 1, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(2350), 1, sym_call, - STATE(3781), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5021), 1, - sym_expression, - STATE(5123), 1, + STATE(2581), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, ACTIONS(498), 3, @@ -120303,7 +125763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -120314,7 +125774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120322,7 +125782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120339,51 +125799,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85734] = 26, - ACTIONS(506), 1, + [87851] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(510), 1, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(518), 1, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(520), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, - sym_call, - STATE(2611), 1, + STATE(832), 1, sym_expression, - STATE(2669), 1, + STATE(879), 1, + sym_call, + STATE(1003), 1, sym_primary_expression, - STATE(2681), 1, + STATE(1322), 1, sym_selector_expression, - STATE(5056), 1, + STATE(5146), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120392,18 +125852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120411,7 +125871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120428,51 +125888,272 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85849] = 26, - ACTIONS(714), 1, + [87966] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3073), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(720), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [88035] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, + ACTIONS(3077), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [88104] = 26, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, + anon_sym_LBRACE, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(742), 1, anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(2350), 1, sym_call, - STATE(4214), 1, + STATE(3002), 1, + sym_expression, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, sym_selector_expression, - STATE(4916), 1, + STATE(5229), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [88219] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, + anon_sym_LBRACE, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + STATE(2350), 1, + sym_call, + STATE(2427), 1, sym_expression, - STATE(5012), 1, + STATE(2453), 1, + sym_primary_expression, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120481,18 +126162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120500,7 +126181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120517,140 +126198,251 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [85964] = 26, - ACTIONS(506), 1, + [88334] = 4, + STATE(1439), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + 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(197), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [88405] = 4, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + 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(2770), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_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(510), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [88476] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3083), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(2396), 1, - sym_call, - STATE(2550), 1, - sym_expression, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, - sym_selector_expression, - STATE(5056), 1, - sym_dotted_name, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3081), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [86079] = 26, - ACTIONS(506), 1, + [88545] = 26, + ACTIONS(257), 1, sym_identifier, - ACTIONS(510), 1, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(518), 1, + ACTIONS(271), 1, anon_sym_not, - ACTIONS(520), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, + STATE(2365), 1, + sym_primary_expression, + STATE(2406), 1, sym_call, - STATE(2616), 1, + STATE(2410), 1, sym_expression, - STATE(2669), 1, - sym_primary_expression, - STATE(2681), 1, + STATE(2456), 1, sym_selector_expression, - STATE(5056), 1, + STATE(5114), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120659,18 +126451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120678,7 +126470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120695,26 +126487,16 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [86194] = 10, - ACTIONS(131), 1, + [88660] = 5, + ACTIONS(3085), 1, anon_sym_if, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(2773), 1, - anon_sym_and, - ACTIONS(2775), 1, - anon_sym_PLUS, - ACTIONS(2827), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 24, + ACTIONS(2402), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -120723,6 +126505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -120739,12 +126523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2355), 28, + ACTIONS(2400), 31, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -120758,6 +126543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -120768,51 +126555,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86277] = 26, - ACTIONS(93), 1, + [88733] = 26, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, + STATE(2369), 1, sym_primary_expression, - STATE(1187), 1, + STATE(2401), 1, sym_expression, - STATE(1659), 1, + STATE(2436), 1, sym_call, - STATE(1897), 1, + STATE(2458), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5158), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -120821,18 +126608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -120840,7 +126627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -120857,124 +126644,220 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [86392] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [88848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3089), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(432), 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(434), 1, - sym_string_start, - ACTIONS(442), 1, + ACTIONS(3087), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - STATE(2290), 1, - sym_expression, - STATE(2314), 1, - sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5063), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [88917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(428), 3, + ACTIONS(3093), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3091), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [86507] = 10, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + [88986] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 27, + sym__newline, + 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, - ACTIONS(2777), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3095), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, anon_sym_if, - ACTIONS(2779), 1, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, anon_sym_and, - ACTIONS(2781), 1, - anon_sym_PLUS, - ACTIONS(2829), 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, + [89055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 25, + ACTIONS(3101), 27, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -120991,11 +126874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2355), 27, + ACTIONS(3099), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -121009,6 +126896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -121019,51 +126908,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86590] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [89124] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(2314), 1, + ACTIONS(662), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_not, + STATE(3901), 1, sym_primary_expression, - STATE(2317), 1, + STATE(3942), 1, sym_expression, - STATE(2338), 1, + STATE(3975), 1, sym_selector_expression, - STATE(2365), 1, + STATE(4216), 1, sym_call, - STATE(5063), 1, + STATE(5164), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121072,18 +126961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121091,7 +126980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121108,51 +126997,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [86705] = 26, - ACTIONS(416), 1, + [89239] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3105), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(432), 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(434), 1, + ACTIONS(3103), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [89308] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(702), 1, + ACTIONS(1381), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(1387), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(2976), 1, - sym_expression, - STATE(3010), 1, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2951), 1, + anon_sym_LBRACK, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, + anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + STATE(2756), 1, sym_primary_expression, - STATE(3224), 1, + STATE(2877), 1, + sym_call, + STATE(2904), 1, sym_selector_expression, - STATE(5095), 1, + STATE(4278), 1, + sym_expression, + STATE(5208), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121161,18 +127116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121180,7 +127135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121197,51 +127152,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [86820] = 26, - ACTIONS(251), 1, + [89423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + 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(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(257), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [89492] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(265), 1, + ACTIONS(526), 1, anon_sym_not, - ACTIONS(267), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(2276), 1, + STATE(2669), 1, sym_expression, - STATE(2287), 1, + STATE(2719), 1, sym_primary_expression, - STATE(2329), 1, + STATE(2736), 1, sym_selector_expression, - STATE(2407), 1, + STATE(2751), 1, sym_call, - STATE(4999), 1, + STATE(5171), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121250,18 +127271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121269,7 +127290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121286,51 +127307,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [86935] = 26, - ACTIONS(412), 1, + [89607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3109), 27, + sym__newline, + 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(3107), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(416), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [89676] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(2314), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(837), 1, sym_primary_expression, - STATE(2316), 1, - sym_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(1770), 1, sym_call, - STATE(5063), 1, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121339,18 +127426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121358,7 +127445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121375,51 +127462,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [87050] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [89791] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(2314), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3111), 1, + sym_identifier, + STATE(2310), 1, sym_primary_expression, - STATE(2338), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2365), 1, + STATE(2406), 1, sym_call, - STATE(2794), 1, - sym_expression, - STATE(5063), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121428,18 +127515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121447,7 +127534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121464,140 +127551,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [87165] = 26, - ACTIONS(416), 1, + [89906] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(702), 1, - sym_identifier, - ACTIONS(706), 1, - anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(3010), 1, - sym_primary_expression, - STATE(3054), 1, - sym_expression, - STATE(3224), 1, - sym_selector_expression, - STATE(5095), 1, - sym_dotted_name, - STATE(5953), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(708), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2459), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [87280] = 26, - ACTIONS(412), 1, + [89975] = 26, + ACTIONS(708), 1, sym_identifier, - ACTIONS(416), 1, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(424), 1, + ACTIONS(720), 1, anon_sym_not, - ACTIONS(426), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(2311), 1, - sym_expression, - STATE(2314), 1, + STATE(2856), 1, sym_primary_expression, - STATE(2338), 1, + STATE(2886), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(2365), 1, + STATE(3115), 1, sym_call, - STATE(5063), 1, + STATE(5174), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121606,18 +127670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121625,7 +127689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121642,51 +127706,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [87395] = 26, - ACTIONS(486), 1, + [90090] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, + ACTIONS(3113), 1, + sym_identifier, + STATE(2846), 1, sym_selector_expression, - STATE(3663), 1, + STATE(2850), 1, sym_call, - STATE(4311), 1, + STATE(2926), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5168), 1, + STATE(5276), 1, sym_expression, - STATE(6002), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121695,18 +127759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121714,7 +127778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121731,140 +127795,185 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [87510] = 26, - ACTIONS(486), 1, + [90205] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, - sym_string_start, - ACTIONS(672), 1, + ACTIONS(197), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(2831), 1, - anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4311), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5168), 1, - sym_expression, - STATE(6002), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [90278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(3117), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3115), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [87625] = 26, - ACTIONS(155), 1, + [90347] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(161), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(169), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(171), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, + sym_call, + STATE(3976), 1, sym_primary_expression, - STATE(1202), 1, - sym_expression, - STATE(1878), 1, + STATE(4260), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(5072), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -121873,18 +127982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -121892,7 +128001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -121909,34 +128018,22 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [87740] = 10, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - ACTIONS(2815), 1, - anon_sym_and, - ACTIONS(2817), 1, - anon_sym_PLUS, - ACTIONS(2833), 1, - anon_sym_or, + [90462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 24, - sym__dedent, + ACTIONS(3035), 27, + sym__newline, 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, @@ -121953,11 +128050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2355), 28, + ACTIONS(3033), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -121972,6 +128072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -121982,140 +128084,117 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87823] = 26, - ACTIONS(486), 1, + [90531] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3729), 1, - sym_primary_expression, - STATE(3734), 1, - sym_expression, - STATE(4027), 1, - sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(622), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3037), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [87938] = 26, - ACTIONS(67), 1, + [90600] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, - sym_primary_expression, - STATE(1206), 1, + STATE(2806), 1, sym_expression, - STATE(1533), 1, + STATE(2845), 1, + sym_primary_expression, + STATE(2850), 1, sym_call, - STATE(2098), 1, + STATE(2879), 1, sym_selector_expression, - STATE(5107), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -122124,18 +128203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -122143,7 +128222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -122160,140 +128239,184 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [88053] = 26, - ACTIONS(486), 1, + [90715] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, - sym_string_start, - ACTIONS(672), 1, + ACTIONS(3043), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4370), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5185), 1, - sym_expression, - STATE(6002), 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, + [90784] = 4, + ACTIONS(2829), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(2554), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2556), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [88168] = 26, - ACTIONS(486), 1, + [90855] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, + ACTIONS(3111), 1, + sym_identifier, + STATE(2311), 1, + sym_primary_expression, + STATE(2371), 1, sym_selector_expression, - STATE(3663), 1, + STATE(2406), 1, sym_call, - STATE(4370), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5207), 1, + STATE(5255), 1, sym_expression, - STATE(6002), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -122302,18 +128425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -122321,7 +128444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -122338,140 +128461,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [88283] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [90970] = 4, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3608), 1, - sym_primary_expression, - STATE(3663), 1, - sym_call, - STATE(3709), 1, - sym_expression, - STATE(3832), 1, - sym_selector_expression, - STATE(5122), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [88398] = 26, - ACTIONS(486), 1, + [91041] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(3729), 1, + STATE(1770), 1, + sym_call, + STATE(2008), 1, sym_primary_expression, - STATE(3737), 1, + STATE(2017), 1, sym_expression, - STATE(4027), 1, + STATE(2240), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, + STATE(5196), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -122480,18 +128581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -122499,7 +128600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -122516,51 +128617,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [88513] = 26, - ACTIONS(510), 1, + [91156] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(2396), 1, + STATE(3482), 1, sym_call, - STATE(2850), 1, + STATE(3533), 1, sym_primary_expression, - STATE(2852), 1, - sym_expression, - STATE(3017), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5087), 1, + STATE(5009), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -122569,18 +128670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -122588,7 +128689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -122605,51 +128706,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [88628] = 26, - ACTIONS(486), 1, + [91271] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(3446), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3722), 1, + STATE(4415), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5263), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -122658,18 +128759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -122677,7 +128778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -122694,51 +128795,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [88743] = 26, - ACTIONS(486), 1, + [91386] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(3446), 1, + ACTIONS(3119), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3721), 1, + STATE(4415), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5263), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -122747,18 +128848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -122766,7 +128867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -122783,318 +128884,385 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [88858] = 26, - ACTIONS(486), 1, + [91501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, - sym_string_start, - ACTIONS(672), 1, + ACTIONS(3053), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2759), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(3712), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5163), 1, - sym_expression, - STATE(6002), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [91570] = 4, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(2768), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [88973] = 26, - ACTIONS(486), 1, + [91641] = 4, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, - sym_string_start, - ACTIONS(672), 1, + ACTIONS(2770), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2759), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(3710), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5163), 1, - sym_expression, - STATE(6002), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [91712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(3123), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3121), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, + [91781] = 5, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [89088] = 26, - ACTIONS(486), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2759), 1, - sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(3706), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5163), 1, - sym_expression, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(129), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [89203] = 26, - ACTIONS(486), 1, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [91854] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(3446), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3705), 1, + STATE(4486), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5274), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123103,18 +129271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123122,7 +129290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123139,51 +129307,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [89318] = 26, - ACTIONS(486), 1, + [91969] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2759), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(3446), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3700), 1, + STATE(4486), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5163), 1, + STATE(5273), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123192,18 +129360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123211,7 +129379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123228,51 +129396,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [89433] = 26, - ACTIONS(486), 1, + [92084] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(612), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(618), 1, + ACTIONS(125), 1, anon_sym_not, - ACTIONS(672), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(3729), 1, + STATE(860), 1, + sym_call, + STATE(866), 1, sym_primary_expression, - STATE(3738), 1, + STATE(874), 1, sym_expression, - STATE(4027), 1, + STATE(1443), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(5069), 1, + STATE(5223), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123281,18 +129449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123300,7 +129468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123317,26 +129485,11 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [89548] = 10, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2821), 1, - anon_sym_and, - ACTIONS(2823), 1, - anon_sym_PLUS, - ACTIONS(2835), 1, - anon_sym_or, + [92199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 25, + ACTIONS(3127), 27, sym__newline, sym__dedent, sym_string_start, @@ -123346,6 +129499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -123362,11 +129517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2355), 27, + ACTIONS(3125), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -123380,6 +129539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -123390,51 +129551,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [89631] = 26, - ACTIONS(486), 1, + [92268] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(3729), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2915), 1, + sym_identifier, + STATE(2347), 1, sym_primary_expression, - STATE(3806), 1, - sym_expression, - STATE(4027), 1, + STATE(2371), 1, sym_selector_expression, - STATE(4111), 1, + STATE(2406), 1, sym_call, - STATE(5069), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123443,18 +129604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123462,7 +129623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123479,51 +129640,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [89746] = 26, - ACTIONS(486), 1, + [92383] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(3729), 1, - sym_primary_expression, - STATE(3741), 1, - sym_expression, - STATE(4027), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, sym_selector_expression, - STATE(4111), 1, + STATE(860), 1, sym_call, - STATE(5069), 1, + STATE(875), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123532,18 +129693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123551,7 +129712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123568,51 +129729,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [89861] = 26, - ACTIONS(135), 1, + [92498] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(1064), 1, - sym_primary_expression, - STATE(1102), 1, - sym_expression, - STATE(1901), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, sym_selector_expression, - STATE(2027), 1, + STATE(860), 1, sym_call, - STATE(5065), 1, + STATE(876), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123621,18 +129782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123640,7 +129801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123657,48 +129818,48 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [89976] = 26, - ACTIONS(93), 1, + [92613] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, - sym_primary_expression, - STATE(1194), 1, - sym_expression, - STATE(1659), 1, - sym_call, - STATE(1897), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, sym_selector_expression, - STATE(5071), 1, + STATE(860), 1, + sym_call, + STATE(880), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, ACTIONS(127), 3, @@ -123710,18 +129871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123729,7 +129890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123746,51 +129907,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90091] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [92728] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(2622), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, sym_selector_expression, - STATE(2707), 1, + STATE(860), 1, sym_call, - STATE(5072), 1, + STATE(882), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123799,18 +129960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123818,7 +129979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123835,51 +129996,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90206] = 26, - ACTIONS(416), 1, + [92843] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, - sym_identifier, - ACTIONS(706), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2365), 1, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, sym_call, - STATE(3010), 1, + STATE(883), 1, sym_primary_expression, - STATE(3071), 1, - sym_expression, - STATE(3224), 1, - sym_selector_expression, - STATE(5095), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123888,18 +130049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123907,7 +130068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -123924,51 +130085,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90321] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [92958] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(2625), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, sym_selector_expression, - STATE(2707), 1, + STATE(860), 1, sym_call, - STATE(5072), 1, + STATE(884), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -123977,18 +130138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -123996,7 +130157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124013,51 +130174,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90436] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [93073] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(2733), 1, - sym_identifier, - ACTIONS(2837), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - STATE(3874), 1, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, sym_call, - STATE(3992), 1, + STATE(888), 1, sym_primary_expression, - STATE(4230), 1, - sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5187), 1, + STATE(5285), 1, sym_expression, - STATE(6288), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124066,18 +130227,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124085,7 +130246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124102,51 +130263,249 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90551] = 26, - ACTIONS(448), 1, + [93188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 27, + sym__newline, + 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(3073), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(454), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3043), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(460), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93326] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(462), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3077), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(464), 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, + [93395] = 26, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, + anon_sym_LBRACE, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(2626), 1, - sym_expression, - STATE(2672), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2915), 1, + sym_identifier, + STATE(2346), 1, sym_primary_expression, - STATE(2680), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5072), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124155,18 +130514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124174,7 +130533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124191,51 +130550,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90666] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [93510] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_not, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, - sym_primary_expression, - STATE(1209), 1, + ACTIONS(662), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_not, + STATE(3866), 1, sym_expression, - STATE(1878), 1, + STATE(3901), 1, + sym_primary_expression, + STATE(3975), 1, sym_selector_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(5096), 1, + STATE(5164), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124244,18 +130603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124263,7 +130622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124280,140 +130639,449 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [90781] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [93625] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3083), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(462), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3081), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(464), 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, + [93694] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3089), 27, + sym__newline, + 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, - ACTIONS(470), 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(472), 1, + ACTIONS(3087), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3093), 27, + sym__newline, sym_string_start, - ACTIONS(606), 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(3091), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(608), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 27, + sym__newline, + 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(2544), 1, - sym_expression, - STATE(2672), 1, - sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(5072), 1, - sym_dotted_name, - STATE(5958), 1, - sym_quant_op, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3095), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(2832), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(3101), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3099), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(468), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2820), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2819), 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, + [93970] = 5, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [90896] = 26, - ACTIONS(448), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 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(2236), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_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(454), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94043] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(2628), 1, - sym_expression, - STATE(2672), 1, + ACTIONS(1411), 1, + sym_identifier, + ACTIONS(1415), 1, + anon_sym_not, + STATE(2889), 1, sym_primary_expression, - STATE(2680), 1, + STATE(3102), 1, sym_selector_expression, - STATE(2707), 1, + STATE(3115), 1, sym_call, - STATE(5072), 1, + STATE(4461), 1, + sym_expression, + STATE(5119), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124422,18 +131090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124441,7 +131109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124458,140 +131126,252 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [91011] = 26, - ACTIONS(67), 1, + [94158] = 5, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(83), 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(85), 1, - sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(2252), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(199), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94231] = 4, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 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(1127), 1, - sym_primary_expression, - STATE(1211), 1, - sym_expression, - STATE(1533), 1, - sym_call, - STATE(2098), 1, - sym_selector_expression, - STATE(5107), 1, - sym_dotted_name, - STATE(5858), 1, - sym_quant_op, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(3109), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3107), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(81), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2062), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2057), 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, - [91126] = 26, - ACTIONS(486), 1, + [94371] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(744), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(1415), 1, anon_sym_not, - STATE(3663), 1, - sym_call, - STATE(4283), 1, + STATE(2889), 1, sym_primary_expression, - STATE(4293), 1, - sym_expression, - STATE(4414), 1, + STATE(3102), 1, sym_selector_expression, - STATE(5041), 1, + STATE(3115), 1, + sym_call, + STATE(4458), 1, + sym_expression, + STATE(5119), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124600,18 +131380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124619,7 +131399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124636,140 +131416,185 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [91241] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [94486] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3117), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(650), 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(652), 1, - sym_string_start, - ACTIONS(740), 1, + ACTIONS(3115), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(742), 1, - anon_sym_QMARK_DOT, - STATE(2793), 1, - sym_primary_expression, - STATE(2922), 1, - sym_expression, - STATE(3027), 1, - sym_call, - STATE(3040), 1, - sym_selector_expression, - STATE(5079), 1, - sym_dotted_name, - STATE(5965), 1, - sym_quant_op, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94555] = 5, + ACTIONS(3085), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(646), 3, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2252), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(648), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3207), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3203), 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, - [91356] = 26, - ACTIONS(416), 1, + [94628] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(702), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(706), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2365), 1, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, sym_call, - STATE(3010), 1, + STATE(4412), 1, sym_primary_expression, - STATE(3072), 1, - sym_expression, - STATE(3224), 1, - sym_selector_expression, - STATE(5095), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124778,18 +131603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3233), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124797,7 +131622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124814,51 +131639,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [91471] = 26, - ACTIONS(486), 1, + [94743] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(4354), 1, + STATE(4411), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5168), 1, + STATE(5263), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124867,18 +131692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124886,7 +131711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124903,51 +131728,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [91586] = 26, - ACTIONS(486), 1, + [94858] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4356), 1, + ACTIONS(3049), 1, + sym_identifier, + STATE(932), 1, sym_primary_expression, - STATE(5113), 1, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5203), 1, + STATE(5279), 1, sym_expression, - STATE(6002), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -124956,18 +131781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -124975,7 +131800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -124992,229 +131817,527 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [91701] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [94973] = 4, + ACTIONS(2756), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(650), 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(652), 1, - sym_string_start, - ACTIONS(740), 1, + ACTIONS(2556), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(742), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95044] = 8, + ACTIONS(3132), 1, + anon_sym_not, + ACTIONS(3138), 1, + anon_sym_is, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3135), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 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, - STATE(2793), 1, - sym_primary_expression, - STATE(2908), 1, - sym_expression, - STATE(3027), 1, - sym_call, - STATE(3040), 1, - sym_selector_expression, - STATE(5079), 1, - sym_dotted_name, - STATE(5965), 1, - sym_quant_op, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_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(2841), 28, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(3143), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3141), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(648), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3207), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3203), 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, + [95192] = 6, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [91816] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - ACTIONS(650), 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(652), 1, + ACTIONS(2256), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95267] = 5, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 26, sym_string_start, - ACTIONS(740), 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(2264), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(742), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95340] = 6, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 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(2793), 1, - sym_primary_expression, - STATE(2907), 1, - sym_expression, - STATE(3027), 1, - sym_call, - STATE(3040), 1, - sym_selector_expression, - STATE(5079), 1, - sym_dotted_name, - STATE(5965), 1, - sym_quant_op, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2242), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(3149), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3147), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(648), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3207), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3203), 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, - [91931] = 26, - ACTIONS(486), 1, + [95484] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, - anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(820), 1, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + ACTIONS(826), 1, + anon_sym_not, + STATE(1770), 1, sym_call, - STATE(3781), 1, + STATE(2024), 1, + sym_primary_expression, + STATE(2254), 1, sym_selector_expression, - STATE(4773), 1, + STATE(3357), 1, sym_expression, - STATE(5123), 1, + STATE(5087), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125223,18 +132346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125242,7 +132365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125259,51 +132382,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92046] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [95599] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(2793), 1, - sym_primary_expression, - STATE(2795), 1, - sym_expression, - STATE(3027), 1, + ACTIONS(820), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(1770), 1, sym_call, - STATE(3040), 1, + STATE(2024), 1, + sym_primary_expression, + STATE(2254), 1, sym_selector_expression, - STATE(5079), 1, + STATE(3339), 1, + sym_expression, + STATE(5087), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125312,18 +132435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125331,7 +132454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125348,51 +132471,184 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92161] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [95714] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3123), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3121), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(640), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95783] = 4, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(642), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(644), 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, + [95854] = 26, + ACTIONS(143), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(2793), 1, - sym_primary_expression, - STATE(2885), 1, - sym_expression, - STATE(3027), 1, + ACTIONS(820), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(1770), 1, sym_call, - STATE(3040), 1, + STATE(2024), 1, + sym_primary_expression, + STATE(2254), 1, sym_selector_expression, - STATE(5079), 1, + STATE(3340), 1, + sym_expression, + STATE(5087), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125401,18 +132657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125420,7 +132676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125437,51 +132693,249 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92276] = 26, - ACTIONS(486), 1, + [95969] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3127), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3125), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(492), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [96038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3153), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, + ACTIONS(3151), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [96107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(672), 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(3155), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [96176] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(3657), 1, + STATE(3924), 1, sym_primary_expression, - STATE(3663), 1, + STATE(3968), 1, sym_call, - STATE(3781), 1, + STATE(4224), 1, sym_selector_expression, - STATE(4770), 1, - sym_expression, - STATE(5123), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125490,18 +132944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125509,7 +132963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125526,51 +132980,251 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92391] = 26, - ACTIONS(486), 1, + [96291] = 4, + STATE(2164), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(492), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [96362] = 4, + ACTIONS(3057), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, + ACTIONS(197), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [96433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 27, + sym__newline, sym_string_start, - ACTIONS(672), 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(3043), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [96502] = 26, + ACTIONS(712), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1415), 1, anon_sym_not, - STATE(3446), 1, + STATE(2889), 1, + sym_primary_expression, + STATE(3102), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3115), 1, sym_call, - STATE(4372), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5168), 1, + STATE(4457), 1, sym_expression, - STATE(6002), 1, + STATE(5119), 1, + sym_dotted_name, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125579,18 +133233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125598,7 +133252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125615,51 +133269,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92506] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [96617] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, - sym_primary_expression, - STATE(2882), 1, - sym_expression, - STATE(2993), 1, + ACTIONS(792), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(860), 1, sym_call, - STATE(3042), 1, + STATE(1905), 1, + sym_primary_expression, + STATE(2224), 1, sym_selector_expression, - STATE(5059), 1, + STATE(3341), 1, + sym_expression, + STATE(5221), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125668,18 +133322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125687,7 +133341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125704,51 +133358,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92621] = 26, - ACTIONS(135), 1, + [96732] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(814), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(820), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(1411), 1, - sym_primary_expression, - STATE(1911), 1, + STATE(3458), 1, sym_selector_expression, - STATE(2027), 1, + STATE(3593), 1, sym_call, - STATE(3332), 1, - sym_expression, - STATE(5035), 1, + STATE(4416), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125757,18 +133411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2165), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125776,7 +133430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125793,51 +133447,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92736] = 26, - ACTIONS(93), 1, + [96847] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(764), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(770), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(1426), 1, - sym_primary_expression, - STATE(1659), 1, - sym_call, - STATE(1916), 1, + STATE(3458), 1, sym_selector_expression, - STATE(3298), 1, - sym_expression, - STATE(5053), 1, + STATE(3593), 1, + sym_call, + STATE(4486), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5271), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125846,18 +133500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2194), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125865,7 +133519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125882,51 +133536,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92851] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [96962] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2939), 1, sym_primary_expression, - STATE(2880), 1, - sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, + STATE(3039), 1, sym_selector_expression, - STATE(5059), 1, + STATE(3115), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -125935,18 +133589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(3229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -125954,7 +133608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -125971,140 +133625,382 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [92966] = 26, - ACTIONS(13), 1, + [97077] = 4, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 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(2770), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(21), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(25), 1, + anon_sym_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(3141), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(27), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, + ACTIONS(3147), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97286] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3153), 27, + sym__newline, sym_string_start, - ACTIONS(219), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1395), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3151), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2733), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(3874), 1, - sym_call, - STATE(3992), 1, - sym_primary_expression, - STATE(4230), 1, - sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5187), 1, - sym_expression, - STATE(6288), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(3157), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3155), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4401), 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, - [93081] = 26, - ACTIONS(510), 1, + [97424] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(219), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + ACTIONS(2935), 1, + sym_identifier, + STATE(2938), 1, sym_primary_expression, - STATE(2738), 1, + STATE(3039), 1, sym_selector_expression, - STATE(5127), 1, + STATE(3115), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126113,18 +134009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(3229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126132,7 +134028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126149,51 +134045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [93196] = 26, - ACTIONS(678), 1, + [97539] = 26, + ACTIONS(640), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(648), 1, anon_sym_lambda, - ACTIONS(688), 1, - anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(652), 1, anon_sym_not, - ACTIONS(692), 1, - anon_sym_DQUOTE, - ACTIONS(698), 1, - sym_float, - ACTIONS(700), 1, + ACTIONS(660), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(756), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3919), 1, sym_primary_expression, - STATE(2874), 1, + STATE(3943), 1, sym_expression, - STATE(2993), 1, + STATE(3948), 1, sym_call, - STATE(3042), 1, + STATE(4252), 1, sym_selector_expression, - STATE(5059), 1, + STATE(5203), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126202,18 +134098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126221,7 +134117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126238,51 +134134,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [93311] = 26, - ACTIONS(416), 1, + [97654] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1341), 1, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1415), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(3007), 1, + STATE(2889), 1, sym_primary_expression, - STATE(3219), 1, + STATE(3102), 1, sym_selector_expression, - STATE(4324), 1, + STATE(3115), 1, + sym_call, + STATE(4391), 1, sym_expression, - STATE(5058), 1, + STATE(5119), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126291,18 +134187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126310,7 +134206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126327,51 +134223,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [93426] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [97769] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3159), 1, + anon_sym_not, + STATE(2903), 1, sym_primary_expression, - STATE(2806), 1, - sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, + STATE(3039), 1, sym_selector_expression, - STATE(5059), 1, + STATE(3115), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126380,18 +134276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(3229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126399,7 +134295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126416,51 +134312,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [93541] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [97884] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2903), 1, sym_primary_expression, - STATE(2858), 1, - sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, + STATE(3039), 1, sym_selector_expression, - STATE(5059), 1, + STATE(3115), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126469,18 +134365,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(3229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126488,7 +134384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126505,51 +134401,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [93656] = 26, - ACTIONS(486), 1, + [97999] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(744), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(2987), 1, sym_identifier, - ACTIONS(748), 1, + ACTIONS(3161), 1, anon_sym_not, - STATE(3663), 1, - sym_call, - STATE(4283), 1, + STATE(3924), 1, sym_primary_expression, - STATE(4341), 1, - sym_expression, - STATE(4414), 1, + STATE(3968), 1, + sym_call, + STATE(4224), 1, sym_selector_expression, - STATE(5041), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126558,18 +134454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4416), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126577,7 +134473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126594,140 +134490,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [93771] = 26, - ACTIONS(257), 1, + [98114] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(3165), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(842), 1, - sym_identifier, - ACTIONS(848), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(2399), 1, - sym_primary_expression, - STATE(2407), 1, - sym_call, - STATE(2505), 1, - sym_selector_expression, - STATE(3852), 1, - sym_expression, - STATE(5000), 1, - sym_dotted_name, - STATE(6187), 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, + [98183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(380), 3, + ACTIONS(3167), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3169), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2510), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [93886] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [98252] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, + ACTIONS(189), 1, + sym_identifier, ACTIONS(193), 1, + anon_sym_not, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(726), 1, + STATE(993), 1, sym_primary_expression, - STATE(736), 1, + STATE(1589), 1, sym_expression, - STATE(1144), 1, + STATE(1662), 1, sym_selector_expression, - STATE(1659), 1, + STATE(1770), 1, sym_call, - STATE(5099), 1, + STATE(5204), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126736,18 +134675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126755,7 +134694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126772,51 +134711,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94001] = 26, - ACTIONS(506), 1, + [98367] = 26, + ACTIONS(456), 1, sym_identifier, - ACTIONS(510), 1, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(518), 1, + ACTIONS(470), 1, anon_sym_not, - ACTIONS(520), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(112), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2669), 1, + STATE(3583), 1, sym_primary_expression, - STATE(2681), 1, + STATE(3593), 1, + sym_call, + STATE(3756), 1, sym_selector_expression, - STATE(5056), 1, + STATE(4222), 1, + sym_expression, + STATE(5214), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126825,18 +134764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126844,7 +134783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126861,51 +134800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94116] = 26, - ACTIONS(135), 1, + [98482] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, - sym_identifier, - STATE(1418), 1, + STATE(860), 1, + sym_call, + STATE(866), 1, sym_primary_expression, - STATE(1880), 1, + STATE(893), 1, + sym_expression, + STATE(1443), 1, sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(5113), 1, + STATE(5223), 1, sym_dotted_name, - STATE(5174), 1, - sym_expression, - STATE(5990), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -126914,18 +134853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -126933,7 +134872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -126950,51 +134889,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94231] = 26, - ACTIONS(87), 1, + [98597] = 4, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + 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(2770), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_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(93), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [98668] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(726), 1, - sym_primary_expression, - STATE(734), 1, - sym_expression, - STATE(1144), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(859), 1, sym_selector_expression, - STATE(1659), 1, + STATE(860), 1, sym_call, - STATE(5099), 1, + STATE(865), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -127003,18 +135009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127022,7 +135028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127039,51 +135045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94346] = 26, - ACTIONS(486), 1, + [98783] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, + STATE(3458), 1, sym_selector_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(4370), 1, + STATE(4486), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5209), 1, + STATE(5261), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -127092,18 +135098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127111,7 +135117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127128,48 +135134,48 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94461] = 26, - ACTIONS(93), 1, + [98898] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2663), 1, - sym_identifier, - STATE(1317), 1, - sym_selector_expression, - STATE(1430), 1, - sym_primary_expression, - STATE(1659), 1, + STATE(860), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5177), 1, + STATE(866), 1, + sym_primary_expression, + STATE(992), 1, sym_expression, - STATE(5982), 1, + STATE(1443), 1, + sym_selector_expression, + STATE(5223), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, ACTIONS(127), 3, @@ -127181,18 +135187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127200,7 +135206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127217,229 +135223,383 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94576] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [99013] = 4, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(2770), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - STATE(2287), 1, - sym_primary_expression, - STATE(2305), 1, - sym_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(4999), 1, - sym_dotted_name, - STATE(6187), 1, - sym_quant_op, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [99084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(269), 3, + ACTIONS(3171), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3173), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2510), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [94691] = 26, - ACTIONS(416), 1, + [99153] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(432), 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(434), 1, - sym_string_start, - ACTIONS(442), 1, + ACTIONS(3177), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2689), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(3006), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5181), 1, - sym_expression, - STATE(5953), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [99222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(708), 3, + ACTIONS(3179), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3181), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [94806] = 26, - ACTIONS(87), 1, + [99291] = 4, + STATE(1352), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + 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(197), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_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(93), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [99362] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(726), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2915), 1, + sym_identifier, + STATE(2352), 1, sym_primary_expression, - STATE(733), 1, - sym_expression, - STATE(1144), 1, + STATE(2371), 1, sym_selector_expression, - STATE(1659), 1, + STATE(2406), 1, sym_call, - STATE(5099), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -127448,18 +135608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127467,7 +135627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127484,140 +135644,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [94921] = 26, - ACTIONS(486), 1, + [99477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(502), 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(504), 1, - sym_string_start, - ACTIONS(672), 1, + ACTIONS(3185), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(1299), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, - sym_call, - STATE(3781), 1, - sym_selector_expression, - STATE(4817), 1, - sym_expression, - STATE(5123), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [99546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(3187), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3189), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [95036] = 26, - ACTIONS(161), 1, + [99615] = 26, + ACTIONS(369), 1, + sym_identifier, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(383), 1, + anon_sym_not, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(812), 1, - anon_sym_not, - STATE(1464), 1, - sym_primary_expression, - STATE(2035), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(3482), 1, sym_call, - STATE(3300), 1, + STATE(3486), 1, sym_expression, - STATE(5083), 1, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2150), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -127626,18 +135829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2210), 4, + STATE(3748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127645,7 +135848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127662,51 +135865,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [95151] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [99730] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(726), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2915), 1, + sym_identifier, + STATE(2356), 1, sym_primary_expression, - STATE(751), 1, - sym_expression, - STATE(1144), 1, + STATE(2371), 1, sym_selector_expression, - STATE(1659), 1, + STATE(2406), 1, sym_call, - STATE(5099), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -127715,18 +135918,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127734,7 +135937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127751,140 +135954,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [95266] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [99845] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(97), 1, - anon_sym_lambda, - ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, - anon_sym_DQUOTE, - ACTIONS(109), 1, - sym_float, - ACTIONS(111), 1, - sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(726), 1, - sym_primary_expression, - STATE(731), 1, - sym_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, - sym_dotted_name, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3165), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(1922), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [95381] = 26, - ACTIONS(67), 1, + [99914] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(762), 1, - anon_sym_not, - STATE(1365), 1, - sym_primary_expression, - STATE(1533), 1, + STATE(3689), 1, + sym_expression, + STATE(3778), 1, sym_call, - STATE(2065), 1, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, sym_selector_expression, - STATE(3310), 1, - sym_expression, - STATE(5089), 1, + STATE(5099), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -127893,18 +136073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2209), 4, + STATE(4177), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -127912,7 +136092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -127929,13 +136109,11 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [95496] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + [100029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, + ACTIONS(3191), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -127963,13 +136141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3193), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -127996,51 +136175,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95567] = 26, - ACTIONS(510), 1, + [100098] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2915), 1, sym_identifier, - STATE(2327), 1, + STATE(2359), 1, + sym_primary_expression, + STATE(2371), 1, sym_selector_expression, - STATE(2396), 1, + STATE(2406), 1, sym_call, - STATE(2829), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5176), 1, + STATE(5250), 1, sym_expression, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128049,18 +136228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128068,7 +136247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128085,51 +136264,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [95682] = 26, - ACTIONS(714), 1, + [100213] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(2362), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(2371), 1, sym_selector_expression, - STATE(5012), 1, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5013), 1, + STATE(5250), 1, sym_expression, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128138,18 +136317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128157,7 +136336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128174,51 +136353,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [95797] = 26, - ACTIONS(534), 1, + [100328] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(2363), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(2371), 1, sym_selector_expression, - STATE(5034), 1, - sym_expression, - STATE(5075), 1, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128227,18 +136406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128246,7 +136425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128263,51 +136442,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [95912] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(135), 1, + [100443] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(1879), 1, - sym_primary_expression, - STATE(2027), 1, - sym_call, - STATE(2054), 1, - sym_expression, - STATE(2204), 1, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(5104), 1, + STATE(3593), 1, + sym_call, + STATE(4486), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5248), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128316,18 +136495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128335,7 +136514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128352,407 +136531,447 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [96027] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [100558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, - anon_sym_DQUOTE, - ACTIONS(273), 1, - sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(80), 1, - sym_expression, - STATE(2287), 1, - sym_primary_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(4999), 1, - sym_dotted_name, - STATE(6187), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(269), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3169), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2510), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [96142] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [100627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3195), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3608), 1, - sym_primary_expression, - STATE(3635), 1, - sym_expression, - STATE(3663), 1, - sym_call, - STATE(3832), 1, - sym_selector_expression, - STATE(5122), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(498), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [96257] = 26, - ACTIONS(257), 1, + [100696] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3199), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(3201), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(854), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(2313), 1, - sym_primary_expression, - STATE(2328), 1, - sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(3672), 1, - sym_expression, - STATE(5009), 1, - sym_dotted_name, - STATE(6187), 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, + [100765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(269), 3, + ACTIONS(3203), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3205), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2510), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [96372] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(135), 1, + [100834] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1879), 1, - sym_primary_expression, - STATE(2027), 1, - sym_call, - STATE(2048), 1, - sym_expression, - STATE(2204), 1, - sym_selector_expression, - STATE(5104), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(147), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3205), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [96487] = 26, - ACTIONS(486), 1, + [100903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3207), 27, + sym__newline, + 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(3209), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [100972] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3446), 1, + ACTIONS(2915), 1, + sym_identifier, + STATE(2370), 1, + sym_primary_expression, + STATE(2371), 1, sym_selector_expression, - STATE(3663), 1, + STATE(2406), 1, sym_call, - STATE(4370), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5211), 1, + STATE(5250), 1, sym_expression, - STATE(6002), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128761,18 +136980,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128780,7 +136999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128797,51 +137016,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [96602] = 26, - ACTIONS(161), 1, + [101087] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, - sym_identifier, - STATE(1466), 1, + STATE(2350), 1, + sym_call, + STATE(2453), 1, sym_primary_expression, - STATE(1899), 1, + STATE(2547), 1, + sym_expression, + STATE(2704), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5202), 1, - sym_expression, - STATE(5909), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128850,18 +137069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128869,7 +137088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128886,51 +137105,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [96717] = 26, - ACTIONS(257), 1, + [101202] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(854), 1, - anon_sym_not, - STATE(2313), 1, - sym_primary_expression, - STATE(2328), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(4096), 1, sym_call, - STATE(3674), 1, + STATE(4218), 1, sym_expression, - STATE(5009), 1, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -128939,18 +137158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(4410), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -128958,7 +137177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -128975,51 +137194,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [96832] = 26, - ACTIONS(67), 1, + [101317] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(2915), 1, sym_identifier, - STATE(1210), 1, + STATE(2371), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(1534), 1, + STATE(2379), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5157), 1, + STATE(5250), 1, sym_expression, - STATE(5858), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129028,18 +137247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129047,7 +137266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129064,51 +137283,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [96947] = 26, - ACTIONS(129), 1, + [101432] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1381), 1, sym_identifier, - ACTIONS(135), 1, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - STATE(1879), 1, + STATE(248), 1, + sym_expression, + STATE(2756), 1, sym_primary_expression, - STATE(2027), 1, + STATE(2877), 1, sym_call, - STATE(2046), 1, - sym_expression, - STATE(2204), 1, + STATE(2904), 1, sym_selector_expression, - STATE(5104), 1, + STATE(5208), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129117,18 +137336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(3101), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129136,7 +137355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129153,229 +137372,315 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [97062] = 26, - ACTIONS(390), 1, + [101547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3211), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(406), 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(408), 1, - sym_string_start, - ACTIONS(474), 1, + ACTIONS(3213), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2661), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4894), 1, - sym_dotted_name, - STATE(5039), 1, - sym_expression, - STATE(6057), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [101616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(3215), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3217), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(404), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3671), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3665), 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, - [97177] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(135), 1, + [101685] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3215), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(151), 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(153), 1, - sym_string_start, - ACTIONS(213), 1, + ACTIONS(3217), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - STATE(1879), 1, - sym_primary_expression, - STATE(2027), 1, - sym_call, - STATE(2078), 1, - sym_expression, - STATE(2204), 1, - sym_selector_expression, - STATE(5104), 1, - sym_dotted_name, - STATE(5990), 1, - sym_quant_op, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [101754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(3219), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3221), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(149), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2163), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2162), 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, - [97292] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(135), 1, + [101823] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(1879), 1, - sym_primary_expression, - STATE(2027), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3223), 1, + sym_identifier, + STATE(1770), 1, sym_call, - STATE(2044), 1, - sym_expression, - STATE(2204), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5104), 1, + STATE(2245), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129384,18 +137689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129403,7 +137708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129420,51 +137725,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [97407] = 26, - ACTIONS(257), 1, + [101938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3225), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3227), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102007] = 26, + ACTIONS(257), 1, + sym_identifier, ACTIONS(263), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, ACTIONS(267), 1, - anon_sym_DQUOTE, + anon_sym_lambda, + ACTIONS(269), 1, + anon_sym_LBRACE, + ACTIONS(271), 1, + anon_sym_not, ACTIONS(273), 1, + anon_sym_DQUOTE, + ACTIONS(279), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(854), 1, - anon_sym_not, - STATE(2313), 1, + STATE(2365), 1, sym_primary_expression, - STATE(2328), 1, - sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(3675), 1, + STATE(2389), 1, sym_expression, - STATE(5009), 1, + STATE(2406), 1, + sym_call, + STATE(2456), 1, + sym_selector_expression, + STATE(5114), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129473,18 +137844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129492,7 +137863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129509,229 +137880,447 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [97522] = 26, - ACTIONS(390), 1, + [102122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3229), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(406), 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(408), 1, - sym_string_start, - ACTIONS(474), 1, + ACTIONS(3231), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2661), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4896), 1, - sym_dotted_name, - STATE(5042), 1, - sym_expression, - STATE(6057), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(3233), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3235), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(404), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3671), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3665), 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, - [97637] = 26, - ACTIONS(390), 1, + [102260] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(406), 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(408), 1, - sym_string_start, - ACTIONS(474), 1, + ACTIONS(3239), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(5018), 1, - sym_dotted_name, - STATE(5046), 1, - sym_expression, - STATE(6057), 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, + [102329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(3241), 27, + sym__newline, + 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3243), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(404), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3671), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3665), 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, - [97752] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, + [102398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3245), 27, + sym__newline, + 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(3247), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(568), 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_check, anon_sym_not, - ACTIONS(576), 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, + [102467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3249), 27, + sym__newline, sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(2629), 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(3801), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + ACTIONS(3251), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102536] = 26, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, + anon_sym_LBRACE, + ACTIONS(273), 1, + anon_sym_DQUOTE, + ACTIONS(279), 1, + sym_float, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1104), 1, + anon_sym_not, + STATE(2405), 1, sym_primary_expression, - STATE(4000), 1, + STATE(2406), 1, + sym_call, + STATE(2593), 1, sym_selector_expression, - STATE(5108), 1, + STATE(3764), 1, + sym_expression, + STATE(5095), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4239), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129740,18 +138329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129759,7 +138348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129776,51 +138365,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [97867] = 26, - ACTIONS(390), 1, + [102651] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1421), 1, anon_sym_not, - STATE(3460), 1, + STATE(249), 1, + sym_expression, + STATE(2350), 1, sym_call, - STATE(3464), 1, + STATE(2985), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3044), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5048), 1, - sym_expression, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129829,18 +138418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129848,7 +138437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129865,51 +138454,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [97982] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, + [102766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(2629), 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(3794), 1, + ACTIONS(3173), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102835] = 26, + ACTIONS(257), 1, + sym_identifier, + ACTIONS(263), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, + anon_sym_LBRACE, + ACTIONS(271), 1, + anon_sym_not, + ACTIONS(273), 1, + anon_sym_DQUOTE, + ACTIONS(279), 1, + sym_float, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + STATE(2365), 1, + sym_primary_expression, + STATE(2395), 1, sym_expression, - STATE(3807), 1, + STATE(2406), 1, sym_call, - STATE(3841), 1, - sym_primary_expression, - STATE(4000), 1, + STATE(2456), 1, sym_selector_expression, - STATE(5108), 1, + STATE(5114), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4239), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -129918,18 +138573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -129937,7 +138592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -129954,51 +138609,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98097] = 26, - ACTIONS(510), 1, + [102950] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1357), 1, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1104), 1, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2835), 1, + STATE(2405), 1, sym_primary_expression, - STATE(3023), 1, + STATE(2406), 1, + sym_call, + STATE(2593), 1, sym_selector_expression, - STATE(4327), 1, + STATE(3763), 1, sym_expression, - STATE(5088), 1, + STATE(5095), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130007,18 +138662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3222), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130026,7 +138681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130043,51 +138698,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98212] = 26, - ACTIONS(714), 1, + [103065] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3177), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(720), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [103134] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3179), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(724), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(730), 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(732), 1, + ACTIONS(3181), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [103203] = 26, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(2615), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(846), 1, anon_sym_not, - STATE(4082), 1, + STATE(1411), 1, sym_call, - STATE(4088), 1, + STATE(2225), 1, sym_primary_expression, - STATE(4140), 1, + STATE(2270), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5193), 1, + STATE(3406), 1, sym_expression, - STATE(6132), 1, + STATE(5185), 1, + sym_dotted_name, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4296), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(726), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130096,18 +138883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4275), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130115,7 +138902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130132,51 +138919,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98327] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + [103318] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(159), 1, sym_float, - STATE(3792), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(922), 1, sym_primary_expression, - STATE(4000), 1, + STATE(1770), 1, + sym_call, + STATE(1955), 1, sym_selector_expression, - STATE(5108), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130185,18 +138972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130204,7 +138991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130221,51 +139008,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98442] = 26, - ACTIONS(486), 1, + [103433] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1391), 1, + ACTIONS(213), 1, sym_identifier, - ACTIONS(1395), 1, + ACTIONS(217), 1, anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + STATE(1411), 1, sym_call, - STATE(4370), 1, + STATE(1730), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5204), 1, + STATE(2127), 1, sym_expression, - STATE(6002), 1, + STATE(2191), 1, + sym_selector_expression, + STATE(5137), 1, + sym_dotted_name, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(750), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130274,18 +139061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130293,7 +139080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130310,51 +139097,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98557] = 26, - ACTIONS(257), 1, + [103548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3185), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(263), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [103617] = 26, + ACTIONS(143), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(3049), 1, sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2360), 1, + STATE(926), 1, sym_primary_expression, - STATE(2407), 1, + STATE(1770), 1, sym_call, - STATE(5113), 1, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5188), 1, + STATE(5279), 1, sym_expression, - STATE(6187), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130363,18 +139216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130382,7 +139235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130399,51 +139252,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98672] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + [103732] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(159), 1, sym_float, - STATE(3796), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(928), 1, sym_primary_expression, - STATE(4000), 1, + STATE(1770), 1, + sym_call, + STATE(1955), 1, sym_selector_expression, - STATE(5108), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130452,18 +139305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130471,7 +139324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130488,51 +139341,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98787] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + [103847] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(279), 1, sym_float, - STATE(3777), 1, - sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, - sym_primary_expression, - STATE(4000), 1, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(3253), 1, + anon_sym_not, + STATE(2371), 1, sym_selector_expression, - STATE(5108), 1, + STATE(2404), 1, + sym_primary_expression, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130541,18 +139394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130560,7 +139413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130577,51 +139430,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [98902] = 26, - ACTIONS(257), 1, + [103962] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(267), 1, - anon_sym_DQUOTE, ACTIONS(273), 1, + anon_sym_DQUOTE, + ACTIONS(279), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2915), 1, sym_identifier, - STATE(2352), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2361), 1, + STATE(2404), 1, sym_primary_expression, - STATE(2407), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5250), 1, sym_expression, - STATE(6187), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130630,18 +139483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130649,7 +139502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130666,51 +139519,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99017] = 26, - ACTIONS(257), 1, + [104077] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(850), 1, + ACTIONS(3255), 1, sym_identifier, - ACTIONS(854), 1, - anon_sym_not, - STATE(2313), 1, + STATE(3948), 1, + sym_call, + STATE(3951), 1, sym_primary_expression, - STATE(2328), 1, + STATE(4245), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(3690), 1, - sym_expression, - STATE(5009), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130719,18 +139572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2543), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130738,7 +139591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130755,51 +139608,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99132] = 26, - ACTIONS(480), 1, + [104192] = 26, + ACTIONS(512), 1, sym_identifier, - ACTIONS(486), 1, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(494), 1, + ACTIONS(526), 1, anon_sym_not, - ACTIONS(496), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(3608), 1, - sym_primary_expression, - STATE(3618), 1, + STATE(2631), 1, sym_expression, - STATE(3663), 1, - sym_call, - STATE(3832), 1, + STATE(2719), 1, + sym_primary_expression, + STATE(2736), 1, sym_selector_expression, - STATE(5122), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130808,18 +139661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130827,7 +139680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130844,51 +139697,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99247] = 26, - ACTIONS(714), 1, + [104307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3189), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(720), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [104376] = 26, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(846), 1, anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(1411), 1, sym_call, - STATE(4214), 1, + STATE(2225), 1, + sym_primary_expression, + STATE(2270), 1, sym_selector_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5076), 1, + STATE(3413), 1, sym_expression, - STATE(6132), 1, + STATE(5185), 1, + sym_dotted_name, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130897,18 +139816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -130916,7 +139835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -130933,51 +139852,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99362] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [104491] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(3608), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(933), 1, sym_primary_expression, - STATE(3609), 1, - sym_expression, - STATE(3663), 1, + STATE(1770), 1, sym_call, - STATE(3832), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5122), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -130986,18 +139905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131005,7 +139924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131022,51 +139941,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99477] = 26, - ACTIONS(135), 1, + [104606] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(181), 1, + ACTIONS(3255), 1, sym_identifier, - ACTIONS(185), 1, - anon_sym_not, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - STATE(1064), 1, + STATE(3895), 1, sym_primary_expression, - STATE(1385), 1, - sym_expression, - STATE(1901), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(3948), 1, sym_call, - STATE(5065), 1, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131075,18 +139994,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2147), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131094,7 +140013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131111,51 +140030,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99592] = 26, - ACTIONS(534), 1, + [104721] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(3255), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(3257), 1, anon_sym_not, - STATE(3716), 1, + STATE(3895), 1, sym_primary_expression, - STATE(3719), 1, + STATE(3948), 1, sym_call, - STATE(3727), 1, + STATE(4245), 1, sym_selector_expression, - STATE(5075), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5094), 1, + STATE(5275), 1, sym_expression, - STATE(6118), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131164,18 +140083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131183,7 +140102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131200,51 +140119,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99707] = 26, - ACTIONS(93), 1, + [104836] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(121), 1, - sym_identifier, - ACTIONS(125), 1, - anon_sym_not, - ACTIONS(193), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(1080), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(914), 1, sym_primary_expression, - STATE(1474), 1, - sym_expression, - STATE(1659), 1, + STATE(1770), 1, sym_call, - STATE(1897), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5071), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131253,18 +140172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2151), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131272,7 +140191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131289,51 +140208,120 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99822] = 26, - ACTIONS(480), 1, - sym_identifier, - ACTIONS(486), 1, + [104951] = 4, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(492), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [105022] = 27, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(496), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - STATE(3603), 1, - sym_expression, - STATE(3608), 1, - sym_primary_expression, - STATE(3663), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(3259), 1, + sym_identifier, + STATE(3968), 1, sym_call, - STATE(3832), 1, + STATE(3976), 1, + sym_primary_expression, + STATE(4396), 1, sym_selector_expression, - STATE(5122), 1, + STATE(4510), 1, + sym_schema_instantiation, + STATE(5040), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5173), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131342,18 +140330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131361,9 +140349,8 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4257), 15, sym_schema_expr, - sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -131378,51 +140365,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [99937] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [105139] = 9, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3261), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 24, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, + ACTIONS(2276), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, + [105220] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(756), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - STATE(76), 1, - sym_expression, - STATE(2287), 1, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3877), 1, sym_primary_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(3948), 1, sym_call, - STATE(4999), 1, + STATE(4181), 1, + sym_selector_expression, + STATE(4923), 1, + sym_expression, + STATE(5125), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131431,18 +140490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131450,7 +140509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131467,51 +140526,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100052] = 26, - ACTIONS(480), 1, + [105335] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(486), 1, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(494), 1, - anon_sym_not, - ACTIONS(496), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - STATE(3608), 1, + STATE(3877), 1, sym_primary_expression, - STATE(3642), 1, - sym_expression, - STATE(3663), 1, + STATE(3948), 1, sym_call, - STATE(3832), 1, + STATE(4181), 1, sym_selector_expression, - STATE(5122), 1, + STATE(4922), 1, + sym_expression, + STATE(5125), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131520,18 +140579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131539,7 +140598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131556,51 +140615,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100167] = 26, - ACTIONS(480), 1, + [105450] = 26, + ACTIONS(456), 1, sym_identifier, - ACTIONS(486), 1, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(494), 1, + ACTIONS(470), 1, anon_sym_not, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3594), 1, - sym_expression, - STATE(3608), 1, + STATE(3583), 1, sym_primary_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3832), 1, + STATE(3756), 1, sym_selector_expression, - STATE(5122), 1, + STATE(3792), 1, + sym_expression, + STATE(5214), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131609,18 +140668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4009), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131628,7 +140687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131645,51 +140704,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100282] = 26, - ACTIONS(257), 1, + [105565] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(2843), 1, - sym_identifier, - ACTIONS(2845), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2352), 1, - sym_selector_expression, - STATE(2386), 1, + ACTIONS(3049), 1, + sym_identifier, + STATE(935), 1, sym_primary_expression, - STATE(2407), 1, + STATE(1770), 1, sym_call, - STATE(5113), 1, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5279), 1, sym_expression, - STATE(6187), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131698,18 +140757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131717,7 +140776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131734,51 +140793,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100397] = 26, - ACTIONS(390), 1, + [105680] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1160), 1, anon_sym_not, - STATE(3460), 1, + STATE(3482), 1, sym_call, - STATE(3464), 1, + STATE(3533), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3628), 1, sym_selector_expression, - STATE(5018), 1, - sym_dotted_name, - STATE(5147), 1, + STATE(5098), 1, sym_expression, - STATE(6057), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131792,13 +140851,13 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131806,7 +140865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131823,119 +140882,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100512] = 5, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 27, - sym__newline, - 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(191), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [100585] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + [105795] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3432), 1, - sym_primary_expression, - STATE(3453), 1, - sym_expression, - STATE(3460), 1, - sym_call, - STATE(3558), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(5136), 1, + STATE(3593), 1, + sym_call, + STATE(3623), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -131944,18 +140935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -131963,7 +140954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -131980,51 +140971,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100700] = 26, - ACTIONS(390), 1, + [105910] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, sym_call, - STATE(3464), 1, + STATE(3624), 1, sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5148), 1, + STATE(5281), 1, sym_expression, - STATE(6057), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132033,18 +141024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132052,7 +141043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132069,51 +141060,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100815] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + [106025] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3426), 1, - sym_expression, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3558), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(5136), 1, + STATE(3593), 1, + sym_call, + STATE(3625), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132122,18 +141113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132141,7 +141132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132158,135 +141149,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [100930] = 21, - ACTIONS(2369), 1, + [106140] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, + anon_sym_LBRACE, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - ACTIONS(2749), 1, - anon_sym_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP, - ACTIONS(2753), 1, - anon_sym_CARET, - ACTIONS(2809), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2813), 1, - anon_sym_is, - STATE(2059), 1, - sym_argument_list, - STATE(3248), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(3626), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2745), 2, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2747), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2807), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [101035] = 26, - ACTIONS(510), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [106255] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(654), 1, - sym_identifier, - ACTIONS(658), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, sym_call, - STATE(2850), 1, + STATE(3630), 1, sym_primary_expression, - STATE(2859), 1, - sym_expression, - STATE(3017), 1, - sym_selector_expression, - STATE(5087), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132295,18 +141291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132314,7 +141310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132331,51 +141327,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101150] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + [106370] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3430), 1, - sym_expression, - STATE(3432), 1, - sym_primary_expression, - STATE(3460), 1, - sym_call, - STATE(3558), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(5136), 1, + STATE(3593), 1, + sym_call, + STATE(3633), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132384,18 +141380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132403,7 +141399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132420,51 +141416,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101265] = 26, - ACTIONS(390), 1, + [106485] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3263), 1, sym_identifier, - STATE(3460), 1, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, sym_call, - STATE(3464), 1, + STATE(3634), 1, sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4858), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5097), 1, + STATE(5281), 1, sym_expression, - STATE(6057), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132473,18 +141469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132492,7 +141488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132509,51 +141505,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101380] = 26, - ACTIONS(384), 1, + [106600] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(398), 1, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(3432), 1, - sym_primary_expression, - STATE(3458), 1, + STATE(877), 1, sym_expression, - STATE(3460), 1, + STATE(879), 1, sym_call, - STATE(3558), 1, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5146), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132562,18 +141558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132581,7 +141577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132598,51 +141594,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101495] = 26, - ACTIONS(384), 1, - sym_identifier, - ACTIONS(390), 1, + [106715] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(398), 1, - anon_sym_not, - ACTIONS(400), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(3432), 1, - sym_primary_expression, - STATE(3433), 1, - sym_expression, - STATE(3460), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3558), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5136), 1, + STATE(5105), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132651,18 +141647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3592), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132670,7 +141666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132687,19 +141683,16 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101610] = 5, - ACTIONS(2777), 1, - anon_sym_if, + [106830] = 4, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 27, + ACTIONS(2768), 27, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -132724,12 +141717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 30, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -132755,51 +141750,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [101683] = 26, - ACTIONS(390), 1, + [106901] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(604), 1, sym_primary_expression, - STATE(3508), 1, + STATE(643), 1, + sym_expression, + STATE(860), 1, + sym_call, + STATE(946), 1, sym_selector_expression, - STATE(4865), 1, + STATE(5236), 1, sym_dotted_name, - STATE(5152), 1, - sym_expression, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132808,18 +141803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132827,7 +141822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132844,51 +141839,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101798] = 26, - ACTIONS(530), 1, + [107016] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(542), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(544), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - STATE(3581), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, sym_call, - STATE(3835), 1, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, sym_selector_expression, - STATE(5121), 1, + STATE(5088), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5189), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132897,18 +141892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -132916,7 +141911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -132933,51 +141928,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [101913] = 26, - ACTIONS(390), 1, + [107131] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2941), 1, sym_identifier, - STATE(3460), 1, + STATE(1411), 1, sym_call, - STATE(3464), 1, + STATE(1562), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1710), 1, sym_selector_expression, - STATE(4854), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5098), 1, + STATE(5254), 1, sym_expression, - STATE(6057), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -132986,18 +141981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133005,7 +142000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133022,51 +142017,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102028] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(534), 1, + [107246] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(544), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(3570), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(3835), 1, + STATE(1564), 1, + sym_primary_expression, + STATE(1710), 1, sym_selector_expression, - STATE(5121), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133075,18 +142070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133094,7 +142089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133111,51 +142106,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102143] = 26, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(161), 1, + [107361] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3191), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(165), 1, - anon_sym_lambda, - ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(169), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3193), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [107430] = 26, + ACTIONS(169), 1, + anon_sym_LPAREN, ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(1125), 1, + ACTIONS(842), 1, + sym_identifier, + ACTIONS(846), 1, + anon_sym_not, + STATE(1411), 1, + sym_call, + STATE(2225), 1, sym_primary_expression, - STATE(1502), 1, - sym_expression, - STATE(1878), 1, + STATE(2270), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5096), 1, + STATE(3400), 1, + sym_expression, + STATE(5185), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(173), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133164,18 +142225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2154), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133183,7 +142244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133200,51 +142261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102258] = 26, - ACTIONS(67), 1, + [107545] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(113), 1, - sym_identifier, - ACTIONS(117), 1, - anon_sym_not, - ACTIONS(197), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(1127), 1, - sym_primary_expression, - STATE(1510), 1, - sym_expression, - STATE(1533), 1, + STATE(879), 1, sym_call, - STATE(2098), 1, + STATE(891), 1, + sym_expression, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, sym_selector_expression, - STATE(5107), 1, + STATE(5146), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133253,18 +142314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2155), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133272,7 +142333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133289,51 +142350,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102373] = 26, - ACTIONS(530), 1, + [107660] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(542), 1, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(544), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(3695), 1, + STATE(879), 1, + sym_call, + STATE(915), 1, sym_expression, - STATE(3717), 1, + STATE(1003), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3835), 1, + STATE(1322), 1, sym_selector_expression, - STATE(5121), 1, + STATE(5146), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133342,18 +142403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133361,7 +142422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133378,51 +142439,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102488] = 26, - ACTIONS(486), 1, + [107775] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(2941), 1, sym_identifier, - STATE(3657), 1, - sym_primary_expression, - STATE(3663), 1, + STATE(1411), 1, sym_call, - STATE(3781), 1, + STATE(1565), 1, + sym_primary_expression, + STATE(1710), 1, sym_selector_expression, - STATE(4778), 1, - sym_expression, - STATE(5123), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133431,18 +142492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133450,7 +142511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133467,51 +142528,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102603] = 26, - ACTIONS(530), 1, - sym_identifier, - ACTIONS(534), 1, + [107890] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(542), 1, - anon_sym_not, - ACTIONS(544), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(3616), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(3835), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5121), 1, + STATE(4924), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5115), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133520,18 +142581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133539,7 +142600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133556,51 +142617,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102718] = 26, - ACTIONS(530), 1, + [108005] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(534), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(542), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(544), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - STATE(3587), 1, - sym_expression, - STATE(3717), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, sym_call, - STATE(3835), 1, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, sym_selector_expression, - STATE(5121), 1, + STATE(5021), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133609,18 +142670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4019), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133628,7 +142689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133645,51 +142706,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102833] = 26, - ACTIONS(390), 1, + [108120] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(3464), 1, + STATE(1633), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1710), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5100), 1, + STATE(5254), 1, sym_expression, - STATE(6057), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133698,18 +142759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133717,7 +142778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133734,51 +142795,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [102948] = 26, - ACTIONS(390), 1, + [108235] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, + STATE(879), 1, sym_call, - STATE(3464), 1, + STATE(937), 1, + sym_expression, + STATE(1003), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1322), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5146), 1, sym_dotted_name, - STATE(5102), 1, - sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133787,18 +142848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133806,7 +142867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133823,51 +142884,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103063] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [108350] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, - sym_primary_expression, - STATE(3951), 1, - sym_expression, - STATE(4082), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(4242), 1, + STATE(1665), 1, + sym_primary_expression, + STATE(1710), 1, sym_selector_expression, - STATE(5026), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -133876,18 +142937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -133895,7 +142956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -133912,120 +142973,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103178] = 6, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(2775), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 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(2445), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [103253] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [108465] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, - sym_primary_expression, - STATE(3955), 1, + ACTIONS(662), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_not, + STATE(3876), 1, sym_expression, - STATE(4082), 1, - sym_call, - STATE(4242), 1, + STATE(3901), 1, + sym_primary_expression, + STATE(3975), 1, sym_selector_expression, - STATE(5026), 1, + STATE(4216), 1, + sym_call, + STATE(5164), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134034,18 +143026,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134053,7 +143045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134070,51 +143062,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103368] = 26, - ACTIONS(510), 1, + [108580] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(3255), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_not, - STATE(102), 1, - sym_expression, - STATE(2396), 1, - sym_call, - STATE(2850), 1, + STATE(3933), 1, sym_primary_expression, - STATE(3017), 1, + STATE(3948), 1, + sym_call, + STATE(4245), 1, sym_selector_expression, - STATE(5087), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134123,18 +143115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134142,7 +143134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134159,51 +143151,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103483] = 26, - ACTIONS(564), 1, + [108695] = 26, + ACTIONS(648), 1, anon_sym_lambda, - ACTIONS(576), 1, + ACTIONS(660), 1, sym_string_start, - ACTIONS(734), 1, + ACTIONS(756), 1, anon_sym_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2617), 1, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(3255), 1, sym_identifier, - STATE(3749), 1, + STATE(3934), 1, sym_primary_expression, - STATE(3807), 1, + STATE(3948), 1, sym_call, - STATE(3943), 1, + STATE(4245), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5275), 1, sym_expression, - STATE(5996), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(4239), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134212,18 +143204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134231,7 +143223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134248,51 +143240,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103598] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + [108810] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(2763), 1, - sym_identifier, - ACTIONS(2847), 1, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - STATE(3749), 1, - sym_primary_expression, - STATE(3807), 1, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(3943), 1, + STATE(1710), 1, sym_selector_expression, - STATE(5113), 1, + STATE(1885), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5254), 1, sym_expression, - STATE(5996), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134301,18 +143293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134320,7 +143312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134337,51 +143329,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103713] = 26, - ACTIONS(251), 1, - sym_identifier, - ACTIONS(257), 1, + [108925] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(2287), 1, - sym_primary_expression, - STATE(2306), 1, - sym_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(4999), 1, + STATE(1710), 1, + sym_selector_expression, + STATE(1886), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134390,18 +143382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134409,7 +143401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134426,51 +143418,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103828] = 26, - ACTIONS(710), 1, + [109040] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3195), 27, + sym__newline, + 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(3197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(714), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [109109] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3821), 1, sym_primary_expression, - STATE(3962), 1, - sym_expression, - STATE(4082), 1, + STATE(4216), 1, sym_call, - STATE(4242), 1, - sym_selector_expression, - STATE(5026), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134479,18 +143537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134498,7 +143556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134515,51 +143573,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [103943] = 26, - ACTIONS(257), 1, + [109224] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2363), 1, + STATE(2791), 1, sym_primary_expression, - STATE(2407), 1, + STATE(2861), 1, + sym_selector_expression, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5249), 1, sym_expression, - STATE(6187), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134568,18 +143626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134587,7 +143645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134604,51 +143662,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104058] = 26, - ACTIONS(710), 1, + [109339] = 4, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 27, + sym__newline, + 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(2770), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_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(714), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [109410] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(3869), 1, - sym_expression, - STATE(3872), 1, - sym_primary_expression, - STATE(4082), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(4242), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5026), 1, + STATE(5080), 1, + sym_expression, + STATE(5192), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134657,18 +143782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134676,7 +143801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134693,51 +143818,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104173] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + [109525] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(83), 1, sym_float, - STATE(3807), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(792), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(860), 1, sym_call, - STATE(3825), 1, + STATE(1905), 1, sym_primary_expression, - STATE(4004), 1, + STATE(2224), 1, sym_selector_expression, - STATE(4836), 1, + STATE(3343), 1, sym_expression, - STATE(5150), 1, + STATE(5221), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134746,18 +143871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134765,7 +143890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134782,51 +143907,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104288] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + [109640] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(159), 1, sym_float, - STATE(3807), 1, - sym_call, - STATE(3825), 1, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(189), 1, + sym_identifier, + ACTIONS(193), 1, + anon_sym_not, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(864), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(4004), 1, + STATE(1662), 1, sym_selector_expression, - STATE(4840), 1, - sym_expression, - STATE(5150), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134835,18 +143960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134854,7 +143979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134871,51 +143996,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104403] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(2617), 1, + [109755] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, - anon_sym_DQUOTE, - ACTIONS(2629), 1, - sym_float, - STATE(3773), 1, - sym_expression, - STATE(3807), 1, + ACTIONS(792), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(860), 1, sym_call, - STATE(3841), 1, + STATE(1905), 1, sym_primary_expression, - STATE(4000), 1, + STATE(2224), 1, sym_selector_expression, - STATE(5108), 1, + STATE(3345), 1, + sym_expression, + STATE(5221), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -134924,18 +144049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -134943,7 +144068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -134960,51 +144085,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104518] = 26, - ACTIONS(710), 1, - sym_identifier, - ACTIONS(714), 1, + [109870] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_not, - ACTIONS(724), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(3872), 1, - sym_primary_expression, - STATE(3971), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(258), 1, sym_expression, - STATE(4082), 1, + STATE(2373), 1, + sym_primary_expression, + STATE(2436), 1, sym_call, - STATE(4242), 1, + STATE(2594), 1, sym_selector_expression, - STATE(5026), 1, + STATE(5215), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135013,18 +144138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4249), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135032,7 +144157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135049,51 +144174,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104633] = 26, - ACTIONS(257), 1, + [109985] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(792), 1, sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2367), 1, - sym_primary_expression, - STATE(2407), 1, + ACTIONS(798), 1, + anon_sym_not, + STATE(860), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5169), 1, + STATE(1905), 1, + sym_primary_expression, + STATE(2224), 1, + sym_selector_expression, + STATE(3348), 1, sym_expression, - STATE(6187), 1, + STATE(5221), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135102,18 +144227,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2264), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135121,7 +144246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135138,51 +144263,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104748] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110100] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(842), 1, sym_identifier, - STATE(3723), 1, - sym_primary_expression, - STATE(3807), 1, + ACTIONS(846), 1, + anon_sym_not, + STATE(1411), 1, sym_call, - STATE(3943), 1, + STATE(2225), 1, + sym_primary_expression, + STATE(2270), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5200), 1, + STATE(3395), 1, sym_expression, - STATE(5996), 1, + STATE(5185), 1, + sym_dotted_name, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135191,18 +144316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2276), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135210,7 +144335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135227,51 +144352,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104863] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110215] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2913), 1, sym_identifier, - STATE(3787), 1, - sym_primary_expression, - STATE(3807), 1, - sym_call, - STATE(3943), 1, + STATE(2428), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2436), 1, + sym_call, + STATE(3183), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5251), 1, sym_expression, - STATE(5996), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135280,18 +144405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135299,7 +144424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135316,51 +144441,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [104978] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110330] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1084), 1, sym_identifier, - STATE(3802), 1, + ACTIONS(1090), 1, + anon_sym_not, + STATE(207), 1, + sym_expression, + STATE(2373), 1, sym_primary_expression, - STATE(3807), 1, + STATE(2436), 1, sym_call, - STATE(3943), 1, + STATE(2594), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5215), 1, sym_dotted_name, - STATE(5200), 1, - sym_expression, - STATE(5996), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135369,18 +144494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135388,7 +144513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135405,51 +144530,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105093] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110445] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2913), 1, sym_identifier, - STATE(3807), 1, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, sym_call, - STATE(3822), 1, + STATE(3186), 1, sym_primary_expression, - STATE(3943), 1, - sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5251), 1, sym_expression, - STATE(5996), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135458,18 +144583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135477,7 +144602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135494,51 +144619,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105208] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110560] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2913), 1, sym_identifier, - STATE(3807), 1, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, sym_call, - STATE(3824), 1, + STATE(3188), 1, sym_primary_expression, - STATE(3943), 1, - sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5251), 1, sym_expression, - STATE(5996), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135547,18 +144672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135566,7 +144691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135583,51 +144708,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105323] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110675] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2913), 1, sym_identifier, - STATE(3807), 1, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, sym_call, - STATE(3826), 1, + STATE(3189), 1, sym_primary_expression, - STATE(3943), 1, - sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5251), 1, sym_expression, - STATE(5996), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135636,18 +144761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135655,7 +144780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135672,51 +144797,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105438] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [110790] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2913), 1, sym_identifier, - STATE(3807), 1, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, sym_call, - STATE(3827), 1, + STATE(3190), 1, sym_primary_expression, - STATE(3943), 1, - sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5251), 1, sym_expression, - STATE(5996), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135725,18 +144850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135744,7 +144869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135761,51 +144886,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105553] = 26, - ACTIONS(257), 1, + [110905] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2368), 1, - sym_primary_expression, - STATE(2407), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5169), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, + sym_selector_expression, + STATE(5181), 1, sym_expression, - STATE(6187), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135814,18 +144939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135833,7 +144958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135850,51 +144975,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105668] = 26, - ACTIONS(257), 1, + [111020] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_primary_expression, - STATE(2380), 1, - sym_expression, - STATE(2407), 1, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(2660), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5040), 1, + STATE(4979), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5142), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135903,18 +145028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -135922,7 +145047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -135939,51 +145064,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105783] = 26, - ACTIONS(257), 1, + [111135] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(2352), 1, + STATE(2428), 1, sym_selector_expression, - STATE(2369), 1, - sym_primary_expression, - STATE(2407), 1, + STATE(2436), 1, sym_call, - STATE(5113), 1, + STATE(3191), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5251), 1, sym_expression, - STATE(6187), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -135992,18 +145117,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136011,7 +145136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136028,51 +145153,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [105898] = 26, - ACTIONS(257), 1, + [111250] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_primary_expression, - STATE(2378), 1, - sym_expression, - STATE(2407), 1, + ACTIONS(700), 1, + sym_identifier, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, sym_call, - STATE(2660), 1, + STATE(3180), 1, + sym_expression, + STATE(3196), 1, + sym_primary_expression, + STATE(3215), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5244), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136081,18 +145206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136100,7 +145225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136117,51 +145242,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106013] = 26, - ACTIONS(251), 1, + [111365] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(257), 1, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(265), 1, - anon_sym_not, - ACTIONS(267), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - STATE(2287), 1, + STATE(3877), 1, sym_primary_expression, - STATE(2308), 1, - sym_expression, - STATE(2329), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(3948), 1, sym_call, - STATE(4999), 1, + STATE(4181), 1, + sym_selector_expression, + STATE(4940), 1, + sym_expression, + STATE(5125), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2458), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(269), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136170,18 +145295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2558), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136189,7 +145314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136206,135 +145331,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106128] = 21, - ACTIONS(2633), 1, + [111480] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2637), 1, - anon_sym_STAR_STAR, - ACTIONS(2639), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2651), 1, - anon_sym_AMP, - ACTIONS(2653), 1, - anon_sym_CARET, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_not, - ACTIONS(2771), 1, - anon_sym_is, - STATE(2195), 1, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + STATE(2160), 1, sym_argument_list, - STATE(3249), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2647), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2649), 2, + ACTIONS(1940), 21, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2655), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2765), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2769), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 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(2365), 25, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [106233] = 26, - ACTIONS(257), 1, + [111563] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_primary_expression, - STATE(2377), 1, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(260), 1, sym_expression, - STATE(2407), 1, + STATE(2373), 1, + sym_primary_expression, + STATE(2436), 1, sym_call, - STATE(2660), 1, + STATE(2594), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5215), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136343,18 +145457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136362,7 +145476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136379,51 +145493,199 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106348] = 26, - ACTIONS(257), 1, + [111678] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 21, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(267), 1, + anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(1942), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(440), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [111761] = 12, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2843), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2370), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [111848] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, + anon_sym_LPAREN, + ACTIONS(2951), 1, + anon_sym_LBRACK, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, + anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + STATE(2760), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(2407), 1, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(2884), 1, + sym_selector_expression, + STATE(5140), 1, sym_dotted_name, - STATE(5169), 1, - sym_expression, - STATE(6187), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136432,18 +145694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136451,7 +145713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136468,51 +145730,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106463] = 26, - ACTIONS(257), 1, + [111963] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(374), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(378), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(438), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_primary_expression, - STATE(2357), 1, + STATE(574), 1, sym_expression, - STATE(2407), 1, + STATE(603), 1, + sym_primary_expression, + STATE(879), 1, sym_call, - STATE(2660), 1, + STATE(1004), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5230), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136521,18 +145783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136540,7 +145802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136557,51 +145819,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106578] = 26, - ACTIONS(257), 1, + [112078] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(374), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(378), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(438), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, + STATE(603), 1, sym_primary_expression, - STATE(2375), 1, + STATE(723), 1, sym_expression, - STATE(2407), 1, + STATE(879), 1, sym_call, - STATE(2660), 1, + STATE(1004), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5230), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136610,18 +145872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136629,7 +145891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136646,51 +145908,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106693] = 26, - ACTIONS(257), 1, + [112193] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1160), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2919), 1, sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2371), 1, - sym_primary_expression, - STATE(2407), 1, + STATE(3482), 1, sym_call, - STATE(5113), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, + sym_selector_expression, + STATE(4988), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5084), 1, sym_expression, - STATE(6187), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136699,18 +145961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136718,7 +145980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136735,51 +145997,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106808] = 26, - ACTIONS(257), 1, + [112308] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2843), 1, - sym_identifier, - STATE(2352), 1, - sym_selector_expression, - STATE(2372), 1, + STATE(107), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(2407), 1, + STATE(2850), 1, sym_call, - STATE(5113), 1, + STATE(2879), 1, + sym_selector_expression, + STATE(5191), 1, sym_dotted_name, - STATE(5169), 1, - sym_expression, - STATE(6187), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136788,18 +146050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136807,7 +146069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136824,30 +146086,21 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [106923] = 10, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2637), 1, - anon_sym_STAR_STAR, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [112423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, + ACTIONS(3199), 27, + sym__newline, + 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, @@ -136863,14 +146116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2574), 32, + ACTIONS(3201), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -136897,51 +146152,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [107006] = 26, - ACTIONS(135), 1, + [112492] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2643), 1, - sym_identifier, - STATE(873), 1, + STATE(2782), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(1880), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(2884), 1, + sym_selector_expression, + STATE(5140), 1, sym_dotted_name, - STATE(5165), 1, - sym_expression, - STATE(5990), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(187), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -136950,18 +146205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -136969,7 +146224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -136986,119 +146241,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [107121] = 5, - ACTIONS(2849), 1, - anon_sym_EQ, - STATE(1561), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 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(2560), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [112607] = 26, + ACTIONS(616), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [107194] = 26, - ACTIONS(564), 1, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(576), 1, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, sym_string_start, - ACTIONS(734), 1, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(2961), 1, sym_float, - STATE(3807), 1, - sym_call, - STATE(3825), 1, + STATE(2789), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(4004), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, sym_selector_expression, - STATE(4892), 1, - sym_expression, - STATE(5150), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137107,18 +146294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137126,7 +146313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137143,120 +146330,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [107309] = 6, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(2775), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 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(2449), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [112722] = 26, + ACTIONS(163), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [107384] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, - anon_sym_not, - STATE(3874), 1, - sym_call, - STATE(4011), 1, - sym_expression, - STATE(4043), 1, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + STATE(994), 1, sym_primary_expression, - STATE(4224), 1, + STATE(1278), 1, sym_selector_expression, - STATE(4990), 1, + STATE(1411), 1, + sym_call, + STATE(1757), 1, + sym_expression, + STATE(5224), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137265,18 +146383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137284,7 +146402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137301,51 +146419,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [107499] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + [112837] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(2763), 1, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3265), 1, sym_identifier, - STATE(3807), 1, - sym_call, - STATE(3843), 1, + STATE(975), 1, sym_primary_expression, - STATE(3943), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5200), 1, + STATE(5265), 1, sym_expression, - STATE(5996), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137354,18 +146472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137373,7 +146491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137390,51 +146508,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [107614] = 26, - ACTIONS(564), 1, + [112952] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(576), 1, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, sym_string_start, - ACTIONS(734), 1, + ACTIONS(732), 1, anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2617), 1, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(2763), 1, - sym_identifier, - STATE(3807), 1, - sym_call, - STATE(3830), 1, + STATE(2802), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(3943), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5162), 1, - sym_expression, - STATE(5996), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137443,18 +146561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4164), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137462,7 +146580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137479,135 +146597,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [107729] = 21, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2409), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - ACTIONS(2677), 1, - anon_sym_PIPE, - ACTIONS(2679), 1, - anon_sym_AMP, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2785), 1, - anon_sym_not, - ACTIONS(2789), 1, - anon_sym_is, - STATE(2083), 1, - sym_argument_list, - STATE(3241), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2673), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2675), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2683), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2783), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym__newline, - 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(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - sym_integer, + [113067] = 26, + ACTIONS(456), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [107834] = 26, - ACTIONS(486), 1, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, - anon_sym_not, - ACTIONS(1299), 1, - sym_identifier, - STATE(3657), 1, + STATE(3583), 1, sym_primary_expression, - STATE(3663), 1, + STATE(3593), 1, sym_call, - STATE(3781), 1, - sym_selector_expression, - STATE(4922), 1, + STATE(3641), 1, sym_expression, - STATE(5123), 1, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137616,18 +146650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(3845), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137635,7 +146669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137652,51 +146686,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [107949] = 26, - ACTIONS(390), 1, + [113182] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(3265), 1, + sym_identifier, + STATE(977), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, sym_selector_expression, - STATE(4848), 1, - sym_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137705,18 +146739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137724,7 +146758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137741,51 +146775,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108064] = 26, - ACTIONS(486), 1, + [113297] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(3265), 1, sym_identifier, - STATE(3657), 1, + STATE(979), 1, sym_primary_expression, - STATE(3663), 1, + STATE(1411), 1, sym_call, - STATE(3781), 1, + STATE(1710), 1, sym_selector_expression, - STATE(5003), 1, - sym_expression, - STATE(5123), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137794,18 +146828,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137813,7 +146847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137830,124 +146864,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108179] = 10, - ACTIONS(2407), 1, + [113412] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2409), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2417), 1, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - ACTIONS(2437), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2671), 1, - anon_sym_STAR_STAR, - STATE(2083), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3877), 1, + sym_primary_expression, + STATE(3948), 1, + sym_call, + STATE(4181), 1, + sym_selector_expression, + STATE(4942), 1, + sym_expression, + STATE(5125), 1, + sym_dotted_name, + STATE(6173), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 22, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(4328), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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(2574), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4342), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108262] = 26, - ACTIONS(93), 1, + STATE(4327), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [113527] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2663), 1, + ACTIONS(3265), 1, sym_identifier, - STATE(921), 1, + STATE(980), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(1411), 1, sym_call, - STATE(5113), 1, + STATE(1710), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5173), 1, + STATE(5265), 1, sym_expression, - STATE(5982), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(127), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -137956,18 +147006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -137975,7 +147025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -137992,119 +147042,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108377] = 5, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 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(2453), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [108450] = 26, - ACTIONS(257), 1, + [113642] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(378), 1, - anon_sym_not, - ACTIONS(438), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(2351), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3265), 1, + sym_identifier, + STATE(981), 1, sym_primary_expression, - STATE(2373), 1, - sym_expression, - STATE(2407), 1, + STATE(1411), 1, sym_call, - STATE(2660), 1, + STATE(1710), 1, sym_selector_expression, - STATE(5040), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6187), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138113,18 +147095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2691), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138132,7 +147114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138149,51 +147131,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108565] = 26, - ACTIONS(257), 1, + [113757] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(842), 1, + ACTIONS(1345), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(1351), 1, anon_sym_not, - STATE(2399), 1, + STATE(243), 1, + sym_expression, + STATE(2656), 1, sym_primary_expression, - STATE(2407), 1, + STATE(2751), 1, sym_call, - STATE(2505), 1, + STATE(2755), 1, sym_selector_expression, - STATE(3831), 1, - sym_expression, - STATE(5000), 1, + STATE(5210), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138202,18 +147184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(2997), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138221,7 +147203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138238,51 +147220,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108680] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [113872] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - STATE(3874), 1, - sym_call, - STATE(4021), 1, - sym_expression, - STATE(4043), 1, + ACTIONS(3265), 1, + sym_identifier, + STATE(982), 1, sym_primary_expression, - STATE(4224), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, sym_selector_expression, - STATE(4990), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138291,18 +147273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138310,7 +147292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138327,119 +147309,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108795] = 5, - ACTIONS(2851), 1, - anon_sym_EQ, - STATE(784), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 27, - sym__newline, - 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(2560), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [108868] = 26, - ACTIONS(390), 1, + [113987] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(2945), 1, + sym_identifier, + STATE(2354), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2428), 1, sym_selector_expression, - STATE(4955), 1, - sym_expression, - STATE(5018), 1, + STATE(2436), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138448,18 +147362,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138467,7 +147381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138484,51 +147398,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [108983] = 26, - ACTIONS(416), 1, + [114102] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2689), 1, + ACTIONS(3265), 1, sym_identifier, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(2991), 1, + STATE(983), 1, sym_primary_expression, - STATE(5113), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5196), 1, + STATE(5265), 1, sym_expression, - STATE(5953), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(708), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138537,18 +147451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138556,7 +147470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138573,51 +147487,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109098] = 26, - ACTIONS(510), 1, + [114217] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, + STATE(950), 1, + sym_expression, + STATE(994), 1, + sym_primary_expression, + STATE(1278), 1, sym_selector_expression, - STATE(2396), 1, + STATE(1411), 1, sym_call, - STATE(2884), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5224), 1, sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138626,18 +147540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138645,7 +147559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138662,51 +147576,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109213] = 26, - ACTIONS(510), 1, + [114332] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(2839), 1, - sym_identifier, - ACTIONS(2853), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(2884), 1, + STATE(1710), 1, + sym_selector_expression, + STATE(1964), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5176), 1, + STATE(5254), 1, sym_expression, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138715,18 +147629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138734,7 +147648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138751,51 +147665,190 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109328] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [114447] = 9, + ACTIONS(139), 1, + anon_sym_if, + ACTIONS(2744), 1, + anon_sym_and, + ACTIONS(2746), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(27), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + anon_sym_DASH, + anon_sym_TILDE, sym_float, - ACTIONS(55), 1, + ACTIONS(2278), 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(2242), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114528] = 4, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, sym_string_start, - ACTIONS(219), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(664), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114599] = 26, + ACTIONS(424), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, + anon_sym_LBRACE, + ACTIONS(436), 1, anon_sym_not, - STATE(3874), 1, - sym_call, - STATE(4032), 1, + ACTIONS(438), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_float, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + STATE(87), 1, sym_expression, - STATE(4043), 1, + STATE(2369), 1, sym_primary_expression, - STATE(4224), 1, + STATE(2436), 1, + sym_call, + STATE(2458), 1, sym_selector_expression, - STATE(4990), 1, + STATE(5158), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138804,18 +147857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138823,7 +147876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138840,51 +147893,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109443] = 26, - ACTIONS(257), 1, + [114714] = 4, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114785] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(842), 1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(590), 1, anon_sym_not, - STATE(2399), 1, + STATE(3931), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(2407), 1, + STATE(3968), 1, sym_call, - STATE(2505), 1, + STATE(4250), 1, sym_selector_expression, - STATE(3816), 1, - sym_expression, - STATE(5000), 1, + STATE(5139), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138893,18 +148013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -138912,7 +148032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -138929,51 +148049,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109558] = 26, - ACTIONS(510), 1, + [114900] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(213), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(217), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + STATE(1218), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(2850), 1, + STATE(1730), 1, sym_primary_expression, - STATE(2943), 1, - sym_expression, - STATE(3017), 1, + STATE(2191), 1, sym_selector_expression, - STATE(5087), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -138982,18 +148102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139001,7 +148121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139018,140 +148138,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109673] = 26, - ACTIONS(510), 1, + [115015] = 4, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - sym_float, - ACTIONS(528), 1, - sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, - sym_call, - STATE(2905), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(662), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [109788] = 26, - ACTIONS(510), 1, + [115086] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, + STATE(56), 1, + sym_expression, + STATE(2294), 1, + sym_primary_expression, + STATE(2357), 1, sym_selector_expression, - STATE(2396), 1, + STATE(2406), 1, sym_call, - STATE(2910), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5246), 1, sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139160,18 +148258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139179,7 +148277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139196,51 +148294,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [109903] = 26, - ACTIONS(416), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, + [115201] = 26, + ACTIONS(648), 1, anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, + ACTIONS(660), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(756), 1, anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1341), 1, + ACTIONS(1389), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1393), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(3007), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3877), 1, sym_primary_expression, - STATE(3219), 1, + STATE(3948), 1, + sym_call, + STATE(4181), 1, sym_selector_expression, - STATE(4280), 1, + STATE(4919), 1, sym_expression, - STATE(5058), 1, + STATE(5125), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(4339), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139249,18 +148347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139268,7 +148366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139285,51 +148383,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110018] = 26, - ACTIONS(534), 1, + [115316] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3727), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4933), 1, - sym_expression, - STATE(5075), 1, + STATE(5220), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5226), 1, + sym_expression, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139338,18 +148436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139357,7 +148455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139374,51 +148472,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110133] = 26, - ACTIONS(510), 1, + [115431] = 4, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(516), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [115502] = 26, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(1212), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(2917), 1, + STATE(1730), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2191), 1, + sym_selector_expression, + STATE(5137), 1, sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139427,18 +148592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139446,7 +148611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139463,51 +148628,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110248] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, + [115617] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2721), 1, + anon_sym_PIPE, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 8, + sym__dedent, sym_string_start, - ACTIONS(734), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2386), 26, + anon_sym_import, anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(2617), 1, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [115720] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(185), 1, sym_float, - STATE(3807), 1, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + STATE(1211), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(3825), 1, + STATE(1730), 1, sym_primary_expression, - STATE(4004), 1, + STATE(2191), 1, sym_selector_expression, - STATE(4900), 1, - sym_expression, - STATE(5150), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139516,18 +148764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139535,7 +148783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139552,51 +148800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110363] = 26, - ACTIONS(510), 1, + [115835] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2327), 1, + STATE(2841), 1, + sym_primary_expression, + STATE(2846), 1, sym_selector_expression, - STATE(2396), 1, + STATE(2850), 1, sym_call, - STATE(2919), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5176), 1, + STATE(5276), 1, sym_expression, - STATE(5947), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139605,18 +148853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139624,7 +148872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139641,51 +148889,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110478] = 26, - ACTIONS(486), 1, + [115950] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1273), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(3657), 1, + STATE(3822), 1, sym_primary_expression, - STATE(3663), 1, + STATE(3968), 1, sym_call, - STATE(3781), 1, + STATE(4224), 1, sym_selector_expression, - STATE(4969), 1, - sym_expression, - STATE(5123), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(498), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139694,18 +148942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3939), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139713,7 +148961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139730,51 +148978,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110593] = 26, - ACTIONS(510), 1, + [116065] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, + STATE(2284), 1, + sym_expression, + STATE(2294), 1, + sym_primary_expression, + STATE(2357), 1, sym_selector_expression, - STATE(2396), 1, + STATE(2406), 1, sym_call, - STATE(2920), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5246), 1, sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139783,18 +149031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139802,7 +149050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139819,51 +149067,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110708] = 26, - ACTIONS(510), 1, + [116180] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, + STATE(2285), 1, + sym_expression, + STATE(2294), 1, + sym_primary_expression, + STATE(2357), 1, sym_selector_expression, - STATE(2396), 1, + STATE(2406), 1, sym_call, - STATE(2929), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5246), 1, sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139872,18 +149120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139891,7 +149139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139908,51 +149156,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110823] = 26, - ACTIONS(634), 1, + [116295] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3205), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(640), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [116364] = 26, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1371), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(240), 1, - sym_expression, - STATE(2840), 1, + STATE(4095), 1, sym_primary_expression, - STATE(3027), 1, + STATE(4096), 1, sym_call, - STATE(3028), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5014), 1, + STATE(5161), 1, + sym_expression, + STATE(5205), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -139961,18 +149275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -139980,7 +149294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -139997,51 +149311,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [110938] = 26, - ACTIONS(510), 1, + [116479] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, - sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(1184), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(2934), 1, + STATE(1730), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2191), 1, + sym_selector_expression, + STATE(5137), 1, sym_dotted_name, - STATE(5176), 1, - sym_expression, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140050,18 +149364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140069,7 +149383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140086,51 +149400,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111053] = 26, - ACTIONS(510), 1, + [116594] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(2327), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(2396), 1, + STATE(3593), 1, sym_call, - STATE(2938), 1, + STATE(4486), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5176), 1, + STATE(5277), 1, sym_expression, - STATE(5947), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140139,18 +149453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140158,7 +149472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140175,51 +149489,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111168] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [116709] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(287), 1, anon_sym_not, - STATE(3874), 1, - sym_call, - STATE(3895), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + STATE(2282), 1, sym_expression, - STATE(4043), 1, + STATE(2294), 1, sym_primary_expression, - STATE(4224), 1, + STATE(2357), 1, sym_selector_expression, - STATE(4990), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140228,18 +149542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140247,7 +149561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140264,51 +149578,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111283] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [116824] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(670), 1, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, anon_sym_not, - STATE(3874), 1, + ACTIONS(2939), 1, + sym_identifier, + STATE(3482), 1, sym_call, - STATE(4043), 1, + STATE(3491), 1, sym_primary_expression, - STATE(4047), 1, - sym_expression, - STATE(4224), 1, + STATE(3618), 1, sym_selector_expression, - STATE(4990), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5262), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140317,18 +149631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4339), 4, + STATE(3716), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140336,7 +149650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140353,51 +149667,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111398] = 26, - ACTIONS(67), 1, + [116939] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(794), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(798), 1, + ACTIONS(287), 1, anon_sym_not, - STATE(118), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + STATE(2280), 1, sym_expression, - STATE(779), 1, + STATE(2294), 1, sym_primary_expression, - STATE(1533), 1, - sym_call, - STATE(1614), 1, + STATE(2357), 1, sym_selector_expression, - STATE(5082), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140406,18 +149720,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140425,7 +149739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140442,51 +149756,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111513] = 26, - ACTIONS(510), 1, + [117054] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(1327), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + ACTIONS(1331), 1, + anon_sym_not, + STATE(235), 1, + sym_expression, + STATE(2350), 1, sym_call, - STATE(2940), 1, + STATE(2433), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2720), 1, + sym_selector_expression, + STATE(5231), 1, sym_dotted_name, - STATE(5182), 1, - sym_expression, - STATE(5947), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(662), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140495,18 +149809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2757), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140514,7 +149828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140531,120 +149845,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111628] = 6, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(2775), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 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(2457), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [111703] = 26, - ACTIONS(416), 1, + [117169] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1341), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(287), 1, anon_sym_not, - STATE(2365), 1, - sym_call, - STATE(3007), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + STATE(2294), 1, sym_primary_expression, - STATE(3219), 1, - sym_selector_expression, - STATE(4320), 1, + STATE(2298), 1, sym_expression, - STATE(5058), 1, + STATE(2357), 1, + sym_selector_expression, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(2455), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(708), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140653,18 +149898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3246), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140672,7 +149917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140689,51 +149934,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111818] = 26, - ACTIONS(510), 1, + [117284] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(654), 1, - sym_identifier, - ACTIONS(658), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(2850), 1, - sym_primary_expression, - STATE(2944), 1, - sym_expression, - STATE(3017), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5087), 1, + STATE(2591), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140742,18 +149987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140761,7 +150006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140778,135 +150023,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [111933] = 21, - ACTIONS(2707), 1, + [117399] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2721), 1, - anon_sym_PIPE, - ACTIONS(2723), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_CARET, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2801), 1, - anon_sym_not, - ACTIONS(2805), 1, - anon_sym_is, - STATE(2116), 1, - sym_argument_list, - STATE(3243), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2711), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2717), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2719), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2799), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2803), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - anon_sym_TILDE, + ACTIONS(83), 1, sym_float, - ACTIONS(2365), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112038] = 26, - ACTIONS(554), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(568), 1, - anon_sym_not, - ACTIONS(576), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(734), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_LBRACK, - ACTIONS(2621), 1, - anon_sym_LBRACE, - ACTIONS(2623), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(2627), 1, - anon_sym_DQUOTE, - ACTIONS(2629), 1, - sym_float, - STATE(3799), 1, + STATE(5), 1, sym_expression, - STATE(3807), 1, - sym_call, - STATE(3841), 1, + STATE(604), 1, sym_primary_expression, - STATE(4000), 1, + STATE(860), 1, + sym_call, + STATE(946), 1, sym_selector_expression, - STATE(5108), 1, + STATE(5236), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -140915,18 +150076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4229), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -140934,7 +150095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -140951,124 +150112,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [112153] = 10, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_STAR_STAR, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2576), 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(2574), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112236] = 26, - ACTIONS(257), 1, + [117514] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2943), 1, sym_identifier, - STATE(2352), 1, + STATE(859), 1, sym_selector_expression, - STATE(2398), 1, - sym_primary_expression, - STATE(2407), 1, + STATE(860), 1, sym_call, - STATE(5113), 1, + STATE(913), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5285), 1, sym_expression, - STATE(6187), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -141077,18 +150165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -141096,7 +150184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -141113,51 +150201,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [112351] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + [117629] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(391), 1, sym_float, - STATE(3807), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3825), 1, + STATE(3533), 1, sym_primary_expression, - STATE(4004), 1, + STATE(3628), 1, sym_selector_expression, - STATE(4885), 1, + STATE(5057), 1, sym_expression, - STATE(5150), 1, + STATE(5192), 1, sym_dotted_name, - STATE(5996), 1, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - STATE(4239), 2, + STATE(3703), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -141166,18 +150254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -141185,7 +150273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -141202,51 +150290,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [112466] = 26, - ACTIONS(257), 1, + [117744] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(842), 1, + ACTIONS(1084), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(1090), 1, anon_sym_not, - STATE(2399), 1, + STATE(244), 1, + sym_expression, + STATE(2373), 1, sym_primary_expression, - STATE(2407), 1, + STATE(2436), 1, sym_call, - STATE(2505), 1, + STATE(2594), 1, sym_selector_expression, - STATE(3754), 1, - sym_expression, - STATE(5000), 1, + STATE(5215), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -141255,18 +150343,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(2613), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -141274,7 +150362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -141291,1065 +150379,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [112581] = 5, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 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(2461), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112654] = 5, - ACTIONS(2855), 1, - anon_sym_EQ, - STATE(1638), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 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(2560), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112727] = 5, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 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(2461), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112800] = 5, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 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(2465), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112873] = 6, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(2781), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 26, - sym__newline, - 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(2445), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112948] = 6, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(2781), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, - sym__newline, - 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(2449), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113023] = 4, - STATE(1515), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113094] = 4, - STATE(1515), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113165] = 4, - STATE(1515), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113236] = 4, - STATE(1515), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113307] = 5, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [117859] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_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(191), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, + ACTIONS(466), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113380] = 4, - STATE(1713), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(472), 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(478), 1, sym_float, - ACTIONS(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113451] = 4, - STATE(1713), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, + ACTIONS(480), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2857), 32, - anon_sym_import, + ACTIONS(578), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113522] = 4, - STATE(1713), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(1437), 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(3263), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113593] = 4, - STATE(1713), 1, - aux_sym_comparison_operator_repeat1, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(3650), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - 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(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113664] = 26, - ACTIONS(564), 1, - anon_sym_lambda, - ACTIONS(576), 1, - sym_string_start, - ACTIONS(734), 1, - anon_sym_DOT, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1351), 1, - anon_sym_not, - ACTIONS(2617), 1, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [117974] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2621), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_QMARK_DOT, - ACTIONS(2627), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(2629), 1, + ACTIONS(185), 1, sym_float, - STATE(3807), 1, - sym_call, - STATE(3825), 1, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3265), 1, + sym_identifier, + STATE(988), 1, sym_primary_expression, - STATE(4004), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, sym_selector_expression, - STATE(4847), 1, - sym_expression, - STATE(5150), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5996), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4220), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4239), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(2625), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -142358,18 +150521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4208), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(574), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4192), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -142377,7 +150540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4160), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -142394,81 +150557,101 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [113779] = 5, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [118089] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(808), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_not, + STATE(131), 1, + sym_expression, + STATE(860), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, + sym_selector_expression, + STATE(5217), 1, + sym_dotted_name, + STATE(6308), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 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(2453), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2189), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [113852] = 4, - STATE(1633), 1, - aux_sym_dotted_name_repeat1, + STATE(1765), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [118204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 26, + ACTIONS(3203), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -142495,15 +150678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2471), 33, + ACTIONS(3205), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -142529,51 +150712,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [113923] = 26, - ACTIONS(257), 1, + [118273] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(2352), 1, + STATE(2428), 1, sym_selector_expression, - STATE(2386), 1, - sym_primary_expression, - STATE(2407), 1, + STATE(2436), 1, sym_call, - STATE(5113), 1, + STATE(3193), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5169), 1, + STATE(5251), 1, sym_expression, - STATE(6187), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(380), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -142582,18 +150765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -142601,7 +150784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -142618,13 +150801,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [114038] = 4, - STATE(1487), 1, - aux_sym_dotted_name_repeat1, + [118388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 26, + ACTIONS(3207), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -142651,15 +150833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2475), 33, + ACTIONS(3209), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -142685,51 +150867,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [114109] = 26, - ACTIONS(486), 1, + [118457] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3761), 1, + ACTIONS(3265), 1, + sym_identifier, + STATE(1411), 1, + sym_call, + STATE(1601), 1, sym_primary_expression, - STATE(3981), 1, + STATE(1710), 1, sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(4889), 1, - sym_expression, - STATE(4995), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -142738,18 +150920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -142757,7 +150939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -142774,76 +150956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [114224] = 6, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(2781), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 26, - sym__newline, - 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(2457), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [114299] = 26, + [118572] = 26, ACTIONS(67), 1, anon_sym_LPAREN, ACTIONS(69), 1, @@ -142858,33 +150971,33 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(85), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(794), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(798), 1, + ACTIONS(812), 1, anon_sym_not, - STATE(779), 1, - sym_primary_expression, - STATE(1533), 1, + STATE(130), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(1614), 1, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, sym_selector_expression, - STATE(3279), 1, - sym_expression, - STATE(5082), 1, + STATE(5217), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, ACTIONS(79), 3, @@ -142896,7 +151009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -142907,7 +151020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -142915,7 +151028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -142932,260 +151045,424 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [114414] = 5, - ACTIONS(131), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 26, + [118687] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, + ACTIONS(2951), 1, anon_sym_LBRACK, + ACTIONS(2953), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2959), 1, anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + ACTIONS(3017), 1, + sym_identifier, + STATE(2748), 1, + sym_primary_expression, + STATE(2861), 1, + sym_selector_expression, + STATE(2877), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5249), 1, + sym_expression, + STATE(5959), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3194), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 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(2441), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3090), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(636), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [114487] = 5, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3195), 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(2459), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [118802] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, + ACTIONS(145), 1, anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, + sym_float, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3049), 1, + sym_identifier, + STATE(821), 1, + sym_primary_expression, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5279), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 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(2461), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [114560] = 5, - ACTIONS(2777), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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(2459), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [118917] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(438), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_float, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2913), 1, + sym_identifier, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, + sym_call, + STATE(3192), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5251), 1, + sym_expression, + STATE(6027), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 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(2461), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2630), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [114633] = 5, - ACTIONS(2777), 1, - anon_sym_if, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [119032] = 26, + ACTIONS(596), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + sym_float, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(748), 1, + anon_sym_DOT, + ACTIONS(750), 1, + anon_sym_QMARK_DOT, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_not, + STATE(255), 1, + sym_expression, + STATE(2850), 1, + sym_call, + STATE(2852), 1, + sym_primary_expression, + STATE(3042), 1, + sym_selector_expression, + STATE(5216), 1, + sym_dotted_name, + STATE(6050), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(3045), 2, + sym_binary_operator, + sym_subscript, + STATE(3046), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(608), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3213), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(610), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3041), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3038), 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(2463), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [119147] = 16, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2969), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2977), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 13, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 30, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -143194,7 +151471,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, @@ -143204,7 +151480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [114706] = 26, + [119242] = 26, + ACTIONS(59), 1, + sym_identifier, ACTIONS(67), 1, anon_sym_LPAREN, ACTIONS(69), 1, @@ -143213,39 +151491,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_not, ACTIONS(77), 1, anon_sym_DQUOTE, ACTIONS(83), 1, sym_float, ACTIONS(85), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(794), 1, - sym_identifier, - ACTIONS(798), 1, - anon_sym_not, - STATE(779), 1, + STATE(604), 1, sym_primary_expression, - STATE(1533), 1, + STATE(640), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(1614), 1, + STATE(946), 1, sym_selector_expression, - STATE(3270), 1, - sym_expression, - STATE(5082), 1, + STATE(5236), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, ACTIONS(79), 3, @@ -143257,7 +151533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -143268,7 +151544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -143276,7 +151552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -143293,51 +151569,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [114821] = 26, - ACTIONS(510), 1, + [119357] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(800), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(806), 1, anon_sym_not, - STATE(2396), 1, + STATE(879), 1, sym_call, - STATE(2762), 1, - sym_expression, - STATE(2850), 1, + STATE(1899), 1, sym_primary_expression, - STATE(3017), 1, + STATE(2123), 1, sym_selector_expression, - STATE(5087), 1, + STATE(3366), 1, + sym_expression, + STATE(5232), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -143346,18 +151622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2261), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -143365,7 +151641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -143382,8 +151658,8 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [114936] = 26, - ACTIONS(57), 1, + [119472] = 26, + ACTIONS(59), 1, sym_identifier, ACTIONS(67), 1, anon_sym_LPAREN, @@ -143401,29 +151677,29 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(85), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(724), 1, + STATE(604), 1, sym_primary_expression, - STATE(754), 1, + STATE(636), 1, sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(860), 1, sym_call, - STATE(5044), 1, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, ACTIONS(79), 3, @@ -143435,7 +151711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -143446,7 +151722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -143454,7 +151730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -143471,349 +151747,187 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [115051] = 5, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [119587] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_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(191), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, + ACTIONS(97), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [115124] = 5, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(103), 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(109), 1, sym_float, - ACTIONS(2441), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [115197] = 6, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2817), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 25, - sym__dedent, + ACTIONS(111), 1, sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2445), 31, - anon_sym_import, + ACTIONS(131), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(800), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [115272] = 6, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2817), 1, - anon_sym_PLUS, + ACTIONS(806), 1, + anon_sym_not, + STATE(879), 1, + sym_call, + STATE(1899), 1, + sym_primary_expression, + STATE(2123), 1, + sym_selector_expression, + STATE(3375), 1, + sym_expression, + STATE(5232), 1, + sym_dotted_name, + STATE(5966), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 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(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 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(2449), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2261), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [115347] = 5, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, + STATE(2001), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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(2451), 26, - 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, + [119702] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, anon_sym_QMARK_DOT, + ACTIONS(800), 1, + sym_identifier, + ACTIONS(806), 1, + anon_sym_not, + STATE(879), 1, + sym_call, + STATE(1899), 1, + sym_primary_expression, + STATE(2123), 1, + sym_selector_expression, + STATE(3376), 1, + sym_expression, + STATE(5232), 1, + sym_dotted_name, + STATE(5966), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 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(2453), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2261), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [115420] = 26, + STATE(2001), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [119817] = 26, + ACTIONS(59), 1, + sym_identifier, ACTIONS(67), 1, anon_sym_LPAREN, ACTIONS(69), 1, @@ -143822,39 +151936,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_not, ACTIONS(77), 1, anon_sym_DQUOTE, ACTIONS(83), 1, sym_float, ACTIONS(85), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(794), 1, - sym_identifier, - ACTIONS(798), 1, - anon_sym_not, - STATE(779), 1, + STATE(604), 1, sym_primary_expression, - STATE(1533), 1, + STATE(631), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(1614), 1, + STATE(946), 1, sym_selector_expression, - STATE(3289), 1, - sym_expression, - STATE(5082), 1, + STATE(5236), 1, sym_dotted_name, - STATE(5858), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2067), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, ACTIONS(79), 3, @@ -143866,7 +151978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -143877,7 +151989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -143885,7 +151997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -143902,738 +152014,674 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [115535] = 6, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(2817), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [119932] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, + sym_call, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, + sym_selector_expression, + STATE(5019), 1, + sym_expression, + STATE(5088), 1, + sym_dotted_name, + STATE(6471), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + STATE(4262), 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(2457), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4501), 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, - [115610] = 5, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, + STATE(4259), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4257), 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(2459), 26, - 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, + [120047] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + STATE(97), 1, + sym_expression, + STATE(2350), 1, + sym_call, + STATE(2453), 1, + sym_primary_expression, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(2461), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2801), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [115683] = 5, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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(2459), 26, - 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, + [120162] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, + ACTIONS(145), 1, anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(153), 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(159), 1, sym_float, - ACTIONS(2461), 31, - anon_sym_import, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 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(3223), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [115756] = 5, - ACTIONS(157), 1, - anon_sym_if, + STATE(1677), 1, + sym_primary_expression, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 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(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 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(2465), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [115829] = 6, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2823), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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(2443), 26, - sym__newline, - 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, + [120277] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, + ACTIONS(145), 1, anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(153), 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(159), 1, sym_float, - ACTIONS(2445), 30, - anon_sym_import, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3223), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [115904] = 6, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2823), 1, - anon_sym_PLUS, + ACTIONS(3267), 1, + anon_sym_not, + STATE(1677), 1, + sym_primary_expression, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 26, - sym__newline, - 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(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 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(2449), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [115979] = 5, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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(189), 26, - 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, + [120392] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(103), 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(109), 1, sym_float, - ACTIONS(191), 31, - anon_sym_import, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(800), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [116052] = 5, - ACTIONS(2819), 1, - anon_sym_if, + ACTIONS(806), 1, + anon_sym_not, + STATE(879), 1, + sym_call, + STATE(1899), 1, + sym_primary_expression, + STATE(2123), 1, + sym_selector_expression, + STATE(3381), 1, + sym_expression, + STATE(5232), 1, + sym_dotted_name, + STATE(5966), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 27, - sym__newline, - 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(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 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(2453), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2261), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [116125] = 6, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(2823), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, + STATE(2001), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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(2455), 26, - sym__newline, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [120507] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + ACTIONS(3255), 1, + sym_identifier, + STATE(3948), 1, + sym_call, + STATE(3964), 1, + sym_primary_expression, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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(2457), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4272), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [116200] = 8, - ACTIONS(2868), 1, - anon_sym_not, - ACTIONS(2874), 1, - anon_sym_is, - STATE(1515), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2865), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2871), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 23, - sym__newline, - sym__dedent, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [120622] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, + ACTIONS(2951), 1, anon_sym_LBRACK, + ACTIONS(2953), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2959), 1, anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + STATE(247), 1, + sym_expression, + STATE(2756), 1, + sym_primary_expression, + STATE(2877), 1, + sym_call, + STATE(2904), 1, + sym_selector_expression, + STATE(5208), 1, + sym_dotted_name, + STATE(5959), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3194), 2, + sym_binary_operator, + sym_subscript, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 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_QMARK_LBRACK, - sym_float, - ACTIONS(2861), 27, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, + STATE(3101), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(636), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [116279] = 26, - ACTIONS(67), 1, + STATE(3197), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3195), 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, + [120737] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(756), 1, + STATE(4096), 1, + sym_call, + STATE(4099), 1, sym_primary_expression, - STATE(1210), 1, + STATE(4276), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5160), 1, + STATE(5259), 1, sym_expression, - STATE(5858), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -144642,18 +152690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -144661,7 +152709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -144678,51 +152726,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [116394] = 26, - ACTIONS(67), 1, + [120852] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(828), 1, sym_identifier, - STATE(757), 1, + ACTIONS(832), 1, + anon_sym_not, + STATE(1770), 1, + sym_call, + STATE(2247), 1, sym_primary_expression, - STATE(1210), 1, + STATE(2259), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5164), 1, + STATE(3384), 1, sym_expression, - STATE(5858), 1, + STATE(5190), 1, + sym_dotted_name, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -144731,18 +152779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -144750,7 +152798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -144767,187 +152815,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [116509] = 5, - ACTIONS(157), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 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(2441), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [116582] = 5, - ACTIONS(2819), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 27, - sym__newline, - 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(2461), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [116655] = 26, - ACTIONS(67), 1, + [120967] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(828), 1, sym_identifier, - STATE(760), 1, + ACTIONS(832), 1, + anon_sym_not, + STATE(1770), 1, + sym_call, + STATE(2247), 1, sym_primary_expression, - STATE(1210), 1, + STATE(2259), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5164), 1, + STATE(3385), 1, sym_expression, - STATE(5858), 1, + STATE(5190), 1, + sym_dotted_name, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -144956,18 +152868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -144975,7 +152887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -144992,51 +152904,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [116770] = 26, - ACTIONS(67), 1, + [121082] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, - sym_identifier, - STATE(761), 1, + STATE(3806), 1, + sym_expression, + STATE(3919), 1, sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(3948), 1, sym_call, - STATE(5113), 1, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, sym_dotted_name, - STATE(5164), 1, - sym_expression, - STATE(5858), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145045,18 +152957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145064,7 +152976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145081,51 +152993,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [116885] = 26, - ACTIONS(67), 1, + [121197] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(2921), 1, sym_identifier, - STATE(762), 1, + STATE(4096), 1, + sym_call, + STATE(4098), 1, sym_primary_expression, - STATE(1210), 1, + STATE(4276), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5164), 1, + STATE(5259), 1, sym_expression, - STATE(5858), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145134,18 +153046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4414), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145153,7 +153065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145170,51 +153082,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117000] = 26, - ACTIONS(67), 1, + [121312] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(763), 1, + STATE(3968), 1, + sym_call, + STATE(4101), 1, sym_primary_expression, - STATE(1210), 1, + STATE(4224), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5164), 1, + STATE(5284), 1, sym_expression, - STATE(5858), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145223,18 +153135,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145242,7 +153154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145259,51 +153171,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117115] = 26, - ACTIONS(67), 1, + [121427] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(3255), 1, sym_identifier, - STATE(764), 1, + STATE(3948), 1, + sym_call, + STATE(3972), 1, sym_primary_expression, - STATE(1210), 1, + STATE(4245), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5164), 1, + STATE(5275), 1, sym_expression, - STATE(5858), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145312,18 +153224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145331,7 +153243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145348,51 +153260,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117230] = 26, - ACTIONS(67), 1, + [121542] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(3255), 1, sym_identifier, - STATE(765), 1, + STATE(3948), 1, + sym_call, + STATE(3973), 1, sym_primary_expression, - STATE(1210), 1, + STATE(4245), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5164), 1, + STATE(5275), 1, sym_expression, - STATE(5858), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145401,18 +153313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145420,7 +153332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145437,51 +153349,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117345] = 26, - ACTIONS(67), 1, + [121657] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, + ACTIONS(3255), 1, sym_identifier, - STATE(766), 1, + STATE(3847), 1, sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(3948), 1, sym_call, - STATE(5113), 1, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5164), 1, + STATE(5275), 1, sym_expression, - STATE(5858), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145490,18 +153402,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145509,7 +153421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145526,51 +153438,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117460] = 26, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, + [121772] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - STATE(724), 1, + ACTIONS(3255), 1, + sym_identifier, + STATE(3837), 1, sym_primary_expression, - STATE(749), 1, - sym_expression, - STATE(1129), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(3948), 1, sym_call, - STATE(5044), 1, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145579,18 +153491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2086), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145598,7 +153510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145615,51 +153527,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117575] = 26, - ACTIONS(67), 1, + [121887] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(794), 1, + ACTIONS(3255), 1, sym_identifier, - ACTIONS(798), 1, - anon_sym_not, - STATE(779), 1, + STATE(3875), 1, sym_primary_expression, - STATE(1533), 1, + STATE(3948), 1, sym_call, - STATE(1614), 1, + STATE(4245), 1, sym_selector_expression, - STATE(3268), 1, - sym_expression, - STATE(5082), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5858), 1, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(2067), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145668,18 +153580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2073), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2062), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145687,7 +153599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145704,51 +153616,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117690] = 26, - ACTIONS(67), 1, + [122002] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(197), 1, - anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(2631), 1, + ACTIONS(3255), 1, sym_identifier, - ACTIONS(2877), 1, - anon_sym_not, - STATE(767), 1, + STATE(3865), 1, sym_primary_expression, - STATE(1210), 1, - sym_selector_expression, - STATE(1533), 1, + STATE(3948), 1, sym_call, - STATE(5113), 1, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5164), 1, + STATE(5275), 1, sym_expression, - STATE(5858), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145757,18 +153669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145776,7 +153688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145793,51 +153705,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117805] = 26, - ACTIONS(135), 1, + [122117] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(3071), 1, sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(3255), 1, sym_identifier, - STATE(1880), 1, - sym_selector_expression, - STATE(1904), 1, + STATE(3861), 1, sym_primary_expression, - STATE(2027), 1, + STATE(3948), 1, sym_call, - STATE(5113), 1, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5205), 1, + STATE(5275), 1, sym_expression, - STATE(5990), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145846,18 +153758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(4272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145865,7 +153777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145882,51 +153794,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117920] = 26, - ACTIONS(135), 1, + [122232] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(2757), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(2879), 1, + ACTIONS(1401), 1, anon_sym_not, - STATE(1880), 1, - sym_selector_expression, - STATE(1904), 1, + STATE(3820), 1, sym_primary_expression, - STATE(2027), 1, + STATE(4216), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5205), 1, + STATE(4246), 1, + sym_selector_expression, + STATE(4946), 1, sym_expression, - STATE(5990), 1, + STATE(5180), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -145935,18 +153847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -145954,7 +153866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -145971,51 +153883,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [118035] = 26, - ACTIONS(67), 1, + [122347] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2631), 1, - sym_identifier, - STATE(767), 1, + STATE(2286), 1, + sym_expression, + STATE(2294), 1, sym_primary_expression, - STATE(1210), 1, + STATE(2357), 1, sym_selector_expression, - STATE(1533), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5246), 1, sym_dotted_name, - STATE(5164), 1, - sym_expression, - STATE(5858), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(79), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146024,18 +153936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146043,7 +153955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146060,16 +153972,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [118150] = 4, - STATE(2053), 1, - sym_dictionary, + [122462] = 4, + STATE(1595), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -146094,13 +154005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -146127,192 +154039,140 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [118221] = 10, - ACTIONS(2369), 1, + [122533] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_QMARK_DOT, - ACTIONS(2399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR_STAR, - STATE(2059), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2576), 22, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(179), 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, + ACTIONS(185), 1, sym_float, - ACTIONS(2574), 31, - anon_sym_import, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(834), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [118304] = 5, - ACTIONS(2819), 1, - anon_sym_if, + ACTIONS(840), 1, + anon_sym_not, + STATE(1411), 1, + sym_call, + STATE(1962), 1, + sym_primary_expression, + STATE(2137), 1, + sym_selector_expression, + STATE(3363), 1, + sym_expression, + STATE(5241), 1, + sym_dotted_name, + STATE(5941), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 27, - sym__newline, - 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(2132), 2, + sym_binary_operator, + sym_subscript, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 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(2461), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2272), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(183), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [118377] = 26, - ACTIONS(135), 1, + STATE(2226), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2129), 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, + [122648] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(822), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(590), 1, anon_sym_not, - STATE(2027), 1, - sym_call, - STATE(2033), 1, + STATE(3936), 1, sym_primary_expression, - STATE(2164), 1, - sym_selector_expression, - STATE(3342), 1, + STATE(3968), 1, + sym_call, + STATE(3987), 1, sym_expression, - STATE(5144), 1, + STATE(4250), 1, + sym_selector_expression, + STATE(5139), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146321,18 +154181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146340,7 +154200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146357,51 +154217,129 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [118492] = 26, - ACTIONS(135), 1, + [122763] = 15, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(141), 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_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, + [122856] = 26, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(822), 1, + ACTIONS(834), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(840), 1, anon_sym_not, - STATE(2027), 1, + STATE(1411), 1, sym_call, - STATE(2033), 1, + STATE(1962), 1, sym_primary_expression, - STATE(2164), 1, + STATE(2137), 1, sym_selector_expression, - STATE(3364), 1, + STATE(3378), 1, sym_expression, - STATE(5144), 1, + STATE(5241), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146410,18 +154348,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146429,7 +154367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146446,51 +154384,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [118607] = 26, - ACTIONS(129), 1, - sym_identifier, - ACTIONS(135), 1, + [122971] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(143), 1, - anon_sym_not, - ACTIONS(145), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(1879), 1, - sym_primary_expression, - STATE(1914), 1, - sym_expression, - STATE(2027), 1, + ACTIONS(834), 1, + sym_identifier, + ACTIONS(840), 1, + anon_sym_not, + STATE(1411), 1, sym_call, - STATE(2204), 1, + STATE(1962), 1, + sym_primary_expression, + STATE(2137), 1, sym_selector_expression, - STATE(5104), 1, + STATE(3377), 1, + sym_expression, + STATE(5241), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146499,18 +154437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146518,7 +154456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146535,186 +154473,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [118722] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1577), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2572), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [123086] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(496), 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(502), 1, sym_float, - ACTIONS(2570), 32, - anon_sym_import, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(738), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [118793] = 5, - ACTIONS(2819), 1, - anon_sym_if, + ACTIONS(742), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(3003), 1, + sym_expression, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 27, - sym__newline, - 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, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(2465), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [118866] = 26, - ACTIONS(135), 1, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [123201] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(834), 1, sym_identifier, - STATE(1880), 1, - sym_selector_expression, - STATE(1995), 1, - sym_primary_expression, - STATE(2027), 1, + ACTIONS(840), 1, + anon_sym_not, + STATE(1411), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5205), 1, + STATE(1962), 1, + sym_primary_expression, + STATE(2137), 1, + sym_selector_expression, + STATE(3369), 1, sym_expression, - STATE(5990), 1, + STATE(5241), 1, + sym_dotted_name, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146723,18 +154615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146742,7 +154634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146759,51 +154651,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [118981] = 26, - ACTIONS(135), 1, + [123316] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(1327), 1, sym_identifier, - STATE(1880), 1, - sym_selector_expression, - STATE(2009), 1, - sym_primary_expression, - STATE(2027), 1, + ACTIONS(1331), 1, + anon_sym_not, + STATE(221), 1, + sym_expression, + STATE(2350), 1, sym_call, - STATE(5113), 1, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(5231), 1, sym_dotted_name, - STATE(5205), 1, - sym_expression, - STATE(5990), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146812,18 +154704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2757), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146831,7 +154723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146848,51 +154740,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119096] = 26, - ACTIONS(135), 1, + [123431] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(3049), 1, sym_identifier, - STATE(1880), 1, - sym_selector_expression, - STATE(2027), 1, - sym_call, - STATE(2032), 1, + STATE(834), 1, sym_primary_expression, - STATE(5113), 1, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5205), 1, + STATE(5279), 1, sym_expression, - STATE(5990), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146901,18 +154793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -146920,7 +154812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -146937,51 +154829,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119211] = 26, - ACTIONS(135), 1, + [123546] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(1880), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(2027), 1, + STATE(3593), 1, sym_call, - STATE(2034), 1, + STATE(4479), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5205), 1, + STATE(5263), 1, sym_expression, - STATE(5990), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -146990,18 +154882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147009,7 +154901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147026,51 +154918,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119326] = 26, - ACTIONS(135), 1, + [123661] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(1880), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(2027), 1, + STATE(3593), 1, sym_call, - STATE(2036), 1, + STATE(4418), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5205), 1, + STATE(5263), 1, sym_expression, - STATE(5990), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147079,18 +154971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147098,7 +154990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147115,51 +155007,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119441] = 26, - ACTIONS(135), 1, + [123776] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(3263), 1, sym_identifier, - STATE(1880), 1, + STATE(3458), 1, sym_selector_expression, - STATE(2027), 1, + STATE(3593), 1, sym_call, - STATE(2051), 1, + STATE(3608), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5205), 1, + STATE(5281), 1, sym_expression, - STATE(5990), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147168,18 +155060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147187,7 +155079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147204,51 +155096,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119556] = 26, - ACTIONS(135), 1, + [123891] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(1880), 1, + STATE(2428), 1, sym_selector_expression, - STATE(2027), 1, + STATE(2436), 1, sym_call, - STATE(2064), 1, + STATE(3173), 1, sym_primary_expression, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5205), 1, + STATE(5251), 1, sym_expression, - STATE(5990), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147257,18 +155149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147276,7 +155168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147293,51 +155185,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119671] = 26, - ACTIONS(714), 1, + [124006] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, + STATE(2753), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2850), 1, sym_call, - STATE(4214), 1, + STATE(2879), 1, sym_selector_expression, - STATE(5012), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5114), 1, - sym_expression, - STATE(6132), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147346,18 +155238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147365,7 +155257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147382,117 +155274,136 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119786] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2883), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [124121] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, anon_sym_LPAREN, + ACTIONS(2645), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2995), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3003), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2881), 33, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 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(2308), 20, + anon_sym_import, + anon_sym_assert, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [119855] = 26, - ACTIONS(534), 1, + [124228] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(3223), 1, + sym_identifier, + STATE(1716), 1, sym_primary_expression, - STATE(3719), 1, + STATE(1770), 1, sym_call, - STATE(3727), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5075), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5132), 1, + STATE(5272), 1, sym_expression, - STATE(6118), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147501,18 +155412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147520,7 +155431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147537,51 +155448,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [119970] = 26, - ACTIONS(161), 1, + [124343] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(828), 1, - sym_identifier, - ACTIONS(832), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(1943), 1, + ACTIONS(3223), 1, + sym_identifier, + STATE(1717), 1, sym_primary_expression, - STATE(2072), 1, + STATE(1770), 1, sym_call, - STATE(2208), 1, + STATE(1955), 1, sym_selector_expression, - STATE(3375), 1, - sym_expression, - STATE(5092), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147590,18 +155501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147609,7 +155520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147626,184 +155537,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120085] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2887), 27, - sym__newline, - sym__dedent, + [124458] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, + ACTIONS(2951), 1, anon_sym_LBRACK, + ACTIONS(2953), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2959), 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(2961), 1, sym_float, - ACTIONS(2885), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [120154] = 4, - ACTIONS(2889), 1, - anon_sym_DASH_GT, + STATE(110), 1, + sym_expression, + STATE(2838), 1, + sym_primary_expression, + STATE(2877), 1, + sym_call, + STATE(2884), 1, + sym_selector_expression, + STATE(5140), 1, + sym_dotted_name, + STATE(5959), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 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, + STATE(3194), 2, + sym_binary_operator, + sym_subscript, + STATE(3198), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 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(2483), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_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(3050), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(636), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120225] = 26, - ACTIONS(390), 1, + STATE(3197), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3195), 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, + [124573] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2913), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(3269), 1, + anon_sym_not, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, sym_call, - STATE(3464), 1, + STATE(3173), 1, sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4868), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5156), 1, + STATE(5251), 1, sym_expression, - STATE(6057), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147812,18 +155679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147831,7 +155698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147848,51 +155715,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120340] = 26, - ACTIONS(534), 1, + [124688] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1379), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(2436), 1, sym_call, - STATE(3727), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, sym_selector_expression, - STATE(4897), 1, + STATE(4465), 1, sym_expression, - STATE(5075), 1, + STATE(5117), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147901,18 +155768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -147920,7 +155787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -147937,51 +155804,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120455] = 26, - ACTIONS(161), 1, + [124803] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(828), 1, - sym_identifier, - ACTIONS(832), 1, - anon_sym_not, - STATE(1943), 1, + STATE(2763), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(2072), 1, + STATE(2850), 1, sym_call, - STATE(2208), 1, + STATE(2879), 1, sym_selector_expression, - STATE(3369), 1, - sym_expression, - STATE(5092), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(3046), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -147990,18 +155857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148009,7 +155876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148026,51 +155893,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120570] = 26, - ACTIONS(161), 1, + [124918] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2695), 1, + ACTIONS(662), 1, sym_identifier, - STATE(1006), 1, + ACTIONS(668), 1, + anon_sym_not, + STATE(3810), 1, + sym_expression, + STATE(3901), 1, sym_primary_expression, - STATE(1899), 1, + STATE(3975), 1, sym_selector_expression, - STATE(2072), 1, + STATE(4216), 1, sym_call, - STATE(5113), 1, + STATE(5164), 1, sym_dotted_name, - STATE(5210), 1, - sym_expression, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(173), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -148079,18 +155946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148098,7 +155965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148115,51 +155982,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120685] = 26, - ACTIONS(161), 1, + [125033] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3223), 1, + sym_identifier, + STATE(1194), 1, sym_primary_expression, - STATE(1981), 1, - sym_expression, - STATE(2072), 1, + STATE(1770), 1, sym_call, - STATE(2102), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5047), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -148168,18 +156035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148187,7 +156054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148204,119 +156071,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120800] = 5, - ACTIONS(2891), 1, - anon_sym_PIPE, - STATE(1559), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - 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(2505), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [120873] = 26, - ACTIONS(390), 1, + [125148] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(820), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(826), 1, anon_sym_not, - STATE(3460), 1, + STATE(136), 1, + sym_expression, + STATE(1770), 1, sym_call, - STATE(3464), 1, + STATE(2024), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2254), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5087), 1, sym_dotted_name, - STATE(5031), 1, - sym_expression, - STATE(6057), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -148325,18 +156124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148344,7 +156143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148361,15 +156160,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [120988] = 4, - STATE(1743), 1, - aux_sym_union_type_repeat1, + [125263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 26, + ACTIONS(3211), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -148394,15 +156192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2566), 33, + ACTIONS(3213), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -148428,250 +156226,229 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121059] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2896), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [125332] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(438), 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(444), 1, sym_float, - ACTIONS(2894), 33, - anon_sym_import, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 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(2913), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [121128] = 3, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, + sym_call, + STATE(3169), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5251), 1, + sym_expression, + STATE(6027), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2900), 27, - sym__newline, - 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(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 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(2898), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2630), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121197] = 4, - ACTIONS(2902), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [125447] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(602), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(606), 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(612), 1, sym_float, - ACTIONS(2512), 34, - anon_sym_import, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(748), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(750), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3113), 1, + sym_identifier, + STATE(2754), 1, + sym_primary_expression, + STATE(2846), 1, + sym_selector_expression, + STATE(2850), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5276), 1, + sym_expression, + STATE(6050), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3045), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(608), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 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_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(3141), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(610), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121268] = 26, - ACTIONS(161), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3038), 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, + [125562] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(828), 1, - sym_identifier, - ACTIONS(832), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(1943), 1, - sym_primary_expression, - STATE(2072), 1, - sym_call, - STATE(2208), 1, + ACTIONS(2913), 1, + sym_identifier, + STATE(2428), 1, sym_selector_expression, - STATE(3360), 1, - sym_expression, - STATE(5092), 1, + STATE(2436), 1, + sym_call, + STATE(3167), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5251), 1, + sym_expression, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -148680,18 +156457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148699,7 +156476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148716,51 +156493,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [121383] = 26, - ACTIONS(135), 1, + [125677] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(189), 1, + sym_identifier, + ACTIONS(193), 1, + anon_sym_not, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2757), 1, - sym_identifier, - STATE(1880), 1, + STATE(7), 1, + sym_expression, + STATE(993), 1, + sym_primary_expression, + STATE(1662), 1, sym_selector_expression, - STATE(2027), 1, + STATE(1770), 1, sym_call, - STATE(2085), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5204), 1, sym_dotted_name, - STATE(5205), 1, - sym_expression, - STATE(5990), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -148769,18 +156546,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148788,7 +156565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148805,51 +156582,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [121498] = 26, - ACTIONS(135), 1, + [125792] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(3271), 1, sym_identifier, - STATE(1875), 1, - sym_primary_expression, - STATE(1880), 1, - sym_selector_expression, - STATE(2027), 1, + STATE(2350), 1, sym_call, - STATE(5113), 1, + STATE(2393), 1, + sym_selector_expression, + STATE(3019), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5165), 1, + STATE(5266), 1, sym_expression, - STATE(5990), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -148858,18 +156635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2231), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -148877,7 +156654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -148894,119 +156671,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [121613] = 5, - ACTIONS(2904), 1, - anon_sym_EQ, - STATE(776), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 27, - sym__newline, - 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(2560), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [121686] = 26, - ACTIONS(714), 1, + [125907] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1379), 1, anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(2436), 1, sym_call, - STATE(4214), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, sym_selector_expression, - STATE(4997), 1, + STATE(4480), 1, sym_expression, - STATE(5012), 1, + STATE(5117), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149015,18 +156724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149034,7 +156743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149051,51 +156760,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [121801] = 26, - ACTIONS(390), 1, + [126022] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(213), 1, + sym_identifier, + ACTIONS(217), 1, + anon_sym_not, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, + STATE(1411), 1, sym_call, - STATE(3464), 1, + STATE(1730), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2028), 1, + sym_expression, + STATE(2191), 1, sym_selector_expression, - STATE(4833), 1, + STATE(5137), 1, sym_dotted_name, - STATE(5140), 1, - sym_expression, - STATE(6057), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149104,18 +156813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149123,7 +156832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149140,120 +156849,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [121916] = 6, - ACTIONS(2906), 1, + [126137] = 26, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, + anon_sym_LBRACE, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(2909), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - STATE(1571), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(3019), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 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(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(2550), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121991] = 26, - ACTIONS(390), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [126252] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1421), 1, anon_sym_not, - STATE(3460), 1, + STATE(2350), 1, sym_call, - STATE(3464), 1, + STATE(2985), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3044), 1, sym_selector_expression, - STATE(4993), 1, + STATE(4399), 1, sym_expression, - STATE(5018), 1, + STATE(5201), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149262,18 +156991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149281,7 +157010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149298,185 +157027,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [122106] = 4, - STATE(776), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2914), 27, - sym__newline, - 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(2912), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, + [126367] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 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_check, + ACTIONS(630), 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, - [122177] = 4, - ACTIONS(2564), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 27, - sym__newline, - sym__dedent, + ACTIONS(638), 1, 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(2560), 32, - anon_sym_import, + ACTIONS(732), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [122248] = 26, - ACTIONS(390), 1, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2800), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, sym_selector_expression, - STATE(4831), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5141), 1, - sym_expression, - STATE(6057), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149485,18 +157080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149504,7 +157099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149521,51 +157116,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [122363] = 26, - ACTIONS(416), 1, + [126482] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(243), 1, - sym_expression, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(2402), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5145), 1, + STATE(3021), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149574,18 +157169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149593,7 +157188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149610,120 +157205,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [122478] = 6, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2919), 1, - anon_sym_QMARK_DOT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1577), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2540), 31, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [122553] = 26, - ACTIONS(161), 1, + [126597] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(1899), 1, - sym_selector_expression, - STATE(1960), 1, - sym_primary_expression, - STATE(2072), 1, + ACTIONS(1379), 1, + anon_sym_not, + STATE(2436), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5210), 1, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, + sym_selector_expression, + STATE(4483), 1, sym_expression, - STATE(5909), 1, + STATE(5117), 1, + sym_dotted_name, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149732,18 +157258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149751,7 +157277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149768,51 +157294,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [122668] = 26, - ACTIONS(161), 1, + [126712] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2659), 1, + ACTIONS(3271), 1, sym_identifier, - STATE(1899), 1, + STATE(2350), 1, + sym_call, + STATE(2393), 1, sym_selector_expression, - STATE(1956), 1, + STATE(3023), 1, sym_primary_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5161), 1, + STATE(5266), 1, sym_expression, - STATE(5909), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149821,18 +157347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149840,7 +157366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -149857,11 +157383,11 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [122783] = 3, + [126827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 27, + ACTIONS(3215), 27, sym__newline, sym__dedent, sym_string_start, @@ -149889,15 +157415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 33, + ACTIONS(3217), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -149923,51 +157449,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [122852] = 26, - ACTIONS(390), 1, + [126896] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(832), 1, anon_sym_not, - STATE(3460), 1, + STATE(1770), 1, sym_call, - STATE(3464), 1, + STATE(2247), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2259), 1, sym_selector_expression, - STATE(5018), 1, - sym_dotted_name, - STATE(5143), 1, + STATE(3390), 1, sym_expression, - STATE(6057), 1, + STATE(5190), 1, + sym_dotted_name, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -149976,18 +157502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -149995,7 +157521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150012,250 +157538,229 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [122967] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2924), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [127011] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1417), 1, + sym_identifier, + ACTIONS(1421), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2985), 1, + sym_primary_expression, + STATE(3044), 1, + sym_selector_expression, + STATE(4401), 1, + sym_expression, + STATE(5201), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(2922), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3256), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123036] = 4, - ACTIONS(2926), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2528), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [127126] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(438), 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(444), 1, sym_float, - ACTIONS(2526), 34, - anon_sym_import, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1375), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [123107] = 3, + ACTIONS(1379), 1, + anon_sym_not, + STATE(2436), 1, + sym_call, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, + sym_selector_expression, + STATE(4487), 1, + sym_expression, + STATE(5117), 1, + sym_dotted_name, + STATE(6027), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 27, - sym__newline, - 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(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 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(2928), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3284), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123176] = 26, - ACTIONS(161), 1, + STATE(2608), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [127241] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, + ACTIONS(700), 1, sym_identifier, - STATE(1893), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, + sym_call, + STATE(3033), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(1899), 1, + STATE(3215), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150264,18 +157769,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150283,7 +157788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150300,51 +157805,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123291] = 26, - ACTIONS(161), 1, + [127356] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, + ACTIONS(762), 1, sym_identifier, - STATE(1894), 1, + ACTIONS(766), 1, + anon_sym_not, + STATE(3593), 1, + sym_call, + STATE(4438), 1, + sym_expression, + STATE(4451), 1, sym_primary_expression, - STATE(1899), 1, + STATE(4504), 1, sym_selector_expression, - STATE(2072), 1, - sym_call, - STATE(5113), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150353,18 +157858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150372,7 +157877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150389,51 +157894,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123406] = 26, - ACTIONS(161), 1, - anon_sym_LPAREN, + [127471] = 26, ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, ACTIONS(177), 1, - sym_float, + anon_sym_not, ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, - sym_identifier, - STATE(1895), 1, + STATE(984), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(1899), 1, + STATE(1278), 1, sym_selector_expression, - STATE(2072), 1, + STATE(1411), 1, sym_call, - STATE(5113), 1, + STATE(5224), 1, sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150442,18 +157947,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150461,7 +157966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150478,51 +157983,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123521] = 26, - ACTIONS(161), 1, + [127586] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, - sym_identifier, - STATE(1896), 1, + STATE(550), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(1899), 1, - sym_selector_expression, - STATE(2072), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(1004), 1, + sym_selector_expression, + STATE(5230), 1, sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150531,18 +158036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150550,7 +158055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150567,51 +158072,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123636] = 26, - ACTIONS(67), 1, + [127701] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(85), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(197), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(199), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2735), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(1046), 1, + ACTIONS(1421), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2985), 1, sym_primary_expression, - STATE(1210), 1, + STATE(3044), 1, sym_selector_expression, - STATE(1533), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5160), 1, + STATE(4402), 1, sym_expression, - STATE(5858), 1, + STATE(5201), 1, + sym_dotted_name, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2066), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(119), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150620,18 +158125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1993), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(81), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150639,7 +158144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2057), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150656,51 +158161,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123751] = 26, - ACTIONS(161), 1, + [127816] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [127887] = 26, + ACTIONS(428), 1, + anon_sym_LPAREN, + ACTIONS(430), 1, + anon_sym_LBRACK, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, + ACTIONS(700), 1, sym_identifier, - STATE(1899), 1, - sym_selector_expression, - STATE(1902), 1, - sym_primary_expression, - STATE(2072), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5161), 1, + STATE(3035), 1, sym_expression, - STATE(5909), 1, + STATE(3196), 1, + sym_primary_expression, + STATE(3215), 1, + sym_selector_expression, + STATE(5244), 1, + sym_dotted_name, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150709,18 +158281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150728,7 +158300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150745,51 +158317,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123866] = 26, - ACTIONS(135), 1, + [128002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3215), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3217), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [128071] = 26, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(822), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(1421), 1, anon_sym_not, - STATE(2027), 1, + STATE(2350), 1, sym_call, - STATE(2033), 1, + STATE(2985), 1, sym_primary_expression, - STATE(2164), 1, + STATE(3044), 1, sym_selector_expression, - STATE(3374), 1, + STATE(4404), 1, sym_expression, - STATE(5144), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150798,18 +158436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150817,7 +158455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150834,51 +158472,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [123981] = 26, - ACTIONS(510), 1, + [128186] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(193), 1, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2769), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(971), 1, sym_expression, - STATE(2850), 1, + STATE(993), 1, sym_primary_expression, - STATE(3017), 1, + STATE(1662), 1, sym_selector_expression, - STATE(5087), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150887,18 +158525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150906,7 +158544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -150923,51 +158561,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124096] = 26, - ACTIONS(161), 1, + [128301] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(85), 1, sym_string_start, ACTIONS(209), 1, anon_sym_DOT, ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, - sym_identifier, - STATE(1899), 1, - sym_selector_expression, - STATE(1910), 1, + STATE(578), 1, + sym_expression, + STATE(604), 1, sym_primary_expression, - STATE(2072), 1, + STATE(860), 1, sym_call, - STATE(5113), 1, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -150976,18 +158614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -150995,7 +158633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151012,51 +158650,221 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124211] = 26, - ACTIONS(161), 1, + [128416] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 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(2396), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(167), 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [128523] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(171), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(177), 1, + anon_sym_TILDE, sym_float, - ACTIONS(179), 1, + ACTIONS(2384), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [128630] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(756), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, - sym_identifier, - STATE(1899), 1, - sym_selector_expression, - STATE(1919), 1, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3815), 1, + sym_expression, + STATE(3919), 1, sym_primary_expression, - STATE(2072), 1, + STATE(3948), 1, sym_call, - STATE(5113), 1, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, sym_dotted_name, - STATE(5161), 1, - sym_expression, - STATE(5909), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151065,18 +158873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151084,7 +158892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151101,51 +158909,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124326] = 26, - ACTIONS(390), 1, + [128745] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(3049), 1, + sym_identifier, + STATE(1770), 1, sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5018), 1, + STATE(2026), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5151), 1, + STATE(5279), 1, sym_expression, - STATE(6057), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151154,18 +158962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151173,7 +158981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151190,51 +158998,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124441] = 26, - ACTIONS(161), 1, - anon_sym_LPAREN, + [128860] = 26, ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(171), 1, - anon_sym_DQUOTE, ACTIONS(177), 1, - sym_float, + anon_sym_not, ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, sym_string_start, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(205), 1, - anon_sym_not, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(1900), 1, - sym_primary_expression, - STATE(2055), 1, + STATE(973), 1, sym_expression, - STATE(2072), 1, - sym_call, - STATE(2102), 1, + STATE(994), 1, + sym_primary_expression, + STATE(1278), 1, sym_selector_expression, - STATE(5047), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151243,18 +159051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2240), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151262,7 +159070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151279,51 +159087,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124556] = 26, - ACTIONS(161), 1, + [128975] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, ACTIONS(828), 1, sym_identifier, ACTIONS(832), 1, anon_sym_not, - STATE(1943), 1, - sym_primary_expression, - STATE(2072), 1, + STATE(1770), 1, sym_call, - STATE(2208), 1, + STATE(2247), 1, + sym_primary_expression, + STATE(2259), 1, sym_selector_expression, - STATE(3355), 1, + STATE(3394), 1, sym_expression, - STATE(5092), 1, + STATE(5190), 1, sym_dotted_name, - STATE(5909), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151332,18 +159140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151351,7 +159159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151368,51 +159176,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124671] = 26, - ACTIONS(161), 1, + [129090] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(828), 1, - sym_identifier, - ACTIONS(832), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(1943), 1, + ACTIONS(3265), 1, + sym_identifier, + STATE(839), 1, sym_primary_expression, - STATE(2072), 1, + STATE(1411), 1, sym_call, - STATE(2208), 1, + STATE(1710), 1, sym_selector_expression, - STATE(3363), 1, - sym_expression, - STATE(5092), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5909), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2150), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(207), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151421,18 +159229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2237), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2227), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151440,7 +159248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151457,51 +159265,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124786] = 26, - ACTIONS(161), 1, + [129205] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(2659), 1, + ACTIONS(3265), 1, sym_identifier, - ACTIONS(2932), 1, + ACTIONS(3275), 1, anon_sym_not, - STATE(1899), 1, - sym_selector_expression, - STATE(2014), 1, + STATE(839), 1, sym_primary_expression, - STATE(2072), 1, + STATE(1411), 1, sym_call, - STATE(5113), 1, + STATE(1710), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5161), 1, + STATE(5265), 1, sym_expression, - STATE(5909), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151510,18 +159318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151529,7 +159337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151546,51 +159354,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [124901] = 26, - ACTIONS(510), 1, + [129320] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(654), 1, - sym_identifier, - ACTIONS(658), 1, - anon_sym_not, - STATE(2396), 1, + STATE(879), 1, sym_call, - STATE(2850), 1, + STATE(1003), 1, sym_primary_expression, - STATE(2873), 1, - sym_expression, - STATE(3017), 1, + STATE(1322), 1, sym_selector_expression, - STATE(5087), 1, + STATE(1755), 1, + sym_expression, + STATE(5146), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151599,18 +159407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2152), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151618,7 +159426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151635,118 +159443,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [125016] = 4, - STATE(1561), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 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(2505), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [129435] = 26, + ACTIONS(424), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125087] = 26, - ACTIONS(161), 1, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(163), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(165), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(167), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(171), 1, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(177), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(179), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(209), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(211), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2659), 1, - sym_identifier, - STATE(1899), 1, - sym_selector_expression, - STATE(2014), 1, + STATE(2369), 1, sym_primary_expression, - STATE(2072), 1, + STATE(2436), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5161), 1, + STATE(2458), 1, + sym_selector_expression, + STATE(2863), 1, sym_expression, - STATE(5909), 1, + STATE(5158), 1, + sym_dotted_name, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(207), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151755,18 +159496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2199), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(175), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151774,7 +159515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2233), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151791,51 +159532,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [125202] = 26, - ACTIONS(714), 1, + [129550] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(193), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(903), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(1662), 1, sym_selector_expression, - STATE(5012), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5146), 1, - sym_expression, - STATE(6132), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -151844,18 +159585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -151863,7 +159604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -151880,249 +159621,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [125317] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2936), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [129665] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_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(2934), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + ACTIONS(97), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125386] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2940), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(103), 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(109), 1, sym_float, - ACTIONS(2938), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125455] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2944), 27, - sym__newline, - sym__dedent, + ACTIONS(111), 1, 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(2942), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125524] = 26, - ACTIONS(129), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_lambda, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(143), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(145), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - sym_float, - ACTIONS(153), 1, - sym_string_start, - ACTIONS(213), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - STATE(1879), 1, + STATE(603), 1, sym_primary_expression, - STATE(1994), 1, + STATE(841), 1, sym_expression, - STATE(2027), 1, + STATE(879), 1, sym_call, - STATE(2204), 1, + STATE(1004), 1, sym_selector_expression, - STATE(5104), 1, + STATE(5230), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152131,18 +159674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2236), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -152150,7 +159693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -152167,51 +159710,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [125639] = 26, - ACTIONS(534), 1, + [129780] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(193), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(889), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(1662), 1, sym_selector_expression, - STATE(5075), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5119), 1, - sym_expression, - STATE(6118), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152220,153 +159763,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3903), 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, - [125754] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2948), 27, - sym__newline, - 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(2946), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125823] = 26, - ACTIONS(135), 1, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [129895] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(822), 1, - sym_identifier, - ACTIONS(826), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2027), 1, - sym_call, - STATE(2033), 1, + ACTIONS(3265), 1, + sym_identifier, + STATE(850), 1, sym_primary_expression, - STATE(2164), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, sym_selector_expression, - STATE(3358), 1, - sym_expression, - STATE(5144), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5990), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152375,18 +159852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -152394,7 +159871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -152411,117 +159888,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [125938] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2952), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [130010] = 21, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + ACTIONS(3279), 1, + anon_sym_not, + ACTIONS(3283), 1, + anon_sym_is, + STATE(2160), 1, + sym_argument_list, + STATE(2244), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2969), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3277), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3281), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(2950), 33, + ACTIONS(2310), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [126007] = 26, - ACTIONS(390), 1, + [130115] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(3265), 1, + sym_identifier, + STATE(853), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, sym_selector_expression, - STATE(4992), 1, - sym_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6057), 1, + STATE(5265), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152530,18 +160025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -152549,7 +160044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -152566,51 +160061,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [126122] = 26, - ACTIONS(390), 1, + [130230] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, sym_call, - STATE(3464), 1, + STATE(3976), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4260), 1, sym_selector_expression, - STATE(4876), 1, - sym_dotted_name, - STATE(5030), 1, + STATE(5029), 1, sym_expression, - STATE(6057), 1, + STATE(5088), 1, + sym_dotted_name, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152619,18 +160114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -152638,7 +160133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -152655,118 +160150,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [126237] = 4, - STATE(3158), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - 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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126308] = 26, - ACTIONS(390), 1, + [130345] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(193), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(909), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1662), 1, sym_selector_expression, - STATE(5018), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5023), 1, - sym_expression, - STATE(6057), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152775,18 +160203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -152794,7 +160222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -152811,51 +160239,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [126423] = 26, - ACTIONS(390), 1, + [130460] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2774), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2850), 1, + sym_call, + STATE(2879), 1, sym_selector_expression, - STATE(4877), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5126), 1, - sym_expression, - STATE(6057), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -152864,18 +160292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -152883,7 +160311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -152900,13 +160328,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [126538] = 4, - STATE(1638), 1, - aux_sym_union_type_repeat1, + [130575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 26, + ACTIONS(3219), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -152933,15 +160360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 33, + ACTIONS(3221), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -152967,51 +160394,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126609] = 26, - ACTIONS(390), 1, + [130644] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(762), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(766), 1, + anon_sym_not, + STATE(3593), 1, sym_call, - STATE(3464), 1, + STATE(4450), 1, + sym_expression, + STATE(4451), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4504), 1, sym_selector_expression, - STATE(4862), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5133), 1, - sym_expression, - STATE(6057), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153020,18 +160447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153039,7 +160466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153056,185 +160483,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [126724] = 4, - STATE(1561), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [130759] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, + ACTIONS(145), 1, anon_sym_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(2483), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + ACTIONS(147), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126795] = 4, - STATE(1638), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2538), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(149), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(153), 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(159), 1, sym_float, - ACTIONS(2536), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126866] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1333), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(193), 1, anon_sym_not, - ACTIONS(2601), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(2751), 1, + STATE(820), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(2824), 1, + STATE(1662), 1, sym_selector_expression, - STATE(2870), 1, + STATE(1770), 1, sym_call, - STATE(4228), 1, - sym_expression, - STATE(5115), 1, + STATE(5204), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153243,18 +160536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153262,7 +160555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153279,118 +160572,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [126981] = 4, - STATE(1638), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 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(2483), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127052] = 26, - ACTIONS(390), 1, + [130874] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(828), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(832), 1, + anon_sym_not, + STATE(1770), 1, sym_call, - STATE(3464), 1, + STATE(2247), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2259), 1, sym_selector_expression, - STATE(4838), 1, - sym_dotted_name, - STATE(5033), 1, + STATE(3399), 1, sym_expression, - STATE(6057), 1, + STATE(5190), 1, + sym_dotted_name, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153399,18 +160625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2277), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153418,7 +160644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153435,51 +160661,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127167] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1339), 1, - anon_sym_not, - ACTIONS(2601), 1, + [130989] = 26, + ACTIONS(375), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(391), 1, sym_float, - STATE(2751), 1, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, + anon_sym_QMARK_DOT, + ACTIONS(1160), 1, + anon_sym_not, + ACTIONS(2919), 1, + sym_identifier, + STATE(3482), 1, + sym_call, + STATE(3533), 1, sym_primary_expression, - STATE(2824), 1, + STATE(3628), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(4227), 1, - sym_expression, - STATE(5115), 1, + STATE(4966), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5186), 1, + sym_expression, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153488,18 +160714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153507,7 +160733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153524,51 +160750,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127282] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [131104] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2733), 1, + ACTIONS(189), 1, sym_identifier, - STATE(3867), 1, + ACTIONS(193), 1, + anon_sym_not, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(934), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(3874), 1, - sym_call, - STATE(4230), 1, + STATE(1662), 1, sym_selector_expression, - STATE(5113), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5187), 1, - sym_expression, - STATE(6288), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153577,18 +160803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4294), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153596,7 +160822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153613,51 +160839,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127397] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [131219] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(478), 1, sym_float, - STATE(2678), 1, - sym_primary_expression, - STATE(2752), 1, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(766), 1, + anon_sym_not, + STATE(3593), 1, + sym_call, + STATE(4393), 1, sym_expression, - STATE(2837), 1, + STATE(4451), 1, + sym_primary_expression, + STATE(4504), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5934), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153666,18 +160892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153685,7 +160911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153702,51 +160928,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127512] = 26, - ACTIONS(135), 1, + [131334] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(141), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(153), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(213), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(215), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(822), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(766), 1, anon_sym_not, - STATE(2027), 1, + STATE(3593), 1, sym_call, - STATE(2033), 1, + STATE(4424), 1, + sym_expression, + STATE(4451), 1, sym_primary_expression, - STATE(2164), 1, + STATE(4504), 1, sym_selector_expression, - STATE(3354), 1, - sym_expression, - STATE(5144), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5990), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, - sym_binary_operator, - sym_subscript, - STATE(2168), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(147), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153755,18 +160981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2239), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(149), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2163), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153774,7 +161000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2162), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153791,118 +161017,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127627] = 4, - STATE(1638), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [131449] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, + ACTIONS(265), 1, anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(273), 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(279), 1, sym_float, - ACTIONS(2505), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127698] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(610), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1339), 1, - anon_sym_not, - ACTIONS(2601), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - STATE(2751), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3111), 1, + sym_identifier, + STATE(2317), 1, sym_primary_expression, - STATE(2824), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2870), 1, + STATE(2406), 1, sym_call, - STATE(4209), 1, - sym_expression, - STATE(5115), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -153911,18 +161070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -153930,7 +161089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -153947,51 +161106,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127813] = 26, - ACTIONS(510), 1, + [131564] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(125), 1, anon_sym_not, - STATE(2396), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(860), 1, sym_call, - STATE(2850), 1, + STATE(866), 1, sym_primary_expression, - STATE(2863), 1, - sym_expression, - STATE(3017), 1, + STATE(1443), 1, sym_selector_expression, - STATE(5087), 1, + STATE(1981), 1, + sym_expression, + STATE(5223), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154000,18 +161159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154019,7 +161178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154036,120 +161195,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [127928] = 6, - ACTIONS(2954), 1, - anon_sym_DOT, - ACTIONS(2957), 1, - anon_sym_QMARK_DOT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1631), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 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(2540), 31, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128003] = 26, - ACTIONS(534), 1, + [131679] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + ACTIONS(2913), 1, + sym_identifier, + STATE(2428), 1, sym_selector_expression, - STATE(5075), 1, + STATE(2436), 1, + sym_call, + STATE(3174), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5155), 1, + STATE(5251), 1, sym_expression, - STATE(6118), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154158,18 +161248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2630), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154177,7 +161267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154194,187 +161284,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [128118] = 6, - ACTIONS(2960), 1, - anon_sym_DOT, - ACTIONS(2963), 1, - anon_sym_QMARK_DOT, - STATE(1633), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2555), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [131794] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 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(2550), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + ACTIONS(466), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128193] = 4, - STATE(1561), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2538), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(472), 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(478), 1, sym_float, - ACTIONS(2536), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128264] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(610), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, - anon_sym_LBRACK, - ACTIONS(2605), 1, - anon_sym_LBRACE, - ACTIONS(2607), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - ACTIONS(2667), 1, + ACTIONS(762), 1, sym_identifier, - STATE(2734), 1, + ACTIONS(766), 1, + anon_sym_not, + STATE(3593), 1, + sym_call, + STATE(4421), 1, + sym_expression, + STATE(4451), 1, sym_primary_expression, - STATE(2804), 1, + STATE(4504), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5171), 1, - sym_expression, - STATE(5934), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154383,18 +161337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154402,7 +161356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154419,51 +161373,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [128379] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + [131909] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(2667), 1, - sym_identifier, - STATE(2733), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + STATE(2350), 1, + sym_call, + STATE(2425), 1, + sym_expression, + STATE(2453), 1, sym_primary_expression, - STATE(2804), 1, + STATE(2704), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154472,18 +161426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154491,7 +161445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154508,51 +161462,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [128494] = 26, - ACTIONS(390), 1, + [132024] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(700), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, sym_call, - STATE(3464), 1, + STATE(3120), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3215), 1, sym_selector_expression, - STATE(4839), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5029), 1, - sym_expression, - STATE(6057), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154561,18 +161515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154580,7 +161534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154597,13 +161551,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [128609] = 4, - STATE(1559), 1, + [132139] = 4, + STATE(918), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 26, + ACTIONS(2758), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -154630,15 +161584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2566), 33, + ACTIONS(2760), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -154664,51 +161618,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [128680] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + [132210] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2667), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(700), 1, sym_identifier, - STATE(2715), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, + sym_call, + STATE(3124), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(2804), 1, + STATE(3215), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154717,18 +161671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154736,7 +161690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154753,51 +161707,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [128795] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + [132325] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2667), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(700), 1, sym_identifier, - STATE(2714), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, + sym_call, + STATE(3125), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(2804), 1, + STATE(3215), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154806,18 +161760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -154825,7 +161779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -154842,140 +161796,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [128910] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + [132440] = 4, + STATE(3221), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, - anon_sym_DQUOTE, - ACTIONS(2613), 1, - sym_float, - ACTIONS(2667), 1, - sym_identifier, - STATE(2713), 1, - sym_primary_expression, - STATE(2804), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, - [129025] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + [132511] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(2667), 1, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(700), 1, sym_identifier, - STATE(2712), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, + sym_call, + STATE(3134), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(2804), 1, + STATE(3215), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -154984,18 +161916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155003,7 +161935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155020,15 +161952,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129140] = 4, - STATE(1561), 1, - aux_sym_union_type_repeat1, + [132626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 26, + ACTIONS(3225), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -155053,15 +161984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 33, + ACTIONS(3227), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -155087,51 +162018,123 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [129211] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + [132695] = 9, + ACTIONS(2667), 1, + anon_sym_if, + ACTIONS(2669), 1, + anon_sym_and, + ACTIONS(2671), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 13, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(610), 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(2278), 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(2242), 23, + anon_sym_import, anon_sym_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(2601), 1, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [132776] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(2667), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, sym_identifier, - STATE(2711), 1, - sym_primary_expression, - STATE(2804), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(2350), 1, sym_call, - STATE(5113), 1, + STATE(2393), 1, + sym_selector_expression, + STATE(3018), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5158), 1, + STATE(5266), 1, sym_expression, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155140,18 +162143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155159,7 +162162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155176,51 +162179,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129326] = 26, - ACTIONS(390), 1, + [132891] = 9, + ACTIONS(165), 1, + anon_sym_if, + ACTIONS(2863), 1, + anon_sym_PLUS, + ACTIONS(2865), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 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(2278), 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(2242), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [132972] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(742), 1, anon_sym_not, - STATE(3460), 1, + STATE(2350), 1, sym_call, - STATE(3464), 1, + STATE(2965), 1, + sym_expression, + STATE(3006), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3054), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5229), 1, sym_dotted_name, - STATE(5022), 1, - sym_expression, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155229,18 +162304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155248,7 +162323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155265,51 +162340,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129441] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + [133087] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(2667), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(738), 1, sym_identifier, - STATE(2709), 1, + ACTIONS(742), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2968), 1, + sym_expression, + STATE(3006), 1, sym_primary_expression, - STATE(2804), 1, + STATE(3054), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5229), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155318,18 +162393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155337,7 +162412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155354,51 +162429,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129556] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2601), 1, + [133202] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(2667), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(738), 1, sym_identifier, - STATE(2708), 1, + ACTIONS(742), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2969), 1, + sym_expression, + STATE(3006), 1, sym_primary_expression, - STATE(2804), 1, + STATE(3054), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, + STATE(5229), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155407,18 +162482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155426,7 +162501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155443,14 +162518,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129671] = 4, + [133317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1631), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2572), 26, + ACTIONS(3229), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -155477,13 +162550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2570), 32, + ACTIONS(3231), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -155510,51 +162584,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [129742] = 26, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(590), 1, - anon_sym_not, - ACTIONS(598), 1, - sym_string_start, - ACTIONS(610), 1, - anon_sym_DOT, - ACTIONS(2601), 1, + [133386] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(502), 1, sym_float, - STATE(2678), 1, - sym_primary_expression, - STATE(2696), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(738), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2971), 1, sym_expression, - STATE(2837), 1, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5051), 1, + STATE(5229), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155563,18 +162637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3009), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155582,7 +162656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155599,51 +162673,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129857] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + [133501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(610), 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(3235), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1339), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2601), 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, + [133570] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, - anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(2613), 1, + ACTIONS(109), 1, sym_float, - STATE(2751), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3285), 1, + sym_identifier, + STATE(500), 1, sym_primary_expression, - STATE(2824), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(879), 1, sym_call, - STATE(4205), 1, - sym_expression, - STATE(5115), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5934), 1, + STATE(5278), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3056), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155652,18 +162792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3057), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3063), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155671,7 +162811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155688,51 +162828,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [129972] = 26, - ACTIONS(586), 1, - anon_sym_lambda, - ACTIONS(598), 1, + [133685] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 27, + sym__newline, sym_string_start, - ACTIONS(610), 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(2310), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(2601), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [133754] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(2613), 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(2667), 1, + ACTIONS(3239), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [133823] = 26, + ACTIONS(93), 1, + anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(113), 1, sym_identifier, - ACTIONS(2966), 1, + ACTIONS(117), 1, anon_sym_not, - STATE(2694), 1, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + STATE(571), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(2804), 1, - sym_selector_expression, - STATE(2870), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(1004), 1, + sym_selector_expression, + STATE(5230), 1, sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155741,18 +163013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2989), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(596), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155760,7 +163032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3051), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155777,140 +163049,382 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [130087] = 26, - ACTIONS(586), 1, + [133938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3241), 27, + sym__newline, + 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(3243), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(598), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [134007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 27, + sym__newline, sym_string_start, - ACTIONS(610), 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(3289), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2601), 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, + [134076] = 4, + STATE(2221), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(2607), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2611), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(2613), 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(2667), 1, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(2694), 1, - sym_primary_expression, - STATE(2804), 1, - sym_selector_expression, - STATE(2870), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5158), 1, - sym_expression, - STATE(5934), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [134147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3055), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(2609), 3, + ACTIONS(3245), 27, + sym__newline, + 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(3247), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [134216] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2793), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2989), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(596), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3051), 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, - [130202] = 26, - ACTIONS(390), 1, + [134285] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, + STATE(1710), 1, sym_selector_expression, - STATE(5018), 1, + STATE(2238), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5019), 1, + STATE(5254), 1, sym_expression, - STATE(6057), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -155919,18 +163433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -155938,7 +163452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -155955,51 +163469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [130317] = 26, - ACTIONS(714), 1, + [134400] = 26, + ACTIONS(257), 1, + sym_identifier, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(271), 1, + anon_sym_not, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, + STATE(2365), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2399), 1, + sym_expression, + STATE(2406), 1, sym_call, - STATE(4214), 1, + STATE(2456), 1, sym_selector_expression, - STATE(5007), 1, - sym_expression, - STATE(5012), 1, + STATE(5114), 1, sym_dotted_name, - STATE(6132), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156008,18 +163522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -156027,7 +163541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -156044,16 +163558,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [130432] = 4, - STATE(3214), 1, - aux_sym_comparison_operator_repeat1, + [134515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, + ACTIONS(3249), 27, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -156078,13 +163590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3251), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -156111,140 +163624,117 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [130503] = 26, - ACTIONS(534), 1, + [134584] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2797), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(4994), 1, - sym_expression, - STATE(5075), 1, - sym_dotted_name, - STATE(6118), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(546), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2799), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3929), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(548), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3904), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3903), 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, - [130618] = 26, - ACTIONS(714), 1, + [134653] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(2987), 1, + sym_identifier, + STATE(3909), 1, sym_primary_expression, - STATE(4082), 1, + STATE(3968), 1, sym_call, - STATE(4214), 1, + STATE(4224), 1, sym_selector_expression, - STATE(5012), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5124), 1, + STATE(5284), 1, sym_expression, - STATE(6132), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156253,18 +163743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -156272,7 +163762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -156289,103 +163779,143 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [130733] = 26, - ACTIONS(510), 1, + [134768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2809), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(514), 1, - anon_sym_lambda, - ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(526), 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(528), 1, - sym_string_start, - ACTIONS(600), 1, + ACTIONS(2811), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2590), 1, - sym_primary_expression, - STATE(2738), 1, - sym_selector_expression, - STATE(3952), 1, - sym_expression, - STATE(5127), 1, - sym_dotted_name, - STATE(5947), 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, + [134837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(522), 3, + ACTIONS(2813), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2815), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(2856), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(524), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2596), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2614), 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, - [130848] = 4, - STATE(2099), 1, - sym_dictionary, + [134906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + ACTIONS(2817), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -156412,14 +163942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(2819), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -156445,51 +163977,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [130919] = 26, - ACTIONS(390), 1, + [134975] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, + STATE(2393), 1, sym_selector_expression, - STATE(5018), 1, + STATE(2982), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5118), 1, + STATE(5266), 1, sym_expression, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156498,18 +164030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -156517,7 +164049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -156534,21 +164066,30 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [131034] = 3, + [135090] = 10, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 27, - sym__newline, + ACTIONS(2069), 21, 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, @@ -156564,17 +164105,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(2950), 33, + ACTIONS(2067), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -156600,51 +164139,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [131103] = 26, - ACTIONS(510), 1, + [135173] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + ACTIONS(3023), 1, + sym_identifier, + STATE(596), 1, sym_primary_expression, - STATE(2738), 1, + STATE(859), 1, sym_selector_expression, - STATE(3948), 1, - sym_expression, - STATE(5127), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156653,18 +164192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -156672,7 +164211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -156689,51 +164228,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [131218] = 26, - ACTIONS(510), 1, + [135288] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(654), 1, + ACTIONS(3023), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(3291), 1, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2850), 1, + STATE(596), 1, sym_primary_expression, - STATE(2865), 1, - sym_expression, - STATE(3017), 1, + STATE(859), 1, sym_selector_expression, - STATE(5087), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(662), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156742,18 +164281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3124), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -156761,7 +164300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -156778,51 +164317,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [131333] = 26, - ACTIONS(506), 1, - sym_identifier, - ACTIONS(510), 1, + [135403] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(512), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_not, - ACTIONS(520), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - STATE(2396), 1, - sym_call, - STATE(2612), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_not, + STATE(3889), 1, sym_expression, - STATE(2669), 1, + STATE(3936), 1, sym_primary_expression, - STATE(2681), 1, + STATE(3968), 1, + sym_call, + STATE(4250), 1, sym_selector_expression, - STATE(5056), 1, + STATE(5139), 1, sym_dotted_name, - STATE(5947), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156831,18 +164370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -156850,7 +164389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -156867,117 +164406,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [131448] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2948), 27, - sym__newline, - 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(2946), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [131517] = 26, - ACTIONS(390), 1, + [135518] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(700), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(704), 1, + anon_sym_not, + STATE(2436), 1, sym_call, - STATE(3464), 1, + STATE(3079), 1, + sym_expression, + STATE(3196), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3215), 1, sym_selector_expression, - STATE(4845), 1, + STATE(5244), 1, sym_dotted_name, - STATE(5101), 1, - sym_expression, - STATE(6057), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -156986,18 +164459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3289), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157005,7 +164478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157022,80 +164495,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [131632] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2944), 27, - sym__newline, - 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(2942), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, + [135633] = 5, + ACTIONS(3293), 1, 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [131701] = 3, + STATE(918), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 27, - sym__newline, + ACTIONS(2554), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -157120,15 +164530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2938), 33, + ACTIONS(2556), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -157154,117 +164563,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [131770] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2936), 27, - sym__newline, - 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(2934), 33, - anon_sym_import, + [135706] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [131839] = 26, - ACTIONS(510), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(512), 1, - anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + ACTIONS(2987), 1, + sym_identifier, + STATE(3908), 1, sym_primary_expression, - STATE(2738), 1, + STATE(3968), 1, + sym_call, + STATE(4224), 1, sym_selector_expression, - STATE(3942), 1, - sym_expression, - STATE(5127), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(2588), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157273,18 +164616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157292,7 +164635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157309,51 +164652,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [131954] = 26, - ACTIONS(416), 1, + [135821] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, + ACTIONS(808), 1, sym_identifier, - ACTIONS(840), 1, + ACTIONS(812), 1, anon_sym_not, - STATE(241), 1, - sym_expression, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + STATE(860), 1, sym_call, - STATE(2402), 1, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, sym_selector_expression, - STATE(5145), 1, + STATE(3323), 1, + sym_expression, + STATE(5217), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157362,18 +164705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157381,7 +164724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157398,51 +164741,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132069] = 26, - ACTIONS(93), 1, + [135936] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2739), 1, - sym_identifier, - STATE(785), 1, + STATE(1770), 1, + sym_call, + STATE(2008), 1, sym_primary_expression, - STATE(1317), 1, + STATE(2136), 1, + sym_expression, + STATE(2240), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, + STATE(5196), 1, sym_dotted_name, - STATE(5186), 1, - sym_expression, - STATE(5982), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157451,18 +164794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157470,7 +164813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157487,7 +164830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132184] = 26, + [136051] = 26, ACTIONS(93), 1, anon_sym_LPAREN, ACTIONS(95), 1, @@ -157502,125 +164845,36 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(111), 1, sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(2739), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(2968), 1, + ACTIONS(117), 1, anon_sym_not, - STATE(785), 1, - sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5186), 1, - sym_expression, - STATE(5982), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(105), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1950), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(107), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1921), 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, - [132299] = 26, - ACTIONS(390), 1, - anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, - anon_sym_LBRACE, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(406), 1, - sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(557), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(3508), 1, + STATE(879), 1, + sym_call, + STATE(1004), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5230), 1, sym_dotted_name, - STATE(5117), 1, - sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157629,18 +164883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157648,7 +164902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157665,51 +164919,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132414] = 26, - ACTIONS(390), 1, + [136166] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(3906), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3968), 1, + sym_call, + STATE(4224), 1, sym_selector_expression, - STATE(4846), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5128), 1, + STATE(5284), 1, sym_expression, - STATE(6057), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157718,18 +164972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157737,7 +164991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157754,51 +165008,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132529] = 26, - ACTIONS(510), 1, + [136281] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(3223), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(1770), 1, sym_call, - STATE(2594), 1, + STATE(1831), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, + STATE(1955), 1, + sym_selector_expression, STATE(5182), 1, + sym_dotted_name, + STATE(5272), 1, sym_expression, - STATE(5947), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157807,18 +165061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157826,7 +165080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157843,51 +165097,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132644] = 26, - ACTIONS(510), 1, + [136396] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(3223), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(1770), 1, sym_call, - STATE(2593), 1, + STATE(1832), 1, sym_primary_expression, - STATE(5113), 1, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5167), 1, + STATE(5272), 1, sym_expression, - STATE(5947), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157896,18 +165150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -157915,7 +165169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -157932,51 +165186,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132759] = 26, - ACTIONS(93), 1, + [136511] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(780), 1, + ACTIONS(3223), 1, + sym_identifier, + STATE(1770), 1, + sym_call, + STATE(1834), 1, sym_primary_expression, - STATE(1655), 1, + STATE(1955), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(3282), 1, - sym_expression, - STATE(5130), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -157985,18 +165239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158004,7 +165258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158021,51 +165275,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132874] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [136626] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - STATE(726), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3223), 1, + sym_identifier, + STATE(1770), 1, + sym_call, + STATE(1835), 1, sym_primary_expression, - STATE(796), 1, - sym_expression, - STATE(1144), 1, + STATE(1955), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5099), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158074,18 +165328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158093,7 +165347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158110,51 +165364,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [132989] = 26, - ACTIONS(390), 1, + [136741] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(3223), 1, + sym_identifier, + STATE(1770), 1, sym_call, - STATE(3464), 1, + STATE(1836), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1955), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5131), 1, + STATE(5272), 1, sym_expression, - STATE(6057), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158163,18 +165417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158182,7 +165436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158199,51 +165453,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133104] = 26, - ACTIONS(510), 1, + [136856] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(3223), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(1770), 1, sym_call, - STATE(2574), 1, + STATE(1837), 1, sym_primary_expression, - STATE(5113), 1, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5167), 1, + STATE(5272), 1, sym_expression, - STATE(5947), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158252,18 +165506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158271,7 +165525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158288,51 +165542,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133219] = 26, - ACTIONS(93), 1, + [136971] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(3223), 1, sym_identifier, - STATE(789), 1, + STATE(1770), 1, + sym_call, + STATE(1838), 1, sym_primary_expression, - STATE(1317), 1, + STATE(1955), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5186), 1, + STATE(5272), 1, sym_expression, - STATE(5982), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158341,18 +165595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(2161), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158360,7 +165614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158377,51 +165631,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133334] = 26, - ACTIONS(93), 1, + [137086] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(790), 1, + STATE(3905), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(3968), 1, sym_call, - STATE(5113), 1, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5186), 1, + STATE(5284), 1, sym_expression, - STATE(5982), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158430,18 +165684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158449,7 +165703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158466,7 +165720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133449] = 26, + [137201] = 26, ACTIONS(93), 1, anon_sym_LPAREN, ACTIONS(95), 1, @@ -158481,36 +165735,36 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(111), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2739), 1, - sym_identifier, - STATE(791), 1, + STATE(556), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(1004), 1, + sym_selector_expression, + STATE(5230), 1, sym_dotted_name, - STATE(5186), 1, - sym_expression, - STATE(5982), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158519,7 +165773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -158530,7 +165784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158538,7 +165792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158555,51 +165809,203 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133564] = 26, - ACTIONS(93), 1, + [137316] = 23, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(1950), 1, + anon_sym_QMARK_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + ACTIONS(3295), 1, + anon_sym_for, + STATE(1374), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2927), 8, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2923), 19, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - ACTIONS(99), 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137425] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(103), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(109), 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(111), 1, + ACTIONS(2823), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137494] = 26, + ACTIONS(542), 1, + anon_sym_LPAREN, + ACTIONS(544), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, + anon_sym_LBRACE, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(792), 1, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1317), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5186), 1, + STATE(4945), 1, sym_expression, - STATE(5982), 1, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158608,18 +166014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158627,7 +166033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158644,51 +166050,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133679] = 26, - ACTIONS(93), 1, + [137609] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(793), 1, + STATE(3903), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(3968), 1, sym_call, - STATE(5113), 1, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5186), 1, + STATE(5284), 1, sym_expression, - STATE(5982), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158697,18 +166103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158716,7 +166122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158733,51 +166139,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133794] = 26, - ACTIONS(93), 1, + [137724] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(794), 1, + STATE(3902), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(3968), 1, sym_call, - STATE(5113), 1, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5186), 1, + STATE(5284), 1, sym_expression, - STATE(5982), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158786,18 +166192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158805,7 +166211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158822,51 +166228,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [133909] = 26, - ACTIONS(93), 1, + [137839] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(1371), 1, sym_identifier, - STATE(795), 1, + STATE(3778), 1, + sym_call, + STATE(3779), 1, sym_primary_expression, - STATE(1317), 1, + STATE(3900), 1, sym_selector_expression, - STATE(1659), 1, - sym_call, - STATE(5113), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5186), 1, + STATE(5222), 1, sym_expression, - STATE(5982), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4120), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158875,18 +166281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158894,7 +166300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -158911,51 +166317,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134024] = 26, - ACTIONS(510), 1, + [137954] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + ACTIONS(1379), 1, + anon_sym_not, + STATE(2436), 1, sym_call, - STATE(2573), 1, + STATE(3176), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5167), 1, + STATE(3212), 1, + sym_selector_expression, + STATE(4474), 1, sym_expression, - STATE(5947), 1, + STATE(5117), 1, + sym_dotted_name, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(706), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -158964,18 +166370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(3284), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -158983,7 +166389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159000,51 +166406,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134139] = 26, - ACTIONS(510), 1, + [138069] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(820), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + ACTIONS(826), 1, + anon_sym_not, + STATE(137), 1, + sym_expression, + STATE(1770), 1, sym_call, - STATE(2572), 1, + STATE(2024), 1, sym_primary_expression, - STATE(5113), 1, + STATE(2254), 1, + sym_selector_expression, + STATE(5087), 1, sym_dotted_name, - STATE(5167), 1, - sym_expression, - STATE(5947), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159053,18 +166459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2267), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159072,7 +166478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159089,51 +166495,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134254] = 26, - ACTIONS(510), 1, + [138184] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(662), 1, sym_identifier, - STATE(2327), 1, + ACTIONS(668), 1, + anon_sym_not, + STATE(3901), 1, + sym_primary_expression, + STATE(3946), 1, + sym_expression, + STATE(3975), 1, sym_selector_expression, - STATE(2396), 1, + STATE(4216), 1, sym_call, - STATE(2571), 1, - sym_primary_expression, - STATE(5113), 1, + STATE(5164), 1, sym_dotted_name, - STATE(5167), 1, - sym_expression, - STATE(5947), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159142,18 +166548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159161,7 +166567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159178,12 +166584,11 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134369] = 3, + [138299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 27, - sym__newline, + ACTIONS(2825), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -159210,13 +166615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2928), 33, + ACTIONS(2827), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -159244,51 +166650,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [134438] = 26, - ACTIONS(510), 1, + [138368] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2685), 1, - sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, - sym_call, - STATE(2570), 1, + STATE(546), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(5113), 1, + STATE(879), 1, + sym_call, + STATE(1004), 1, + sym_selector_expression, + STATE(5230), 1, sym_dotted_name, - STATE(5167), 1, - sym_expression, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159297,18 +166703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159316,7 +166722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159333,51 +166739,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134553] = 26, - ACTIONS(510), 1, + [138483] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(3265), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, - sym_call, - STATE(2568), 1, + STATE(855), 1, sym_primary_expression, - STATE(5113), 1, + STATE(1411), 1, + sym_call, + STATE(1710), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5167), 1, + STATE(5265), 1, sym_expression, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159386,18 +166792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159405,7 +166811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159422,51 +166828,200 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134668] = 26, - ACTIONS(510), 1, + [138598] = 20, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(2073), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + STATE(1318), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2386), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(516), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [138701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2007), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(520), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(526), 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(528), 1, + ACTIONS(2009), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [138770] = 26, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, + anon_sym_LBRACE, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1247), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(1255), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(3593), 1, sym_call, - STATE(2567), 1, + STATE(3616), 1, sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5167), 1, + STATE(3739), 1, + sym_selector_expression, + STATE(4984), 1, sym_expression, - STATE(5947), 1, + STATE(5162), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159475,18 +167030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159494,7 +167049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159511,51 +167066,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134783] = 26, - ACTIONS(506), 1, + [138885] = 26, + ACTIONS(163), 1, sym_identifier, - ACTIONS(510), 1, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(518), 1, + ACTIONS(177), 1, anon_sym_not, - ACTIONS(520), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(2396), 1, - sym_call, - STATE(2540), 1, + STATE(949), 1, sym_expression, - STATE(2669), 1, + STATE(994), 1, sym_primary_expression, - STATE(2681), 1, + STATE(1278), 1, sym_selector_expression, - STATE(5056), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159564,18 +167119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2849), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159583,7 +167138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159600,51 +167155,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [134898] = 26, - ACTIONS(510), 1, + [139000] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1297), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2396), 1, - sym_call, - STATE(2590), 1, + ACTIONS(3023), 1, + sym_identifier, + STATE(616), 1, sym_primary_expression, - STATE(2738), 1, + STATE(859), 1, sym_selector_expression, - STATE(3935), 1, - sym_expression, - STATE(5127), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5947), 1, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2580), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2588), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(522), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159653,18 +167208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2856), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2596), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159672,7 +167227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159689,51 +167244,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135013] = 26, - ACTIONS(390), 1, + [139115] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(3023), 1, + sym_identifier, + STATE(612), 1, sym_primary_expression, - STATE(3508), 1, + STATE(859), 1, sym_selector_expression, - STATE(5018), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5135), 1, + STATE(5283), 1, sym_expression, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159742,18 +167297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159761,7 +167316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -159778,13 +167333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135128] = 4, - ACTIONS(2970), 1, - anon_sym_DASH_GT, + [139230] = 5, + ACTIONS(3297), 1, + anon_sym_EQ, + STATE(948), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 25, + ACTIONS(2554), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -159796,6 +167353,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, @@ -159810,15 +167368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 34, + ACTIONS(2556), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -159834,7 +167391,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, @@ -159845,12 +167401,102 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [135199] = 3, + [139303] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, + anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + STATE(823), 1, + sym_expression, + STATE(879), 1, + sym_call, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, + sym_selector_expression, + STATE(5146), 1, + sym_dotted_name, + STATE(5966), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2152), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2001), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [139418] = 4, + STATE(948), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 27, - sym__newline, + ACTIONS(2758), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -159877,15 +167523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2922), 33, + ACTIONS(2760), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -159911,51 +167557,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [135268] = 26, - ACTIONS(510), 1, + [139489] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(2685), 1, - sym_identifier, - ACTIONS(2972), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, - sym_call, - STATE(2553), 1, + ACTIONS(3285), 1, + sym_identifier, + STATE(701), 1, sym_primary_expression, - STATE(5113), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5167), 1, + STATE(5278), 1, sym_expression, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -159964,18 +167610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -159983,7 +167629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160000,51 +167646,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135383] = 26, - ACTIONS(390), 1, + [139604] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(959), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(3508), 1, + STATE(1278), 1, sym_selector_expression, - STATE(4835), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5006), 1, - sym_expression, - STATE(6057), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160053,18 +167699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160072,7 +167718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160089,51 +167735,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135498] = 26, - ACTIONS(510), 1, + [139719] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(512), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(514), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(516), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(520), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(528), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(600), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2685), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(2327), 1, - sym_selector_expression, - STATE(2396), 1, - sym_call, - STATE(2553), 1, + STATE(871), 1, sym_primary_expression, - STATE(5113), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5167), 1, + STATE(5256), 1, sym_expression, - STATE(5947), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2588), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(522), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160142,18 +167788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2618), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(524), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160161,7 +167807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2614), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160178,117 +167824,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135613] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2555), 27, - sym__newline, - 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(2550), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [135682] = 26, - ACTIONS(714), 1, + [139834] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(3285), 1, + sym_identifier, + STATE(695), 1, sym_primary_expression, - STATE(4082), 1, + STATE(879), 1, sym_call, - STATE(4214), 1, + STATE(978), 1, sym_selector_expression, - STATE(5012), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5153), 1, + STATE(5278), 1, sym_expression, - STATE(6132), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160297,18 +167877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160316,7 +167896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160333,51 +167913,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135797] = 26, - ACTIONS(390), 1, + [139949] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2749), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2850), 1, + sym_call, + STATE(2879), 1, sym_selector_expression, - STATE(4883), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5111), 1, - sym_expression, - STATE(6057), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160386,18 +167966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160405,7 +167985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160422,7 +168002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [135912] = 26, + [140064] = 26, ACTIONS(93), 1, anon_sym_LPAREN, ACTIONS(95), 1, @@ -160437,36 +168017,36 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(111), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(798), 1, + ACTIONS(3299), 1, + anon_sym_not, + STATE(601), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5186), 1, + STATE(5278), 1, sym_expression, - STATE(5982), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160475,7 +168055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -160486,7 +168066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160494,7 +168074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160511,7 +168091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136027] = 26, + [140179] = 26, ACTIONS(93), 1, anon_sym_LPAREN, ACTIONS(95), 1, @@ -160526,36 +168106,36 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(111), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2739), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(799), 1, + STATE(601), 1, sym_primary_expression, - STATE(1317), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5173), 1, + STATE(5278), 1, sym_expression, - STATE(5982), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160564,7 +168144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1950), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -160575,7 +168155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160583,7 +168163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160600,51 +168180,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136142] = 26, - ACTIONS(534), 1, + [140294] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(3716), 1, + STATE(4095), 1, sym_primary_expression, - STATE(3719), 1, + STATE(4096), 1, sym_call, - STATE(3727), 1, + STATE(4309), 1, sym_selector_expression, - STATE(5075), 1, - sym_dotted_name, - STATE(5154), 1, + STATE(5086), 1, sym_expression, - STATE(6118), 1, + STATE(5205), 1, + sym_dotted_name, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160653,18 +168233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160672,7 +168252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160689,23 +168269,30 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136257] = 4, - ACTIONS(2578), 1, - anon_sym_EQ, + [140409] = 10, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 27, - sym__newline, + ACTIONS(1940), 21, 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, @@ -160721,16 +168308,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(2560), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -160756,23 +168342,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [136328] = 4, - STATE(784), 1, - aux_sym_union_type_repeat1, + [140492] = 10, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 27, - sym__newline, + ACTIONS(1940), 21, 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, @@ -160788,16 +168381,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(2912), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -160823,51 +168415,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [136399] = 26, - ACTIONS(390), 1, + [140575] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(863), 1, sym_primary_expression, - STATE(3508), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, sym_selector_expression, - STATE(4884), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5109), 1, + STATE(5256), 1, sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -160876,18 +168468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -160895,7 +168487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -160912,122 +168504,436 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136514] = 8, - ACTIONS(2977), 1, - anon_sym_not, - ACTIONS(2983), 1, - anon_sym_is, - STATE(1713), 1, + [140690] = 12, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2974), 3, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 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(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(2980), 4, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [140777] = 16, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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, - ACTIONS(2863), 23, - sym__newline, + sym_float, + ACTIONS(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [140872] = 15, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [140965] = 14, + ACTIONS(2643), 1, anon_sym_LPAREN, + ACTIONS(2645), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, anon_sym_STAR_STAR, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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(1942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [141056] = 13, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2995), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1940), 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_QMARK_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(2861), 27, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [136593] = 26, - ACTIONS(534), 1, + [141145] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(3027), 1, + sym_identifier, + STATE(854), 1, sym_primary_expression, - STATE(3719), 1, + STATE(879), 1, sym_call, - STATE(3727), 1, + STATE(978), 1, sym_selector_expression, - STATE(5075), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5091), 1, + STATE(5256), 1, sym_expression, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161036,18 +168942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161055,7 +168961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161072,51 +168978,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136708] = 26, - ACTIONS(416), 1, + [141260] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_not, - STATE(2252), 1, + STATE(960), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(2365), 1, - sym_call, - STATE(2402), 1, + STATE(1278), 1, sym_selector_expression, - STATE(3473), 1, - sym_expression, - STATE(5145), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161125,18 +169031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161144,7 +169050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161161,51 +169067,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136823] = 26, - ACTIONS(390), 1, + [141375] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3105), 27, + sym__newline, + 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(3103), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [141444] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(808), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(812), 1, + anon_sym_not, + STATE(860), 1, sym_call, - STATE(3464), 1, + STATE(958), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2056), 1, sym_selector_expression, - STATE(4849), 1, - sym_dotted_name, - STATE(5139), 1, + STATE(3320), 1, sym_expression, - STATE(6057), 1, + STATE(5217), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161214,18 +169186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161233,7 +169205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161250,51 +169222,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [136938] = 26, - ACTIONS(714), 1, + [141559] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, + STATE(962), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(1278), 1, sym_selector_expression, - STATE(5012), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5070), 1, - sym_expression, - STATE(6132), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161303,18 +169275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161322,7 +169294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161339,51 +169311,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137053] = 26, - ACTIONS(390), 1, + [141674] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(838), 1, sym_primary_expression, - STATE(3508), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, sym_selector_expression, - STATE(4850), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5138), 1, + STATE(5256), 1, sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161392,18 +169364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161411,7 +169383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161428,51 +169400,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137168] = 26, - ACTIONS(416), 1, + [141789] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2252), 1, + ACTIONS(3027), 1, + sym_identifier, + STATE(836), 1, sym_primary_expression, - STATE(2365), 1, + STATE(879), 1, sym_call, - STATE(2402), 1, + STATE(978), 1, sym_selector_expression, - STATE(3480), 1, - sym_expression, - STATE(5145), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161481,18 +169453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161500,7 +169472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161517,51 +169489,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137283] = 26, - ACTIONS(390), 1, + [141904] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2672), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5137), 1, + STATE(5280), 1, sym_expression, - STATE(6057), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161570,18 +169542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161589,7 +169561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161606,51 +169578,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137398] = 26, - ACTIONS(390), 1, + [142019] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2673), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5134), 1, + STATE(5280), 1, sym_expression, - STATE(6057), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161659,18 +169631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161678,7 +169650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161695,51 +169667,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137513] = 26, - ACTIONS(257), 1, + [142134] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2986), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(2292), 1, + ACTIONS(1421), 1, + anon_sym_not, + STATE(254), 1, + sym_expression, + STATE(2350), 1, + sym_call, + STATE(2985), 1, sym_primary_expression, - STATE(2352), 1, + STATE(3044), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(5113), 1, + STATE(5201), 1, sym_dotted_name, - STATE(5175), 1, - sym_expression, - STATE(6187), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161748,18 +169720,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161767,7 +169739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161784,51 +169756,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137628] = 26, - ACTIONS(714), 1, + [142249] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(2917), 1, + sym_identifier, + STATE(2674), 1, sym_primary_expression, - STATE(4082), 1, + STATE(2751), 1, sym_call, - STATE(4214), 1, + STATE(2842), 1, sym_selector_expression, - STATE(5012), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5129), 1, + STATE(5280), 1, sym_expression, - STATE(6132), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -161837,18 +169809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -161856,7 +169828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -161873,140 +169845,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137743] = 26, - ACTIONS(534), 1, + [142364] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2807), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(550), 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(552), 1, - sym_string_start, - ACTIONS(624), 1, + ACTIONS(2805), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(5075), 1, - sym_dotted_name, - STATE(5110), 1, - sym_expression, - STATE(6118), 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, + [142433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(2803), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2801), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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(3929), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(548), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(3904), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3903), 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, - [137858] = 26, - ACTIONS(390), 1, + [142502] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, + STATE(125), 1, + sym_expression, + STATE(2350), 1, sym_call, - STATE(3464), 1, + STATE(2453), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2704), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5152), 1, sym_dotted_name, - STATE(5064), 1, - sym_expression, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162015,18 +170030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2801), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162034,7 +170049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162051,51 +170066,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [137973] = 26, - ACTIONS(390), 1, + [142617] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, + ACTIONS(3027), 1, + sym_identifier, + STATE(879), 1, sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, + STATE(978), 1, sym_selector_expression, - STATE(5018), 1, + STATE(1814), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5062), 1, + STATE(5256), 1, sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162104,18 +170119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162123,7 +170138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162140,51 +170155,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138088] = 26, - ACTIONS(390), 1, + [142732] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2917), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2675), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2751), 1, + sym_call, + STATE(2842), 1, sym_selector_expression, - STATE(4890), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5061), 1, + STATE(5280), 1, sym_expression, - STATE(6057), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162193,18 +170208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162212,7 +170227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162229,51 +170244,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138203] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [142847] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - STATE(2281), 1, - sym_expression, - STATE(2314), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2917), 1, + sym_identifier, + STATE(2676), 1, sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(2751), 1, sym_call, - STATE(5063), 1, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5280), 1, + sym_expression, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162282,18 +170297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162301,7 +170316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162318,51 +170333,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138318] = 26, - ACTIONS(257), 1, + [142962] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(2986), 1, - sym_identifier, - ACTIONS(2988), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2292), 1, - sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, sym_call, - STATE(5113), 1, + STATE(2393), 1, + sym_selector_expression, + STATE(3001), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5175), 1, + STATE(5266), 1, sym_expression, - STATE(6187), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162371,18 +170386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2561), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162390,7 +170405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162407,51 +170422,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138433] = 26, - ACTIONS(257), 1, + [143077] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2986), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(2280), 1, + STATE(653), 1, sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5175), 1, + STATE(5278), 1, sym_expression, - STATE(6187), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162460,18 +170475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162479,7 +170494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162496,51 +170511,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138548] = 26, - ACTIONS(416), 1, + [143192] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_not, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + STATE(1770), 1, sym_call, - STATE(2402), 1, - sym_selector_expression, - STATE(3474), 1, + STATE(1875), 1, sym_expression, - STATE(5145), 1, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, sym_dotted_name, - STATE(5953), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162549,18 +170564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162568,7 +170583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162585,51 +170600,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138663] = 26, - ACTIONS(93), 1, + [143307] = 26, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(772), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(1409), 1, anon_sym_not, - STATE(780), 1, + STATE(4095), 1, sym_primary_expression, - STATE(1655), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(4096), 1, sym_call, - STATE(3284), 1, + STATE(4309), 1, + sym_selector_expression, + STATE(5066), 1, sym_expression, - STATE(5130), 1, + STATE(5205), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162638,18 +170653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(4409), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162657,7 +170672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162674,51 +170689,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138778] = 26, - ACTIONS(257), 1, + [143422] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2986), 1, + ACTIONS(2917), 1, sym_identifier, - STATE(2278), 1, + STATE(2678), 1, sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(2751), 1, sym_call, - STATE(5113), 1, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5175), 1, + STATE(5280), 1, sym_expression, - STATE(6187), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162727,18 +170742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162746,7 +170761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162763,51 +170778,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [138893] = 26, - ACTIONS(257), 1, + [143537] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2986), 1, + ACTIONS(808), 1, sym_identifier, - STATE(2277), 1, + ACTIONS(812), 1, + anon_sym_not, + STATE(860), 1, + sym_call, + STATE(958), 1, sym_primary_expression, - STATE(2352), 1, + STATE(2056), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5175), 1, + STATE(3319), 1, sym_expression, - STATE(6187), 1, + STATE(5217), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162816,18 +170831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162835,7 +170850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162852,51 +170867,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139008] = 26, - ACTIONS(390), 1, + [143652] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2719), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2725), 1, + sym_expression, + STATE(2736), 1, sym_selector_expression, - STATE(4869), 1, + STATE(2751), 1, + sym_call, + STATE(5171), 1, sym_dotted_name, - STATE(5106), 1, - sym_expression, - STATE(6057), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162905,18 +170920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -162924,7 +170939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -162941,51 +170956,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139123] = 26, - ACTIONS(390), 1, + [143767] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(738), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(742), 1, + anon_sym_not, + STATE(117), 1, + sym_expression, + STATE(2350), 1, sym_call, - STATE(3464), 1, + STATE(3006), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3054), 1, sym_selector_expression, - STATE(4899), 1, + STATE(5229), 1, sym_dotted_name, - STATE(5060), 1, - sym_expression, - STATE(6057), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -162994,18 +171009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163013,7 +171028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163030,51 +171045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139238] = 26, - ACTIONS(416), 1, + [143882] = 26, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2917), 1, sym_identifier, - STATE(2260), 1, + STATE(2679), 1, sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(2751), 1, sym_call, - STATE(5113), 1, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5196), 1, + STATE(5280), 1, sym_expression, - STATE(5953), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163083,18 +171098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163102,7 +171117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163119,51 +171134,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139353] = 26, - ACTIONS(416), 1, + [143997] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(2255), 1, + STATE(833), 1, sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5179), 1, + STATE(5256), 1, sym_expression, - STATE(5953), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163172,18 +171187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163191,7 +171206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163208,250 +171223,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139468] = 4, - ACTIONS(2990), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 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(2512), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [139539] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2900), 27, - sym__newline, - 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(2898), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [139608] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2896), 27, - sym__newline, - 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(2894), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [139677] = 26, - ACTIONS(534), 1, + [144112] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(3027), 1, + sym_identifier, + STATE(831), 1, sym_primary_expression, - STATE(3719), 1, + STATE(879), 1, sym_call, - STATE(3727), 1, + STATE(978), 1, sym_selector_expression, - STATE(5008), 1, - sym_expression, - STATE(5075), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163460,18 +171276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163479,7 +171295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163496,17 +171312,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139792] = 5, - ACTIONS(2992), 1, - anon_sym_PIPE, - STATE(1743), 1, - aux_sym_union_type_repeat1, + [144227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 25, + ACTIONS(2007), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -163519,6 +171331,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, @@ -163530,13 +171343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 33, + ACTIONS(2009), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -163564,51 +171378,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [139865] = 26, - ACTIONS(416), 1, + [144296] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(522), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(524), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(534), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(536), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(574), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(576), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, - sym_identifier, - STATE(2248), 1, + STATE(2715), 1, + sym_expression, + STATE(2719), 1, sym_primary_expression, - STATE(2326), 1, + STATE(2736), 1, sym_selector_expression, - STATE(2365), 1, + STATE(2751), 1, sym_call, - STATE(5113), 1, + STATE(5171), 1, sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, + STATE(6038), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(2986), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2995), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(530), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163617,18 +171431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(2885), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(532), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2983), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163636,7 +171450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2981), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163653,51 +171467,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [139980] = 26, - ACTIONS(416), 1, + [144411] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(1427), 1, sym_identifier, - STATE(2249), 1, + ACTIONS(1431), 1, + anon_sym_not, + STATE(256), 1, + sym_expression, + STATE(2850), 1, + sym_call, + STATE(2852), 1, sym_primary_expression, - STATE(2326), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5113), 1, + STATE(5216), 1, sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163706,18 +171520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163725,7 +171539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163742,51 +171556,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140095] = 26, - ACTIONS(390), 1, + [144526] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, sym_call, - STATE(3464), 1, + STATE(3976), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4260), 1, sym_selector_expression, - STATE(4870), 1, - sym_dotted_name, - STATE(5105), 1, + STATE(5056), 1, sym_expression, - STATE(6057), 1, + STATE(5088), 1, + sym_dotted_name, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163795,18 +171609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163814,7 +171628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163831,51 +171645,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140210] = 26, - ACTIONS(390), 1, + [144641] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(392), 1, - anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, sym_call, - STATE(3464), 1, + STATE(3976), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4260), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5088), 1, sym_dotted_name, - STATE(5103), 1, + STATE(5135), 1, sym_expression, - STATE(6057), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163884,18 +171698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163903,7 +171717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -163920,51 +171734,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140325] = 26, - ACTIONS(87), 1, - sym_identifier, - ACTIONS(93), 1, + [144756] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_not, - ACTIONS(103), 1, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(193), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(195), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - STATE(726), 1, - sym_primary_expression, - STATE(802), 1, + ACTIONS(1411), 1, + sym_identifier, + ACTIONS(1415), 1, + anon_sym_not, + STATE(251), 1, sym_expression, - STATE(1144), 1, + STATE(2889), 1, + sym_primary_expression, + STATE(3102), 1, sym_selector_expression, - STATE(1659), 1, + STATE(3115), 1, sym_call, - STATE(5099), 1, + STATE(5119), 1, sym_dotted_name, - STATE(5982), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -163973,18 +171787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2056), 4, + STATE(3236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -163992,7 +171806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164009,51 +171823,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140440] = 26, - ACTIONS(257), 1, + [144871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2778), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(2776), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2986), 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, + [144940] = 26, + ACTIONS(9), 1, sym_identifier, - STATE(2268), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 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(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, + sym_call, + STATE(3976), 1, sym_primary_expression, - STATE(2352), 1, + STATE(4260), 1, sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(5113), 1, + STATE(5088), 1, sym_dotted_name, - STATE(5188), 1, + STATE(5243), 1, sym_expression, - STATE(6187), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164062,18 +171942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(4501), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164081,7 +171961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164098,51 +171978,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140555] = 26, - ACTIONS(416), 1, + [145055] = 7, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3261), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 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(2540), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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, + [145132] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(1092), 1, sym_identifier, - STATE(2250), 1, + ACTIONS(1098), 1, + anon_sym_not, + STATE(209), 1, + sym_expression, + STATE(2314), 1, sym_primary_expression, - STATE(2326), 1, + STATE(2361), 1, sym_selector_expression, - STATE(2365), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5145), 1, sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164151,18 +172101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(2600), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164170,7 +172120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164187,51 +172137,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140670] = 26, - ACTIONS(93), 1, + [145247] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(95), 1, - anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - STATE(780), 1, + ACTIONS(2987), 1, + sym_identifier, + ACTIONS(3301), 1, + sym_line_continuation, + STATE(3954), 1, sym_primary_expression, - STATE(1655), 1, - sym_selector_expression, - STATE(1659), 1, + STATE(3968), 1, sym_call, - STATE(3272), 1, - sym_expression, - STATE(5130), 1, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1957), 2, - sym_binary_operator, - sym_subscript, - STATE(1969), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164240,18 +172191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164259,7 +172210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164276,51 +172227,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140785] = 26, - ACTIONS(416), 1, + [145364] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(808), 1, sym_identifier, - STATE(2256), 1, + ACTIONS(812), 1, + anon_sym_not, + STATE(860), 1, + sym_call, + STATE(958), 1, sym_primary_expression, - STATE(2326), 1, + STATE(2056), 1, sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5179), 1, + STATE(3316), 1, sym_expression, - STATE(5953), 1, + STATE(5217), 1, + sym_dotted_name, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164329,18 +172280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164348,7 +172299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164365,51 +172316,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [140900] = 26, - ACTIONS(390), 1, + [145479] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(716), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2847), 1, + sym_expression, + STATE(2856), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3034), 1, sym_selector_expression, - STATE(4991), 1, - sym_expression, - STATE(5018), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164418,18 +172369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164437,7 +172388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164454,51 +172405,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [141015] = 26, - ACTIONS(416), 1, + [145594] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, sym_identifier, - STATE(2257), 1, + ACTIONS(590), 1, + anon_sym_not, + STATE(3929), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3968), 1, sym_call, - STATE(5113), 1, + STATE(4250), 1, + sym_selector_expression, + STATE(5139), 1, sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164507,18 +172458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164526,7 +172477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164543,51 +172494,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [141130] = 26, - ACTIONS(416), 1, + [145709] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(584), 1, sym_identifier, - STATE(2258), 1, + ACTIONS(590), 1, + anon_sym_not, + STATE(3814), 1, + sym_expression, + STATE(3936), 1, sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, + STATE(3968), 1, sym_call, - STATE(5113), 1, + STATE(4250), 1, + sym_selector_expression, + STATE(5139), 1, sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4262), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164596,18 +172547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164615,7 +172566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164632,51 +172583,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [141245] = 26, - ACTIONS(416), 1, + [145824] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(3263), 1, sym_identifier, - STATE(2271), 1, - sym_primary_expression, - STATE(2326), 1, + STATE(3458), 1, sym_selector_expression, - STATE(2365), 1, + STATE(3593), 1, sym_call, - STATE(5113), 1, + STATE(3605), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5179), 1, + STATE(5281), 1, sym_expression, - STATE(5953), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(428), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164685,18 +172636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2621), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164704,7 +172655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164721,51 +172672,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [141360] = 26, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(416), 1, + [145939] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(424), 1, - anon_sym_not, - ACTIONS(426), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - STATE(2309), 1, - sym_expression, - STATE(2314), 1, - sym_primary_expression, - STATE(2338), 1, - sym_selector_expression, - STATE(2365), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, sym_call, - STATE(5063), 1, + STATE(1710), 1, + sym_selector_expression, + STATE(1892), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164774,18 +172725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2536), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164793,7 +172744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164810,51 +172761,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [141475] = 26, - ACTIONS(416), 1, + [146054] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(422), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(426), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(434), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(442), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(834), 1, + ACTIONS(2941), 1, sym_identifier, - ACTIONS(840), 1, + ACTIONS(3303), 1, anon_sym_not, - STATE(2252), 1, - sym_primary_expression, - STATE(2365), 1, + STATE(1411), 1, sym_call, - STATE(2402), 1, + STATE(1710), 1, sym_selector_expression, - STATE(3495), 1, - sym_expression, - STATE(5145), 1, + STATE(1892), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5953), 1, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2454), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2455), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - ACTIONS(428), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -164863,18 +172814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2453), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(430), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2459), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -164882,7 +172833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2463), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -164899,55 +172850,66 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [141590] = 4, - STATE(1571), 1, - aux_sym_dotted_name_repeat1, + [146169] = 14, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 26, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2471), 33, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -164956,7 +172918,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, @@ -164966,204 +172927,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [141661] = 26, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_lambda, - ACTIONS(720), 1, - anon_sym_LBRACE, - ACTIONS(724), 1, - anon_sym_DQUOTE, - ACTIONS(730), 1, - sym_float, - ACTIONS(732), 1, - sym_string_start, - ACTIONS(752), 1, - anon_sym_DOT, - ACTIONS(754), 1, - anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(5012), 1, - sym_dotted_name, - STATE(5093), 1, - sym_expression, - STATE(6132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(726), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(4299), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(728), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(4268), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4260), 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, - [141776] = 26, - ACTIONS(416), 1, + [146260] = 13, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(418), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2687), 1, - sym_identifier, - ACTIONS(2995), 1, - anon_sym_not, - STATE(2265), 1, - sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, - sym_quant_op, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(428), 3, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2621), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [141891] = 4, - ACTIONS(2997), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 25, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, + 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -165174,24 +172971,21 @@ 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(2483), 34, + ACTIONS(1942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -165200,8 +172994,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, anon_sym_is, @@ -165211,12 +173003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [141962] = 3, + [146349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 27, - sym__newline, + ACTIONS(2774), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -165243,13 +173034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2885), 33, + ACTIONS(2772), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -165277,276 +173069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [142031] = 26, - ACTIONS(416), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(420), 1, - anon_sym_lambda, - ACTIONS(422), 1, - anon_sym_LBRACE, - ACTIONS(426), 1, - anon_sym_DQUOTE, - ACTIONS(432), 1, - sym_float, - ACTIONS(434), 1, - sym_string_start, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2687), 1, - sym_identifier, - STATE(2265), 1, - sym_primary_expression, - STATE(2326), 1, - sym_selector_expression, - STATE(2365), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5179), 1, - sym_expression, - STATE(5953), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2455), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(428), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2621), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(430), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2463), 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, - [142146] = 26, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, - anon_sym_LBRACE, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1395), 1, - anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3663), 1, - sym_call, - STATE(4370), 1, - sym_primary_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5201), 1, - sym_expression, - STATE(6002), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(750), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(3485), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [142261] = 26, - ACTIONS(534), 1, - anon_sym_LPAREN, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(538), 1, - anon_sym_lambda, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(544), 1, - anon_sym_DQUOTE, - ACTIONS(550), 1, - sym_float, - ACTIONS(552), 1, - sym_string_start, - ACTIONS(624), 1, - anon_sym_DOT, - ACTIONS(626), 1, - anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(5075), 1, - sym_dotted_name, - STATE(5086), 1, - sym_expression, - STATE(6118), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3920), 2, - sym_binary_operator, - sym_subscript, - STATE(3921), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(546), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(3929), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(548), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3904), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3903), 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, - [142376] = 26, - ACTIONS(9), 1, - sym_identifier, + [146418] = 26, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(21), 1, @@ -165557,37 +173080,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, ACTIONS(49), 1, anon_sym_DQUOTE, ACTIONS(53), 1, sym_float, ACTIONS(55), 1, sym_string_start, - ACTIONS(219), 1, + ACTIONS(199), 1, anon_sym_LBRACK, - STATE(3862), 1, - sym_primary_expression, + ACTIONS(584), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_not, STATE(3874), 1, - sym_call, - STATE(4139), 1, - sym_selector_expression, - STATE(4941), 1, sym_expression, - STATE(5116), 1, + STATE(3936), 1, + sym_primary_expression, + STATE(3968), 1, + sym_call, + STATE(4250), 1, + sym_selector_expression, + STATE(5139), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(4261), 2, sym_binary_operator, sym_subscript, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, @@ -165597,7 +173122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(4268), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -165608,7 +173133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(4259), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -165616,7 +173141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -165633,51 +173158,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [142491] = 26, - ACTIONS(93), 1, + [146533] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(95), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(97), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(99), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(103), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(109), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(111), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(772), 1, + ACTIONS(213), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(217), 1, anon_sym_not, - STATE(780), 1, - sym_primary_expression, - STATE(1655), 1, - sym_selector_expression, - STATE(1659), 1, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + STATE(1411), 1, sym_call, - STATE(3275), 1, + STATE(1730), 1, + sym_primary_expression, + STATE(1894), 1, sym_expression, - STATE(5130), 1, + STATE(2191), 1, + sym_selector_expression, + STATE(5137), 1, sym_dotted_name, - STATE(5982), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1957), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(1969), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(105), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -165686,18 +173211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1980), 4, + STATE(2269), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(107), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1922), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -165705,7 +173230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1921), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -165722,51 +173247,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [142606] = 26, - ACTIONS(534), 1, + [146648] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(818), 1, anon_sym_not, - STATE(3716), 1, + STATE(132), 1, + sym_expression, + STATE(847), 1, sym_primary_expression, - STATE(3719), 1, + STATE(879), 1, sym_call, - STATE(3727), 1, + STATE(1752), 1, sym_selector_expression, - STATE(5054), 1, - sym_expression, - STATE(5075), 1, + STATE(5179), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -165775,18 +173300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -165794,7 +173319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -165811,51 +173336,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [142721] = 26, - ACTIONS(486), 1, + [146763] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(1369), 1, + ACTIONS(3305), 1, anon_sym_not, - STATE(3761), 1, - sym_primary_expression, - STATE(3981), 1, + STATE(3458), 1, sym_selector_expression, - STATE(4111), 1, + STATE(3593), 1, sym_call, - STATE(4828), 1, - sym_expression, - STATE(4995), 1, + STATE(3605), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -165864,18 +173389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -165883,7 +173408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -165900,51 +173425,136 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [142836] = 26, - ACTIONS(390), 1, + [146878] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, + 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_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [146985] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3263), 1, sym_identifier, - STATE(3460), 1, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, sym_call, - STATE(3464), 1, + STATE(3603), 1, sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(4880), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5081), 1, + STATE(5281), 1, sym_expression, - STATE(6057), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -165953,18 +173563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -165972,7 +173582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -165989,51 +173599,121 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [142951] = 26, - ACTIONS(486), 1, + [147100] = 7, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2981), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + 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(2540), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(492), 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_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, + [147177] = 26, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3761), 1, - sym_primary_expression, - STATE(3981), 1, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(4111), 1, + STATE(3593), 1, sym_call, - STATE(4873), 1, - sym_expression, - STATE(4995), 1, + STATE(3601), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166042,18 +173722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -166061,7 +173741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -166078,140 +173758,341 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [143066] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [147292] = 5, + ACTIONS(3307), 1, + anon_sym_in, + ACTIONS(3309), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_lambda, - ACTIONS(27), 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_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, + [147365] = 8, + ACTIONS(3314), 1, anon_sym_not, - ACTIONS(49), 1, + ACTIONS(3320), 1, + anon_sym_is, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3311), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3317), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - 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_QMARK_LBRACK, sym_float, - ACTIONS(55), 1, + ACTIONS(2841), 28, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [147444] = 4, + ACTIONS(2742), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 26, + sym__dedent, sym_string_start, - ACTIONS(219), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(3862), 1, - sym_primary_expression, - STATE(3874), 1, - sym_call, - STATE(4139), 1, - sym_selector_expression, - STATE(4981), 1, - sym_expression, - STATE(5116), 1, - sym_dotted_name, - STATE(6288), 1, - sym_quant_op, + anon_sym_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(2556), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [147515] = 21, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, + anon_sym_LBRACK, + ACTIONS(2077), 1, + anon_sym_QMARK_DOT, + ACTIONS(2079), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2693), 1, + anon_sym_STAR_STAR, + ACTIONS(2703), 1, + anon_sym_CARET, + ACTIONS(2705), 1, + anon_sym_AMP, + ACTIONS(2740), 1, + anon_sym_PIPE, + ACTIONS(2907), 1, + anon_sym_not, + ACTIONS(2911), 1, + anon_sym_is, + STATE(1318), 1, + sym_argument_list, + STATE(3279), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(2691), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2695), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2697), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2905), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2310), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 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_check, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(4401), 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, - [143181] = 26, - ACTIONS(486), 1, + [147620] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - STATE(3729), 1, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + STATE(3820), 1, sym_primary_expression, - STATE(3853), 1, - sym_expression, - STATE(4027), 1, - sym_selector_expression, - STATE(4111), 1, + STATE(4216), 1, sym_call, - STATE(5069), 1, + STATE(4246), 1, + sym_selector_expression, + STATE(4927), 1, + sym_expression, + STATE(5180), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166220,18 +174101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -166239,7 +174120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -166256,51 +174137,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [143296] = 26, - ACTIONS(714), 1, + [147735] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(3285), 1, + sym_identifier, + STATE(719), 1, sym_primary_expression, - STATE(4082), 1, + STATE(879), 1, sym_call, - STATE(4214), 1, + STATE(978), 1, sym_selector_expression, - STATE(5012), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5027), 1, + STATE(5278), 1, sym_expression, - STATE(6132), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166309,18 +174190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -166328,7 +174209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -166345,51 +174226,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [143411] = 26, - ACTIONS(9), 1, + [147850] = 26, + ACTIONS(257), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(265), 1, + anon_sym_LBRACK, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(271), 1, anon_sym_not, - ACTIONS(49), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + STATE(2365), 1, sym_primary_expression, - STATE(3874), 1, + STATE(2406), 1, sym_call, - STATE(4139), 1, - sym_selector_expression, - STATE(5057), 1, + STATE(2416), 1, sym_expression, - STATE(5116), 1, + STATE(2456), 1, + sym_selector_expression, + STATE(5114), 1, sym_dotted_name, - STATE(6288), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - STATE(4390), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166398,18 +174279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -166417,7 +174298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -166434,14 +174315,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [143526] = 3, + [147965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 27, - sym__newline, + ACTIONS(2825), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -166466,13 +174346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2881), 33, + ACTIONS(2827), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -166500,51 +174381,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [143595] = 26, - ACTIONS(390), 1, + [148034] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(720), 1, sym_primary_expression, - STATE(3508), 1, + STATE(879), 1, + sym_call, + STATE(978), 1, sym_selector_expression, - STATE(4881), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5080), 1, + STATE(5278), 1, sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166553,18 +174434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -166572,7 +174453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -166589,318 +174470,203 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [143710] = 26, - ACTIONS(486), 1, + [148149] = 21, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, - anon_sym_LBRACE, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(502), 1, - sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1369), 1, + ACTIONS(1952), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR_STAR, + ACTIONS(2681), 1, + anon_sym_PIPE, + ACTIONS(2683), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_CARET, + ACTIONS(2750), 1, anon_sym_not, - STATE(3761), 1, - sym_primary_expression, - STATE(3981), 1, - sym_selector_expression, - STATE(4111), 1, - sym_call, - STATE(4874), 1, - sym_expression, - STATE(4995), 1, - sym_dotted_name, - STATE(6002), 1, - sym_quant_op, + ACTIONS(2754), 1, + anon_sym_is, + STATE(1374), 1, + sym_argument_list, + STATE(3283), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(2673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2677), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2679), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2748), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2752), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(29), 4, + sym_float, + ACTIONS(2310), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(500), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_and, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3535), 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, - [143825] = 26, - ACTIONS(257), 1, - anon_sym_LPAREN, - ACTIONS(259), 1, - anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, - anon_sym_LBRACE, - ACTIONS(267), 1, - anon_sym_DQUOTE, - ACTIONS(273), 1, - sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + [148254] = 5, + ACTIONS(3323), 1, + anon_sym_in, + ACTIONS(3325), 1, anon_sym_not, - ACTIONS(2986), 1, - sym_identifier, - STATE(2275), 1, - sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, - sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5175), 1, - sym_expression, - STATE(6187), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(269), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(29), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2644), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(271), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(3542), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2517), 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, - [143940] = 26, - ACTIONS(390), 1, + ACTIONS(201), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(400), 1, - anon_sym_DQUOTE, - ACTIONS(406), 1, - sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, - sym_primary_expression, - STATE(3508), 1, - sym_selector_expression, - STATE(5017), 1, - sym_expression, - STATE(5018), 1, - sym_dotted_name, - STATE(6057), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(402), 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, - ACTIONS(29), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(404), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + 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(3671), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(3665), 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, - [144055] = 26, - ACTIONS(486), 1, + [148327] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(1100), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3844), 1, + ACTIONS(1104), 1, + anon_sym_not, + STATE(129), 1, + sym_expression, + STATE(2405), 1, sym_primary_expression, - STATE(4111), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(2593), 1, + sym_selector_expression, + STATE(5095), 1, sym_dotted_name, - STATE(5203), 1, - sym_expression, - STATE(6002), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166909,18 +174675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2614), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -166928,7 +174694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -166945,51 +174711,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144170] = 26, - ACTIONS(486), 1, + [148442] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3842), 1, + STATE(734), 1, sym_primary_expression, - STATE(4111), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5191), 1, + STATE(5278), 1, sym_expression, - STATE(6002), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -166998,18 +174764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167017,7 +174783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167034,51 +174800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144285] = 26, - ACTIONS(390), 1, + [148557] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2765), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2850), 1, + sym_call, + STATE(2879), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5191), 1, sym_dotted_name, - STATE(5078), 1, - sym_expression, - STATE(6057), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167087,18 +174853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167106,7 +174872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167123,51 +174889,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144400] = 26, - ACTIONS(486), 1, + [148672] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3839), 1, + STATE(743), 1, sym_primary_expression, - STATE(4111), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5191), 1, + STATE(5278), 1, sym_expression, - STATE(6002), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167176,18 +174942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167195,7 +174961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167212,51 +174978,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144515] = 26, - ACTIONS(390), 1, + [148787] = 26, + ACTIONS(257), 1, + sym_identifier, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(271), 1, + anon_sym_not, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2365), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2406), 1, + sym_call, + STATE(2413), 1, + sym_expression, + STATE(2456), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5114), 1, sym_dotted_name, - STATE(5077), 1, - sym_expression, - STATE(6057), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167265,18 +175031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167284,7 +175050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167301,51 +175067,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144630] = 26, - ACTIONS(486), 1, + [148902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2823), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(492), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [148971] = 26, + ACTIONS(93), 1, + anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3838), 1, + STATE(753), 1, sym_primary_expression, - STATE(4111), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5191), 1, + STATE(5278), 1, sym_expression, - STATE(6002), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167354,18 +175186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167373,7 +175205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167390,51 +175222,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144745] = 26, - ACTIONS(486), 1, + [149086] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(2987), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3836), 1, + STATE(3904), 1, sym_primary_expression, - STATE(4111), 1, + STATE(3968), 1, sym_call, - STATE(5113), 1, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5191), 1, + STATE(5284), 1, sym_expression, - STATE(6002), 1, + STATE(6471), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167443,18 +175275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(4274), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167462,7 +175294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(4257), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167479,51 +175311,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144860] = 26, - ACTIONS(486), 1, + [149201] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2693), 1, - sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3828), 1, + STATE(8), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(4111), 1, + STATE(1278), 1, + sym_selector_expression, + STATE(1411), 1, sym_call, - STATE(5113), 1, + STATE(5224), 1, sym_dotted_name, - STATE(5191), 1, - sym_expression, - STATE(6002), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167532,18 +175364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167551,7 +175383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167568,51 +175400,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [144975] = 26, - ACTIONS(486), 1, + [149316] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1247), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(1255), 1, sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3805), 1, - sym_primary_expression, - STATE(4111), 1, + STATE(3593), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5191), 1, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, + sym_selector_expression, + STATE(4985), 1, sym_expression, - STATE(6002), 1, + STATE(5162), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167621,18 +175453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3884), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167640,7 +175472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167657,51 +175489,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145090] = 26, - ACTIONS(486), 1, + [149431] = 26, + ACTIONS(257), 1, + sym_identifier, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(271), 1, + anon_sym_not, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2693), 1, - sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3803), 1, + STATE(2365), 1, sym_primary_expression, - STATE(4111), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5191), 1, + STATE(2411), 1, sym_expression, - STATE(6002), 1, + STATE(2456), 1, + sym_selector_expression, + STATE(5114), 1, + sym_dotted_name, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(275), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167710,18 +175542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(2708), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167729,7 +175561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167746,51 +175578,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145205] = 26, - ACTIONS(486), 1, + [149546] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2693), 1, - sym_identifier, - STATE(3446), 1, - sym_selector_expression, - STATE(3800), 1, + STATE(4), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(4111), 1, + STATE(879), 1, sym_call, - STATE(5113), 1, + STATE(1004), 1, + sym_selector_expression, + STATE(5230), 1, sym_dotted_name, - STATE(5191), 1, - sym_expression, - STATE(6002), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167799,18 +175631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167818,7 +175650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167835,51 +175667,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145320] = 26, - ACTIONS(486), 1, + [149661] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(612), 1, + ACTIONS(3017), 1, sym_identifier, - ACTIONS(618), 1, - anon_sym_not, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - STATE(3729), 1, + STATE(2811), 1, sym_primary_expression, - STATE(3795), 1, - sym_expression, - STATE(4027), 1, + STATE(2861), 1, sym_selector_expression, - STATE(4111), 1, + STATE(2877), 1, sym_call, - STATE(5069), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5249), 1, + sym_expression, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167888,18 +175720,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4142), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167907,7 +175739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -167924,51 +175756,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145435] = 26, - ACTIONS(486), 1, + [149776] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1365), 1, + ACTIONS(3017), 1, sym_identifier, - ACTIONS(1369), 1, - anon_sym_not, - STATE(3761), 1, + STATE(2817), 1, sym_primary_expression, - STATE(3981), 1, + STATE(2861), 1, sym_selector_expression, - STATE(4111), 1, + STATE(2877), 1, sym_call, - STATE(4891), 1, - sym_expression, - STATE(4995), 1, + STATE(5182), 1, sym_dotted_name, - STATE(6002), 1, + STATE(5249), 1, + sym_expression, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -167977,18 +175809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -167996,7 +175828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168013,51 +175845,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145550] = 26, - ACTIONS(486), 1, + [149891] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(1365), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(1369), 1, + ACTIONS(125), 1, anon_sym_not, - STATE(3761), 1, - sym_primary_expression, - STATE(3981), 1, - sym_selector_expression, - STATE(4111), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(860), 1, sym_call, - STATE(4866), 1, + STATE(866), 1, + sym_primary_expression, + STATE(912), 1, sym_expression, - STATE(4995), 1, + STATE(1443), 1, + sym_selector_expression, + STATE(5223), 1, sym_dotted_name, - STATE(6002), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168066,18 +175898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4187), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168085,7 +175917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168102,51 +175934,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145665] = 26, - ACTIONS(486), 1, + [150006] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_DOT, - ACTIONS(674), 1, - anon_sym_QMARK_DOT, - ACTIONS(2693), 1, + ACTIONS(3017), 1, sym_identifier, - ACTIONS(2999), 1, - anon_sym_not, - STATE(3446), 1, - sym_selector_expression, - STATE(3790), 1, + STATE(2818), 1, sym_primary_expression, - STATE(4111), 1, + STATE(2861), 1, + sym_selector_expression, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5191), 1, + STATE(5249), 1, sym_expression, - STATE(6002), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168155,18 +175987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168174,7 +176006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168191,51 +176023,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145780] = 26, - ACTIONS(486), 1, + [150121] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(488), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(492), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(496), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(502), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(674), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2693), 1, + ACTIONS(2937), 1, sym_identifier, - STATE(3446), 1, + STATE(3458), 1, sym_selector_expression, - STATE(3790), 1, + STATE(3823), 1, sym_primary_expression, - STATE(4111), 1, + STATE(4216), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5191), 1, + STATE(5282), 1, sym_expression, - STATE(6002), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(622), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168244,18 +176076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3485), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(500), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168263,7 +176095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3535), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168280,118 +176112,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [145895] = 4, - STATE(1759), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 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(2475), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [145966] = 26, - ACTIONS(714), 1, + [150236] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(2937), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(3327), 1, anon_sym_not, - STATE(4056), 1, + STATE(3458), 1, + sym_selector_expression, + STATE(3823), 1, sym_primary_expression, - STATE(4082), 1, + STATE(4216), 1, sym_call, - STATE(4214), 1, - sym_selector_expression, - STATE(5012), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5066), 1, + STATE(5282), 1, sym_expression, - STATE(6132), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, - sym_binary_operator, - sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168400,18 +176165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168419,7 +176184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168436,51 +176201,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146081] = 26, - ACTIONS(534), 1, + [150351] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3716), 1, + ACTIONS(3111), 1, + sym_identifier, + STATE(2320), 1, sym_primary_expression, - STATE(3719), 1, - sym_call, - STATE(3727), 1, + STATE(2371), 1, sym_selector_expression, - STATE(5055), 1, - sym_expression, - STATE(5075), 1, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168489,18 +176254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168508,7 +176273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168525,51 +176290,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146196] = 26, - ACTIONS(454), 1, + [150466] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1311), 1, + ACTIONS(3111), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(3329), 1, anon_sym_not, - STATE(2538), 1, + STATE(2320), 1, sym_primary_expression, - STATE(2706), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(3855), 1, - sym_expression, - STATE(5068), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168578,18 +176343,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168597,7 +176362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168614,51 +176379,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146311] = 26, - ACTIONS(390), 1, + [150581] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(283), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(287), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + STATE(2293), 1, + sym_expression, + STATE(2294), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2357), 1, sym_selector_expression, - STATE(5016), 1, - sym_expression, - STATE(5018), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(6057), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, - sym_binary_operator, - sym_subscript, - STATE(3699), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168667,18 +176432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168686,7 +176451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168703,51 +176468,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146426] = 26, - ACTIONS(454), 1, + [150696] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(606), 1, - anon_sym_DOT, - ACTIONS(608), 1, - anon_sym_QMARK_DOT, - ACTIONS(1311), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(125), 1, anon_sym_not, - STATE(2538), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(858), 1, + sym_expression, + STATE(860), 1, + sym_call, + STATE(866), 1, sym_primary_expression, - STATE(2706), 1, + STATE(1443), 1, sym_selector_expression, - STATE(2707), 1, - sym_call, - STATE(4092), 1, - sym_expression, - STATE(5068), 1, + STATE(5223), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168756,18 +176521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168775,7 +176540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168792,51 +176557,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146541] = 26, - ACTIONS(257), 1, + [150811] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2986), 1, sym_identifier, - STATE(2259), 1, + ACTIONS(1401), 1, + anon_sym_not, + STATE(3820), 1, sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(4216), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5175), 1, + STATE(4246), 1, + sym_selector_expression, + STATE(4951), 1, sym_expression, - STATE(6187), 1, + STATE(5180), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + ACTIONS(672), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4256), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [150926] = 26, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, + anon_sym_LBRACE, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + STATE(3820), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(4246), 1, + sym_selector_expression, + STATE(4983), 1, + sym_expression, + STATE(5180), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168845,18 +176699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168864,7 +176718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168881,51 +176735,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146656] = 26, - ACTIONS(448), 1, + [151041] = 26, + ACTIONS(592), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(462), 1, + ACTIONS(604), 1, anon_sym_not, - ACTIONS(464), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - STATE(2471), 1, - sym_expression, - STATE(2672), 1, + STATE(2845), 1, sym_primary_expression, - STATE(2680), 1, - sym_selector_expression, - STATE(2707), 1, + STATE(2850), 1, sym_call, - STATE(5072), 1, + STATE(2879), 1, + sym_selector_expression, + STATE(2958), 1, + sym_expression, + STATE(5191), 1, sym_dotted_name, - STATE(5958), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -168934,18 +176788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -168953,7 +176807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -168970,51 +176824,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146771] = 26, - ACTIONS(257), 1, + [151156] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2986), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(2261), 1, + STATE(2819), 1, sym_primary_expression, - STATE(2352), 1, + STATE(2861), 1, sym_selector_expression, - STATE(2407), 1, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5175), 1, + STATE(5249), 1, sym_expression, - STATE(6187), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169023,18 +176877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169042,7 +176896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169059,51 +176913,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [146886] = 26, - ACTIONS(454), 1, + [151271] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2538), 1, + ACTIONS(3111), 1, + sym_identifier, + STATE(2316), 1, sym_primary_expression, - STATE(2706), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(4055), 1, - sym_expression, - STATE(5068), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169112,18 +176966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169131,7 +176985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169148,51 +177002,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147001] = 26, - ACTIONS(257), 1, + [151386] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2986), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2262), 1, + STATE(2826), 1, sym_primary_expression, - STATE(2352), 1, + STATE(2846), 1, sym_selector_expression, - STATE(2407), 1, + STATE(2850), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5175), 1, + STATE(5276), 1, sym_expression, - STATE(6187), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169201,18 +177055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169220,7 +177074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169237,51 +177091,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147116] = 26, - ACTIONS(390), 1, + [151501] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2825), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2846), 1, sym_selector_expression, - STATE(4908), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5015), 1, + STATE(5276), 1, sym_expression, - STATE(6057), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169290,18 +177144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169309,7 +177163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169326,51 +177180,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147231] = 26, - ACTIONS(454), 1, + [151616] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2481), 1, + STATE(2824), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2846), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2850), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5194), 1, + STATE(5276), 1, sym_expression, - STATE(5958), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169379,18 +177233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169398,7 +177252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169415,51 +177269,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147346] = 26, - ACTIONS(454), 1, + [151731] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2484), 1, + STATE(2823), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2846), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2850), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5276), 1, sym_expression, - STATE(5958), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169468,18 +177322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169487,7 +177341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169504,51 +177358,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147461] = 26, - ACTIONS(454), 1, + [151846] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2501), 1, + STATE(2822), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2846), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2850), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5276), 1, sym_expression, - STATE(5958), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169557,18 +177411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169576,7 +177430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169593,51 +177447,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147576] = 26, - ACTIONS(682), 1, + [151961] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2878), 1, + STATE(2821), 1, sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3094), 1, + STATE(2846), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5184), 1, + STATE(5276), 1, sym_expression, - STATE(5976), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169646,18 +177500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169665,7 +177519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169682,51 +177536,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147691] = 26, - ACTIONS(682), 1, + [152076] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(2731), 1, - sym_identifier, - ACTIONS(3001), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2878), 1, + ACTIONS(3113), 1, + sym_identifier, + STATE(2820), 1, sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3094), 1, + STATE(2846), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5184), 1, + STATE(5276), 1, sym_expression, - STATE(5976), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169735,18 +177589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169754,7 +177608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169771,51 +177625,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147806] = 26, - ACTIONS(454), 1, + [152191] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(2502), 1, + STATE(2315), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5255), 1, sym_expression, - STATE(5958), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169824,18 +177678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169843,7 +177697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169860,51 +177714,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [147921] = 26, - ACTIONS(454), 1, + [152306] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(2503), 1, + STATE(2306), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5255), 1, sym_expression, - STATE(5958), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -169913,18 +177767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -169932,7 +177786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -169949,51 +177803,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148036] = 26, - ACTIONS(454), 1, + [152421] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(2504), 1, + STATE(2305), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5255), 1, sym_expression, - STATE(5958), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170002,18 +177856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170021,7 +177875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170038,51 +177892,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148151] = 26, - ACTIONS(454), 1, + [152536] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(472), 1, - sym_string_start, - ACTIONS(606), 1, - anon_sym_DOT, - ACTIONS(608), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(2507), 1, + STATE(2828), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2861), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5249), 1, sym_expression, - STATE(5958), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170091,18 +177945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170110,7 +177964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170127,51 +177981,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148266] = 26, - ACTIONS(682), 1, + [152651] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2879), 1, + ACTIONS(3285), 1, + sym_identifier, + STATE(755), 1, sym_primary_expression, - STATE(2993), 1, + STATE(879), 1, sym_call, - STATE(3005), 1, + STATE(978), 1, sym_selector_expression, - STATE(4247), 1, - sym_expression, - STATE(5067), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5278), 1, + sym_expression, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170180,18 +178034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(1251), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170199,7 +178053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170216,51 +178070,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148381] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [152766] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, + STATE(860), 1, + sym_call, + STATE(866), 1, sym_primary_expression, - STATE(2821), 1, + STATE(892), 1, sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, + STATE(1443), 1, sym_selector_expression, - STATE(5059), 1, + STATE(5223), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170269,18 +178123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170288,7 +178142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170305,51 +178159,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148496] = 26, - ACTIONS(454), 1, + [152881] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(2508), 1, + STATE(2304), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5255), 1, sym_expression, - STATE(5958), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170358,18 +178212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170377,7 +178231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170394,51 +178248,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148611] = 26, - ACTIONS(454), 1, + [152996] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(2509), 1, + STATE(2279), 1, sym_primary_expression, - STATE(2677), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5255), 1, sym_expression, - STATE(5958), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170447,18 +178301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170466,7 +178320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170483,51 +178337,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148726] = 26, - ACTIONS(682), 1, + [153111] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, - sym_identifier, - STATE(2868), 1, - sym_primary_expression, - STATE(2993), 1, + STATE(1505), 1, + sym_expression, + STATE(1770), 1, sym_call, - STATE(3094), 1, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5196), 1, sym_dotted_name, - STATE(5184), 1, - sym_expression, - STATE(5976), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170536,18 +178390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170555,7 +178409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170572,51 +178426,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148841] = 26, - ACTIONS(682), 1, + [153226] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, - sym_identifier, - STATE(2854), 1, - sym_primary_expression, - STATE(2993), 1, + STATE(844), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(3094), 1, + STATE(866), 1, + sym_primary_expression, + STATE(1443), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5223), 1, sym_dotted_name, - STATE(5184), 1, - sym_expression, - STATE(5976), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170625,18 +178479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(2204), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170644,7 +178498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170661,51 +178515,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [148956] = 26, - ACTIONS(682), 1, + [153341] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(2897), 1, + STATE(2300), 1, sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3094), 1, + STATE(2371), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2406), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5184), 1, + STATE(5255), 1, sym_expression, - STATE(5976), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170714,18 +178568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170733,7 +178587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170750,51 +178604,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149071] = 26, - ACTIONS(682), 1, + [153456] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(700), 1, - sym_string_start, - ACTIONS(736), 1, - anon_sym_DOT, - ACTIONS(738), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(2777), 1, + STATE(2830), 1, sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3094), 1, + STATE(2861), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2877), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5184), 1, + STATE(5249), 1, sym_expression, - STATE(5976), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170803,18 +178657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170822,7 +178676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170839,51 +178693,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149186] = 26, - ACTIONS(682), 1, + [153571] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(808), 1, sym_identifier, - STATE(2781), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(812), 1, + anon_sym_not, + STATE(134), 1, + sym_expression, + STATE(860), 1, sym_call, - STATE(3094), 1, + STATE(958), 1, + sym_primary_expression, + STATE(2056), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5217), 1, sym_dotted_name, - STATE(5184), 1, - sym_expression, - STATE(5976), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1769), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170892,18 +178746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(2189), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -170911,7 +178765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -170928,51 +178782,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149301] = 26, - ACTIONS(682), 1, + [153686] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(700), 1, - sym_string_start, - ACTIONS(736), 1, - anon_sym_DOT, - ACTIONS(738), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(3017), 1, sym_identifier, - STATE(2782), 1, + STATE(2831), 1, sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3094), 1, + STATE(2861), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2877), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5184), 1, + STATE(5249), 1, sym_expression, - STATE(5976), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -170981,18 +178835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(3090), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171000,7 +178854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171017,51 +178871,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149416] = 26, - ACTIONS(682), 1, + [153801] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(197), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(688), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [153872] = 26, + ACTIONS(375), 1, + anon_sym_LPAREN, + ACTIONS(377), 1, + anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(385), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(391), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(393), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(568), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(570), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(2790), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(1160), 1, + anon_sym_not, + STATE(3482), 1, sym_call, - STATE(3094), 1, + STATE(3533), 1, + sym_primary_expression, + STATE(3628), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5184), 1, + STATE(4994), 1, sym_expression, - STATE(5976), 1, + STATE(5192), 1, + sym_dotted_name, + STATE(6316), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3702), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171070,18 +178991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(389), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3704), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171089,7 +179010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3706), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171106,51 +179027,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149531] = 26, - ACTIONS(448), 1, - sym_identifier, - ACTIONS(454), 1, + [153987] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(462), 1, - anon_sym_not, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(2528), 1, - sym_expression, - STATE(2672), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3111), 1, + sym_identifier, + STATE(2295), 1, sym_primary_expression, - STATE(2680), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(5072), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171159,18 +179080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2839), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171178,7 +179099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171195,51 +179116,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149646] = 26, - ACTIONS(454), 1, + [154102] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2538), 1, + ACTIONS(3111), 1, + sym_identifier, + STATE(2289), 1, sym_primary_expression, - STATE(2706), 1, + STATE(2371), 1, sym_selector_expression, - STATE(2707), 1, + STATE(2406), 1, sym_call, - STATE(4084), 1, - sym_expression, - STATE(5068), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5958), 1, + STATE(5255), 1, + sym_expression, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, + STATE(2592), 2, sym_binary_operator, sym_subscript, - STATE(2832), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171248,18 +179169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2838), 4, + STATE(2517), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2820), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171267,7 +179188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171284,51 +179205,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149761] = 26, - ACTIONS(454), 1, + [154217] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(2697), 1, - sym_identifier, - ACTIONS(3003), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2518), 1, - sym_primary_expression, - STATE(2677), 1, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, sym_selector_expression, - STATE(2707), 1, + STATE(3947), 1, + sym_primary_expression, + STATE(4216), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5282), 1, sym_expression, - STATE(5958), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171337,18 +179258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171356,7 +179277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171373,51 +179294,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149876] = 26, - ACTIONS(454), 1, + [154332] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(456), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(460), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(464), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(470), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(472), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(608), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2697), 1, + ACTIONS(2937), 1, sym_identifier, - STATE(2518), 1, - sym_primary_expression, - STATE(2677), 1, + STATE(3458), 1, sym_selector_expression, - STATE(2707), 1, + STATE(3913), 1, + sym_primary_expression, + STATE(4216), 1, sym_call, - STATE(5113), 1, + STATE(5182), 1, sym_dotted_name, - STATE(5212), 1, + STATE(5282), 1, sym_expression, - STATE(5958), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2826), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(466), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171426,18 +179347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2927), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(468), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171445,7 +179366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2819), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171462,51 +179383,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [149991] = 26, - ACTIONS(390), 1, + [154447] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(394), 1, - anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, - sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(2809), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2877), 1, + sym_call, + STATE(2884), 1, sym_selector_expression, - STATE(4893), 1, + STATE(5140), 1, sym_dotted_name, - STATE(5050), 1, - sym_expression, - STATE(6057), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171515,18 +179436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171534,7 +179455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171551,51 +179472,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150106] = 26, - ACTIONS(534), 1, + [154562] = 21, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2721), 1, + anon_sym_PIPE, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2897), 1, + anon_sym_not, + ACTIONS(2901), 1, + anon_sym_is, + STATE(2160), 1, + sym_argument_list, + STATE(3276), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2719), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2895), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [154667] = 26, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(562), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, + ACTIONS(738), 1, sym_identifier, - ACTIONS(1309), 1, + ACTIONS(742), 1, anon_sym_not, - STATE(3716), 1, - sym_primary_expression, - STATE(3719), 1, + STATE(2350), 1, sym_call, - STATE(3727), 1, - sym_selector_expression, - STATE(5074), 1, + STATE(2994), 1, sym_expression, - STATE(5075), 1, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, sym_dotted_name, - STATE(6118), 1, + STATE(5987), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(2434), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(2435), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171604,18 +179609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(2431), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171623,7 +179628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(2430), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171640,51 +179645,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150221] = 26, - ACTIONS(634), 1, + [154782] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2069), 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(2067), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(640), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [154865] = 26, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(169), 1, + anon_sym_LPAREN, + ACTIONS(171), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(177), 1, + anon_sym_not, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1377), 1, - anon_sym_not, - STATE(2840), 1, + STATE(12), 1, + sym_expression, + STATE(994), 1, sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3028), 1, + STATE(1278), 1, sym_selector_expression, - STATE(4259), 1, - sym_expression, - STATE(5014), 1, + STATE(1411), 1, + sym_call, + STATE(5224), 1, sym_dotted_name, - STATE(5965), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171693,18 +179771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(2162), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171712,7 +179790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171729,51 +179807,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150336] = 26, - ACTIONS(390), 1, + [154980] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(834), 1, sym_identifier, - STATE(3460), 1, + ACTIONS(840), 1, + anon_sym_not, + STATE(140), 1, + sym_expression, + STATE(1411), 1, sym_call, - STATE(3464), 1, + STATE(1962), 1, sym_primary_expression, - STATE(3508), 1, + STATE(2137), 1, sym_selector_expression, - STATE(4895), 1, + STATE(5241), 1, sym_dotted_name, - STATE(5049), 1, - sym_expression, - STATE(6057), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(2223), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171782,18 +179860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2272), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171801,7 +179879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171818,51 +179896,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150451] = 26, - ACTIONS(634), 1, + [155095] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(740), 1, - anon_sym_DOT, - ACTIONS(742), 1, - anon_sym_QMARK_DOT, - ACTIONS(1371), 1, + ACTIONS(189), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(193), 1, anon_sym_not, - STATE(2840), 1, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(9), 1, + sym_expression, + STATE(993), 1, sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3028), 1, + STATE(1662), 1, sym_selector_expression, - STATE(4397), 1, - sym_expression, - STATE(5014), 1, + STATE(1770), 1, + sym_call, + STATE(5204), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(195), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171871,18 +179949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(2203), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171890,7 +179968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171907,51 +179985,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150566] = 26, - ACTIONS(257), 1, + [155210] = 26, + ACTIONS(616), 1, + sym_identifier, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_not, + ACTIONS(638), 1, + sym_string_start, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(2949), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(2953), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(2955), 1, + anon_sym_QMARK_DOT, + ACTIONS(2959), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(2961), 1, sym_float, - ACTIONS(275), 1, - sym_string_start, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2986), 1, - sym_identifier, - STATE(2263), 1, + STATE(109), 1, + sym_expression, + STATE(2838), 1, sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(2877), 1, sym_call, - STATE(5113), 1, + STATE(2884), 1, + sym_selector_expression, + STATE(5140), 1, sym_dotted_name, - STATE(5175), 1, - sym_expression, - STATE(6187), 1, + STATE(5959), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, + STATE(3194), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3198), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + ACTIONS(2957), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -171960,18 +180038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(3050), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(636), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3197), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -171979,7 +180057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(3195), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -171996,51 +180074,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150681] = 26, - ACTIONS(390), 1, + [155325] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, - anon_sym_not, - STATE(3460), 1, + STATE(4096), 1, sym_call, - STATE(3464), 1, + STATE(4233), 1, + sym_expression, + STATE(4242), 1, sym_primary_expression, - STATE(3508), 1, + STATE(4321), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5102), 1, sym_dotted_name, - STATE(5045), 1, - sym_expression, - STATE(6057), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172049,18 +180127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(4410), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172068,7 +180146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172085,51 +180163,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150796] = 26, - ACTIONS(628), 1, + [155440] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2817), 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(2819), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_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(634), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155509] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - STATE(2772), 1, - sym_expression, - STATE(2793), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(1427), 1, + sym_identifier, + ACTIONS(1431), 1, + anon_sym_not, + STATE(2850), 1, sym_call, - STATE(3040), 1, + STATE(2852), 1, + sym_primary_expression, + STATE(3042), 1, sym_selector_expression, - STATE(5079), 1, + STATE(4446), 1, + sym_expression, + STATE(5216), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3211), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172138,18 +180282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172157,7 +180301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172174,51 +180318,183 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [150911] = 26, - ACTIONS(257), 1, + [155624] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2813), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(261), 1, - anon_sym_lambda, - ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(273), 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(275), 1, - sym_string_start, - ACTIONS(438), 1, + ACTIONS(2815), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(440), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2809), 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, - ACTIONS(1395), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2811), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, - ACTIONS(2986), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(2318), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155762] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_not, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_QMARK_DOT, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3877), 1, sym_primary_expression, - STATE(2352), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(3948), 1, sym_call, - STATE(5113), 1, - sym_dotted_name, - STATE(5175), 1, + STATE(4181), 1, + sym_selector_expression, + STATE(4992), 1, sym_expression, - STATE(6187), 1, + STATE(5125), 1, + sym_dotted_name, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2458), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(269), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172227,18 +180503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2644), 4, + STATE(4342), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172246,7 +180522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172263,51 +180539,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151026] = 26, - ACTIONS(634), 1, + [155877] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1371), 1, + ACTIONS(662), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(668), 1, anon_sym_not, - STATE(2840), 1, + STATE(3811), 1, + sym_expression, + STATE(3901), 1, sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3028), 1, + STATE(3975), 1, sym_selector_expression, - STATE(4388), 1, - sym_expression, - STATE(5014), 1, + STATE(4216), 1, + sym_call, + STATE(5164), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172316,18 +180592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(4307), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172335,7 +180611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172352,51 +180628,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151141] = 26, - ACTIONS(714), 1, + [155992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2797), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2799), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(720), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156061] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, - anon_sym_not, - STATE(4056), 1, - sym_primary_expression, - STATE(4082), 1, + STATE(4096), 1, sym_call, - STATE(4214), 1, + STATE(4201), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, sym_selector_expression, - STATE(5012), 1, + STATE(5102), 1, sym_dotted_name, - STATE(5125), 1, - sym_expression, - STATE(6132), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172405,18 +180747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(4410), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172424,7 +180766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172441,51 +180783,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151256] = 26, - ACTIONS(390), 1, + [156176] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(818), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(133), 1, + sym_expression, + STATE(847), 1, sym_primary_expression, - STATE(3508), 1, + STATE(879), 1, + sym_call, + STATE(1752), 1, sym_selector_expression, - STATE(5018), 1, + STATE(5179), 1, sym_dotted_name, - STATE(5043), 1, - sym_expression, - STATE(6057), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172494,18 +180836,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(2150), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172513,7 +180855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172530,51 +180872,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151371] = 26, - ACTIONS(634), 1, + [156291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2793), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(640), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156360] = 26, + ACTIONS(596), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(1427), 1, sym_identifier, - STATE(2860), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(1431), 1, + anon_sym_not, + STATE(2850), 1, sym_call, - STATE(3073), 1, + STATE(2852), 1, + sym_primary_expression, + STATE(3042), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5189), 1, + STATE(4440), 1, sym_expression, - STATE(5965), 1, + STATE(5216), 1, + sym_dotted_name, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172583,18 +180991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172602,7 +181010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172619,51 +181027,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151486] = 26, - ACTIONS(634), 1, + [156475] = 9, + ACTIONS(2701), 1, + anon_sym_if, + ACTIONS(2731), 1, + anon_sym_PLUS, + ACTIONS(2764), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 13, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 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(2242), 23, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - ACTIONS(640), 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_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156556] = 26, + ACTIONS(93), 1, + anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(131), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, - sym_identifier, - STATE(2768), 1, + STATE(3), 1, + sym_expression, + STATE(603), 1, sym_primary_expression, - STATE(3027), 1, + STATE(879), 1, sym_call, - STATE(3073), 1, + STATE(1004), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5230), 1, sym_dotted_name, - STATE(5190), 1, - sym_expression, - STATE(5965), 1, + STATE(5966), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(1241), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(1992), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172672,18 +181152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(1906), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2001), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172691,7 +181171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(1238), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172708,51 +181188,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151601] = 26, - ACTIONS(682), 1, + [156671] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, sym_identifier, - STATE(2801), 1, + ACTIONS(1401), 1, + anon_sym_not, + STATE(3820), 1, sym_primary_expression, - STATE(2993), 1, + STATE(4216), 1, sym_call, - STATE(3094), 1, + STATE(4246), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5184), 1, + STATE(4980), 1, sym_expression, - STATE(5976), 1, + STATE(5180), 1, + sym_dotted_name, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172761,18 +181241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172780,7 +181260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172797,51 +181277,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151716] = 26, - ACTIONS(682), 1, + [156786] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2731), 1, + ACTIONS(762), 1, sym_identifier, - STATE(2802), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(766), 1, + anon_sym_not, + STATE(3593), 1, sym_call, - STATE(3094), 1, + STATE(4451), 1, + sym_primary_expression, + STATE(4456), 1, + sym_expression, + STATE(4504), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5234), 1, sym_dotted_name, - STATE(5180), 1, - sym_expression, - STATE(5976), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3223), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(694), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172850,18 +181330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3230), 4, + STATE(4511), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172869,7 +181349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172886,51 +181366,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151831] = 26, - ACTIONS(634), 1, + [156901] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(1427), 1, sym_identifier, - STATE(2786), 1, - sym_primary_expression, - STATE(3027), 1, + ACTIONS(1431), 1, + anon_sym_not, + STATE(2850), 1, sym_call, - STATE(3073), 1, + STATE(2852), 1, + sym_primary_expression, + STATE(3042), 1, sym_selector_expression, - STATE(5113), 1, - sym_dotted_name, - STATE(5190), 1, + STATE(4435), 1, sym_expression, - STATE(5965), 1, + STATE(5216), 1, + sym_dotted_name, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -172939,18 +181419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -172958,7 +181438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -172975,51 +181455,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [151946] = 26, - ACTIONS(634), 1, + [157016] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(684), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(686), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(696), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(698), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(758), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(760), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, - sym_identifier, - STATE(2788), 1, - sym_primary_expression, - STATE(3027), 1, + STATE(4096), 1, sym_call, - STATE(3073), 1, + STATE(4231), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5102), 1, sym_dotted_name, - STATE(5190), 1, - sym_expression, - STATE(5965), 1, + STATE(6329), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(4406), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(4407), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(692), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173028,18 +181508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(4410), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(694), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(4397), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173047,7 +181527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(4398), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173064,51 +181544,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152061] = 26, - ACTIONS(634), 1, + [157131] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(147), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(159), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(161), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(225), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, - sym_identifier, - STATE(2789), 1, - sym_primary_expression, - STATE(3027), 1, + STATE(1400), 1, + sym_expression, + STATE(1770), 1, sym_call, - STATE(3073), 1, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5196), 1, sym_dotted_name, - STATE(5190), 1, - sym_expression, - STATE(5965), 1, + STATE(6093), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2233), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2246), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(155), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173117,18 +181597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(2268), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(157), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2248), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173136,7 +181616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2235), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173153,51 +181633,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152176] = 26, - ACTIONS(634), 1, + [157246] = 10, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3261), 1, + anon_sym_and, + ACTIONS(3331), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 24, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 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(2059), 28, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + anon_sym_for, anon_sym_lambda, - ACTIONS(640), 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_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, + [157329] = 26, + ACTIONS(596), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(2792), 1, + STATE(2814), 1, sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3073), 1, + STATE(2846), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5190), 1, + STATE(5276), 1, sym_expression, - STATE(5965), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173206,18 +181759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173225,7 +181778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173242,51 +181795,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152291] = 26, - ACTIONS(634), 1, + [157444] = 26, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(428), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(432), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(434), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(444), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(446), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(506), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(508), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, - sym_identifier, - STATE(2813), 1, + STATE(113), 1, + sym_expression, + STATE(2369), 1, sym_primary_expression, - STATE(3027), 1, + STATE(2436), 1, sym_call, - STATE(3073), 1, + STATE(2458), 1, sym_selector_expression, - STATE(5113), 1, + STATE(5158), 1, sym_dotted_name, - STATE(5190), 1, - sym_expression, - STATE(5965), 1, + STATE(6027), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2609), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(2610), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(440), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173295,18 +181848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(2707), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(442), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(2608), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173314,7 +181867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2606), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173331,51 +181884,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152406] = 26, - ACTIONS(634), 1, + [157559] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(173), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(175), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(179), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(185), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(187), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(229), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(2941), 1, sym_identifier, - STATE(2816), 1, - sym_primary_expression, - STATE(3027), 1, + STATE(1411), 1, sym_call, - STATE(3073), 1, + STATE(1710), 1, sym_selector_expression, - STATE(5113), 1, + STATE(2113), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5190), 1, + STATE(5254), 1, sym_expression, - STATE(5965), 1, + STATE(5941), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(2132), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173384,18 +181937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(2153), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(183), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173403,7 +181956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2129), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173420,51 +181973,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152521] = 26, - ACTIONS(634), 1, + [157674] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3289), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(640), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157743] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(728), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(730), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, - sym_identifier, - STATE(2827), 1, + STATE(2856), 1, sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3073), 1, + STATE(2949), 1, + sym_expression, + STATE(3034), 1, sym_selector_expression, - STATE(5113), 1, + STATE(3115), 1, + sym_call, + STATE(5174), 1, sym_dotted_name, - STATE(5190), 1, - sym_expression, - STATE(5965), 1, + STATE(6041), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3232), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3242), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173473,18 +182092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(3208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(726), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3246), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173492,7 +182111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3228), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173509,51 +182128,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152636] = 26, - ACTIONS(628), 1, - sym_identifier, - ACTIONS(634), 1, + [157858] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(267), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(269), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(644), 1, + ACTIONS(273), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(279), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(281), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(283), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_not, + ACTIONS(395), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(397), 1, anon_sym_QMARK_DOT, - STATE(2793), 1, + STATE(2294), 1, sym_primary_expression, - STATE(2948), 1, + STATE(2299), 1, sym_expression, - STATE(3027), 1, - sym_call, - STATE(3040), 1, + STATE(2357), 1, sym_selector_expression, - STATE(5079), 1, + STATE(2406), 1, + sym_call, + STATE(5246), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6368), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(2590), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(289), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173562,18 +182181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3169), 4, + STATE(2597), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(277), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(2595), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173581,7 +182200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(2596), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173598,51 +182217,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152751] = 26, - ACTIONS(714), 1, + [157973] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(4056), 1, + ACTIONS(3113), 1, + sym_identifier, + STATE(2815), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(2846), 1, sym_selector_expression, - STATE(5012), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5037), 1, + STATE(5276), 1, sym_expression, - STATE(6132), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173651,18 +182270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173670,7 +182289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173687,51 +182306,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152866] = 26, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(636), 1, - anon_sym_LBRACK, - ACTIONS(638), 1, - anon_sym_lambda, + [158088] = 26, ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(644), 1, - anon_sym_DQUOTE, - ACTIONS(650), 1, - sym_float, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(756), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1377), 1, - anon_sym_not, - STATE(2840), 1, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3919), 1, sym_primary_expression, - STATE(3027), 1, + STATE(3948), 1, sym_call, - STATE(3028), 1, - sym_selector_expression, - STATE(4338), 1, + STATE(3958), 1, sym_expression, - STATE(5014), 1, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, sym_dotted_name, - STATE(5965), 1, + STATE(6173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3211), 2, + STATE(4328), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173740,18 +182359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3213), 4, + STATE(4326), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(658), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3207), 7, + STATE(4327), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173759,7 +182378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(4338), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173776,51 +182395,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [152981] = 26, - ACTIONS(634), 1, + [158203] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(2705), 1, - sym_identifier, - ACTIONS(3005), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2930), 1, + ACTIONS(3023), 1, + sym_identifier, + STATE(737), 1, sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3073), 1, + STATE(859), 1, sym_selector_expression, - STATE(5113), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5190), 1, + STATE(5283), 1, sym_expression, - STATE(5965), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173829,18 +182448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173848,7 +182467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173865,51 +182484,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153096] = 26, - ACTIONS(634), 1, + [158318] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(636), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(640), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(650), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(652), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(740), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(742), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1395), 1, - anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(1433), 1, sym_identifier, - STATE(2930), 1, - sym_primary_expression, - STATE(3027), 1, - sym_call, - STATE(3073), 1, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, sym_selector_expression, - STATE(5113), 1, + STATE(3593), 1, + sym_call, + STATE(4449), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5190), 1, + STATE(5263), 1, sym_expression, - STATE(5965), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_binary_operator, - sym_subscript, - STATE(3560), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(646), 3, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -173918,18 +182537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3220), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(648), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3542), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -173937,7 +182556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3203), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -173954,51 +182573,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153211] = 26, - ACTIONS(534), 1, + [158433] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(536), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(538), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(540), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(544), 1, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(552), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(624), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(626), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_not, - STATE(3716), 1, + STATE(2810), 1, + sym_expression, + STATE(2845), 1, sym_primary_expression, - STATE(3719), 1, + STATE(2850), 1, sym_call, - STATE(3727), 1, + STATE(2879), 1, sym_selector_expression, - STATE(5032), 1, - sym_expression, - STATE(5075), 1, + STATE(5191), 1, sym_dotted_name, - STATE(6118), 1, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3921), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(546), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174007,18 +182626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3929), 4, + STATE(3037), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(548), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3904), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174026,7 +182645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3903), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174043,51 +182662,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153326] = 26, - ACTIONS(390), 1, + [158548] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3023), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(474), 1, sym_primary_expression, - STATE(3508), 1, + STATE(859), 1, sym_selector_expression, - STATE(4901), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5028), 1, + STATE(5283), 1, sym_expression, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174096,18 +182715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174115,7 +182734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174132,51 +182751,117 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153441] = 26, - ACTIONS(682), 1, + [158663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2310), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - ACTIONS(688), 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158732] = 26, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, + ACTIONS(1395), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1401), 1, anon_sym_not, - STATE(2879), 1, + STATE(3820), 1, sym_primary_expression, - STATE(2993), 1, + STATE(4216), 1, sym_call, - STATE(3005), 1, + STATE(4246), 1, sym_selector_expression, - STATE(4292), 1, + STATE(4977), 1, sym_expression, - STATE(5067), 1, + STATE(5180), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(672), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174185,18 +182870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(4256), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174204,7 +182889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174221,51 +182906,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153556] = 26, - ACTIONS(390), 1, + [158847] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(3023), 1, sym_identifier, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + STATE(741), 1, sym_primary_expression, - STATE(3508), 1, + STATE(859), 1, sym_selector_expression, - STATE(4903), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5025), 1, + STATE(5283), 1, sym_expression, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174274,18 +182959,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174293,7 +182978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174310,51 +182995,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153671] = 26, - ACTIONS(390), 1, + [158962] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(3460), 1, - sym_call, - STATE(3464), 1, + ACTIONS(3023), 1, + sym_identifier, + STATE(744), 1, sym_primary_expression, - STATE(3508), 1, + STATE(859), 1, sym_selector_expression, - STATE(5018), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5024), 1, + STATE(5283), 1, sym_expression, - STATE(6057), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174363,18 +183048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174382,7 +183067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174399,51 +183084,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153786] = 26, - ACTIONS(390), 1, + [159077] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(392), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(394), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(396), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(400), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(408), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(474), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(476), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1105), 1, + ACTIONS(1427), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(1431), 1, anon_sym_not, - STATE(3460), 1, + STATE(2850), 1, sym_call, - STATE(3464), 1, + STATE(2852), 1, sym_primary_expression, - STATE(3508), 1, + STATE(3042), 1, sym_selector_expression, - STATE(5018), 1, - sym_dotted_name, - STATE(5020), 1, + STATE(4422), 1, sym_expression, - STATE(6057), 1, + STATE(5216), 1, + sym_dotted_name, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(3699), 2, + STATE(3046), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(402), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174452,18 +183137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3701), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(404), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3671), 7, + STATE(3041), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174471,7 +183156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3665), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174488,51 +183173,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [153901] = 26, - ACTIONS(714), 1, + [159192] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(718), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(720), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(724), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(730), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(732), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(752), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(754), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - ACTIONS(1385), 1, + ACTIONS(3113), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(3333), 1, anon_sym_not, - STATE(4056), 1, + STATE(2835), 1, sym_primary_expression, - STATE(4082), 1, - sym_call, - STATE(4214), 1, + STATE(2846), 1, sym_selector_expression, - STATE(5002), 1, - sym_expression, - STATE(5012), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6132), 1, + STATE(5276), 1, + sym_expression, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4296), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - STATE(4297), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(726), 3, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174541,18 +183226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4299), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(728), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4268), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174560,7 +183245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4260), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174577,51 +183262,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [154016] = 26, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(682), 1, + [159307] = 26, + ACTIONS(596), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(600), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(690), 1, - anon_sym_not, - ACTIONS(692), 1, + ACTIONS(606), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(612), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(614), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(748), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(750), 1, anon_sym_QMARK_DOT, - STATE(2766), 1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3113), 1, + sym_identifier, + STATE(2835), 1, sym_primary_expression, - STATE(2822), 1, - sym_expression, - STATE(2993), 1, - sym_call, - STATE(3042), 1, + STATE(2846), 1, sym_selector_expression, - STATE(5059), 1, + STATE(2850), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5276), 1, + sym_expression, + STATE(6050), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(3045), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(608), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174630,18 +183315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3144), 4, + STATE(3141), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(610), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174649,7 +183334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3038), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174666,51 +183351,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [154131] = 26, - ACTIONS(257), 1, + [159422] = 21, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(259), 1, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3337), 1, + anon_sym_not, + ACTIONS(3341), 1, + anon_sym_is, + STATE(2156), 1, + aux_sym_comparison_operator_repeat1, + STATE(2222), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2995), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3003), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3335), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 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(2310), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [159527] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(67), 1, + anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(261), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(263), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(267), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(273), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(275), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(438), 1, + ACTIONS(209), 1, anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(842), 1, - sym_identifier, - ACTIONS(848), 1, - anon_sym_not, - STATE(122), 1, + STATE(2), 1, sym_expression, - STATE(2399), 1, + STATE(604), 1, sym_primary_expression, - STATE(2407), 1, + STATE(860), 1, sym_call, - STATE(2505), 1, + STATE(946), 1, sym_selector_expression, - STATE(5000), 1, + STATE(5236), 1, sym_dotted_name, - STATE(6187), 1, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2456), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2458), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(380), 3, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174719,18 +183488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2743), 4, + STATE(1896), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(271), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2510), 7, + STATE(1765), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174738,7 +183507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2517), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174755,51 +183524,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [154246] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(21), 1, + [159642] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(25), 1, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(27), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(219), 1, - anon_sym_LBRACK, - STATE(3862), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3023), 1, + sym_identifier, + STATE(747), 1, sym_primary_expression, - STATE(3874), 1, - sym_call, - STATE(4139), 1, + STATE(859), 1, sym_selector_expression, - STATE(4966), 1, - sym_expression, - STATE(5116), 1, + STATE(860), 1, + sym_call, + STATE(5182), 1, sym_dotted_name, - STATE(6288), 1, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4382), 2, - sym_in_operation, - sym_not_in_operation, - STATE(4390), 2, + STATE(1340), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174808,18 +183577,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(4378), 4, + STATE(1343), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(4396), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174827,7 +183596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(4401), 16, + STATE(1335), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174844,51 +183613,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [154361] = 26, - ACTIONS(682), 1, + [159757] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(464), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(466), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(468), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(478), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(578), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(580), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, + ACTIONS(1433), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1437), 1, anon_sym_not, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, - sym_call, - STATE(3005), 1, + STATE(3458), 1, sym_selector_expression, - STATE(4398), 1, - sym_expression, - STATE(5067), 1, + STATE(3593), 1, + sym_call, + STATE(4499), 1, + sym_primary_expression, + STATE(5182), 1, sym_dotted_name, - STATE(5976), 1, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, + STATE(3559), 2, sym_in_operation, sym_not_in_operation, - STATE(3223), 2, + STATE(3565), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + ACTIONS(768), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174897,18 +183666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(3543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(476), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(3549), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -174916,7 +183685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(3568), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -174933,51 +183702,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [154476] = 26, - ACTIONS(682), 1, + [159872] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(546), 1, anon_sym_lambda, - ACTIONS(688), 1, + ACTIONS(548), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(552), 1, anon_sym_DQUOTE, - ACTIONS(698), 1, + ACTIONS(558), 1, sym_float, - ACTIONS(700), 1, + ACTIONS(560), 1, sym_string_start, - ACTIONS(736), 1, + ACTIONS(734), 1, anon_sym_DOT, - ACTIONS(738), 1, + ACTIONS(736), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1363), 1, anon_sym_not, - STATE(2879), 1, - sym_primary_expression, - STATE(2993), 1, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, sym_call, - STATE(3005), 1, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, sym_selector_expression, - STATE(4364), 1, + STATE(5006), 1, sym_expression, - STATE(5067), 1, + STATE(5220), 1, sym_dotted_name, - STATE(5976), 1, + STATE(6322), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3221), 2, - sym_in_operation, - sym_not_in_operation, - STATE(3223), 2, + STATE(4119), 2, sym_binary_operator, sym_subscript, - ACTIONS(694), 3, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -174986,18 +183755,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(3176), 4, + STATE(4121), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(696), 5, + ACTIONS(556), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(3226), 7, + STATE(4118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -175005,7 +183774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(3227), 16, + STATE(4117), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -175022,842 +183791,378 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [154591] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2896), 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(2894), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [154659] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - ACTIONS(3015), 1, - anon_sym_PIPE, - ACTIONS(3017), 1, - anon_sym_AMP, - ACTIONS(3019), 1, - anon_sym_CARET, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3013), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 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(2489), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [154765] = 10, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(3023), 1, - anon_sym_if, - ACTIONS(3025), 1, - anon_sym_and, - ACTIONS(3027), 1, - anon_sym_or, - ACTIONS(3029), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 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(2355), 27, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - 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, - [154847] = 5, - ACTIONS(3031), 1, - anon_sym_EQ, - STATE(1561), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 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(2560), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [154919] = 4, - STATE(1963), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [159987] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, + ACTIONS(71), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [154989] = 21, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - ACTIONS(3015), 1, - anon_sym_PIPE, - ACTIONS(3017), 1, - anon_sym_AMP, - ACTIONS(3019), 1, - anon_sym_CARET, - ACTIONS(3035), 1, - anon_sym_not, - ACTIONS(3039), 1, - anon_sym_is, - STATE(2114), 1, - aux_sym_comparison_operator_repeat1, - STATE(2195), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3013), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3033), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(77), 1, anon_sym_DQUOTE, - anon_sym_TILDE, + ACTIONS(83), 1, sym_float, - ACTIONS(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [155093] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(85), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(217), 32, - anon_sym_import, + ACTIONS(209), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [155163] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3043), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3041), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(1437), 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(3023), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [155231] = 3, + STATE(623), 1, + sym_primary_expression, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 27, - sym__newline, - 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(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 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(3047), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155299] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3051), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [160102] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, + ACTIONS(682), 1, anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, + anon_sym_DQUOTE, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, anon_sym_QMARK_DOT, + STATE(4096), 1, + sym_call, + STATE(4230), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, + sym_dotted_name, + STATE(6329), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 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(3049), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4410), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155367] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3045), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [160217] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3285), 1, + sym_identifier, + STATE(879), 1, + sym_call, + STATE(978), 1, + sym_selector_expression, + STATE(989), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5278), 1, + sym_expression, + STATE(5966), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 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(3047), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1251), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155435] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2930), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [160332] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2993), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(2928), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155503] = 3, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [160447] = 7, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3261), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3055), 27, - sym__newline, - sym__dedent, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -175865,7 +184170,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, @@ -175882,14 +184186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3053), 32, + ACTIONS(2242), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -175903,7 +184206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -175915,450 +184217,607 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [155571] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3057), 27, - sym__newline, + [160524] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(3059), 1, anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(3069), 1, anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3919), 1, + sym_primary_expression, + STATE(3941), 1, + sym_expression, + STATE(3948), 1, + sym_call, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, + sym_dotted_name, + STATE(6173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4328), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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(3059), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4326), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155639] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3063), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(4327), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [160639] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1401), 1, + anon_sym_not, + STATE(3820), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(4246), 1, + sym_selector_expression, + STATE(4975), 1, + sym_expression, + STATE(5180), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 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(3061), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4256), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155707] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3067), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [160754] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(4498), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 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(3065), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155775] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3069), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [160869] = 26, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(596), 1, anon_sym_LPAREN, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_lambda, + ACTIONS(602), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(604), 1, + anon_sym_not, + ACTIONS(606), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + sym_float, + ACTIONS(614), 1, + sym_string_start, + ACTIONS(748), 1, + anon_sym_DOT, + ACTIONS(750), 1, anon_sym_QMARK_DOT, + STATE(108), 1, + sym_expression, + STATE(2845), 1, + sym_primary_expression, + STATE(2850), 1, + sym_call, + STATE(2879), 1, + sym_selector_expression, + STATE(5191), 1, + sym_dotted_name, + STATE(6050), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3045), 2, + sym_binary_operator, + sym_subscript, + STATE(3046), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(608), 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(3071), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3037), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(610), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155843] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3073), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3041), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3038), 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, + [160984] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3023), 1, + sym_identifier, + STATE(750), 1, + sym_primary_expression, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 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(3075), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155911] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3079), 27, - sym__newline, - sym__dedent, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [161099] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(3059), 1, anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(3069), 1, anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3919), 1, + sym_primary_expression, + STATE(3939), 1, + sym_expression, + STATE(3948), 1, + sym_call, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, + sym_dotted_name, + STATE(6173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4328), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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(3077), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4326), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [155979] = 13, - ACTIONS(2707), 1, + STATE(4327), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [161214] = 21, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(2649), 1, + anon_sym_STAR_STAR, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2659), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2665), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - STATE(2116), 1, + ACTIONS(2889), 1, + anon_sym_not, + ACTIONS(2893), 1, + anon_sym_is, + STATE(2222), 1, sym_argument_list, - STATE(4730), 1, + STATE(3281), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, + ACTIONS(2647), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3085), 2, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, + ACTIONS(2655), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 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, + ACTIONS(2663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2891), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + ACTIONS(2356), 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(2518), 29, + ACTIONS(2310), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -176368,150 +184827,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, 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, - [156067] = 14, - ACTIONS(2707), 1, + [161319] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(3020), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156157] = 15, - ACTIONS(2707), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [161434] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(2645), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, + ACTIONS(2649), 1, anon_sym_STAR_STAR, - ACTIONS(3091), 1, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2659), 1, + anon_sym_AMP, + ACTIONS(2661), 1, anon_sym_CARET, - STATE(2116), 1, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + STATE(2222), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, + ACTIONS(2647), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3085), 2, + ACTIONS(2653), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, + ACTIONS(2655), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, + ACTIONS(2663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 14, - sym__dedent, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 8, 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(2518), 29, + ACTIONS(2386), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -176524,111 +185001,129 @@ static const uint16_t ts_small_parse_table[] = { 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, - [156249] = 16, - ACTIONS(2707), 1, + [161537] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - ACTIONS(3091), 1, - anon_sym_CARET, - ACTIONS(3093), 1, - anon_sym_AMP, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(834), 1, + sym_identifier, + ACTIONS(840), 1, + anon_sym_not, + STATE(141), 1, + sym_expression, + STATE(1411), 1, + sym_call, + STATE(1962), 1, + sym_primary_expression, + STATE(2137), 1, + sym_selector_expression, + STATE(5241), 1, + sym_dotted_name, + STATE(5941), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, + STATE(2132), 2, + sym_binary_operator, + sym_subscript, + STATE(2223), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(181), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2272), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(183), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156343] = 4, - STATE(2031), 1, - aux_sym_comparison_operator_repeat1, + STATE(2226), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2129), 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, + [161652] = 9, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2981), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2278), 24, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -176645,13 +185140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + ACTIONS(2276), 27, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -176665,8 +185158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -176677,481 +185168,1123 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [156413] = 3, + [161733] = 26, + ACTIONS(143), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, + sym_float, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3223), 1, + sym_identifier, + STATE(1770), 1, + sym_call, + STATE(1782), 1, + sym_primary_expression, + STATE(1955), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [161848] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2992), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(3097), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156481] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [161963] = 26, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, + anon_sym_LBRACE, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 1, + anon_sym_not, + ACTIONS(1255), 1, + sym_identifier, + STATE(3593), 1, + sym_call, + STATE(3616), 1, + sym_primary_expression, + STATE(3739), 1, + sym_selector_expression, + STATE(5100), 1, + sym_expression, + STATE(5162), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3884), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [162078] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(3059), 1, anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(3069), 1, anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3919), 1, + sym_primary_expression, + STATE(3938), 1, + sym_expression, + STATE(3948), 1, + sym_call, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, + sym_dotted_name, + STATE(6173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4328), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4326), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(4327), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [162193] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, + anon_sym_LPAREN, + ACTIONS(145), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, sym_float, - ACTIONS(217), 32, - anon_sym_import, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + STATE(1391), 1, + sym_expression, + STATE(1770), 1, + sym_call, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, + sym_dotted_name, + STATE(6093), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2268), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2248), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [162308] = 26, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, + anon_sym_LBRACK, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(524), 1, + anon_sym_LBRACE, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + sym_float, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(576), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2917), 1, sym_identifier, + STATE(2659), 1, + sym_primary_expression, + STATE(2751), 1, + sym_call, + STATE(2842), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5280), 1, + sym_expression, + STATE(6038), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2986), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3010), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(532), 5, + sym_integer, sym_true, sym_false, sym_none, sym_undefined, - [156551] = 21, - ACTIONS(2707), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2981), 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, + [162423] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - ACTIONS(3091), 1, - anon_sym_CARET, - ACTIONS(3093), 1, - anon_sym_AMP, - ACTIONS(3101), 1, + ACTIONS(1437), 1, anon_sym_not, - ACTIONS(3103), 1, - anon_sym_PIPE, - ACTIONS(3107), 1, - anon_sym_is, - STATE(2116), 1, - sym_argument_list, - STATE(2138), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2941), 1, + sym_identifier, + STATE(1167), 1, + sym_primary_expression, + STATE(1411), 1, + sym_call, + STATE(1710), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, + STATE(2132), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3099), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__dedent, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2153), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(183), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2129), 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, + [162538] = 26, + ACTIONS(93), 1, + anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(814), 1, + sym_identifier, + ACTIONS(818), 1, + anon_sym_not, + STATE(135), 1, + sym_expression, + STATE(847), 1, + sym_primary_expression, + STATE(879), 1, + sym_call, + STATE(1752), 1, + sym_selector_expression, + STATE(5179), 1, + sym_dotted_name, + STATE(5966), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2150), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2001), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [162653] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_AT, + 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(199), 1, + anon_sym_LBRACK, + STATE(3968), 1, + sym_call, + STATE(3976), 1, + sym_primary_expression, + STATE(4260), 1, + sym_selector_expression, + STATE(5005), 1, + sym_expression, + STATE(5088), 1, + sym_dotted_name, + STATE(6471), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + STATE(4262), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, + STATE(4501), 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, - [156655] = 4, - STATE(2021), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(4259), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4257), 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, + [162768] = 26, + ACTIONS(456), 1, + sym_identifier, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + STATE(3583), 1, + sym_primary_expression, + STATE(3593), 1, + sym_call, + STATE(3649), 1, + sym_expression, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3845), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156725] = 12, - ACTIONS(2707), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [162883] = 26, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(652), 1, + anon_sym_not, + ACTIONS(660), 1, + sym_string_start, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(3059), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(3063), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + STATE(3919), 1, + sym_primary_expression, + STATE(3935), 1, + sym_expression, + STATE(3948), 1, + sym_call, + STATE(4252), 1, + sym_selector_expression, + STATE(5203), 1, + sym_dotted_name, + STATE(6173), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(4328), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4326), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156811] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3109), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(4327), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [162998] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2937), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3952), 1, + sym_primary_expression, + STATE(4216), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5282), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(672), 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(3111), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156879] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2633), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [163113] = 20, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(2639), 1, + ACTIONS(1950), 1, anon_sym_QMARK_DOT, - ACTIONS(2641), 1, + ACTIONS(1952), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2675), 1, anon_sym_STAR_STAR, - ACTIONS(3015), 1, + ACTIONS(2681), 1, anon_sym_PIPE, - ACTIONS(3017), 1, + ACTIONS(2683), 1, anon_sym_AMP, - ACTIONS(3019), 1, + ACTIONS(2685), 1, anon_sym_CARET, - STATE(2195), 1, + STATE(1374), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 2, + ACTIONS(2673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3011), 2, + ACTIONS(2677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3013), 2, + ACTIONS(2679), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 8, + ACTIONS(2458), 9, + sym__newline, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -177160,9 +186293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(2522), 19, + ACTIONS(2386), 25, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -177174,425 +186310,565 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [156985] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3113), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [163216] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(830), 1, + sym_primary_expression, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 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(3115), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157053] = 10, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3119), 1, - anon_sym_and, - ACTIONS(3121), 1, - anon_sym_or, - ACTIONS(3123), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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(2357), 24, - 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, + [163331] = 26, + ACTIONS(456), 1, + sym_identifier, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, + anon_sym_QMARK_DOT, + STATE(3583), 1, + sym_primary_expression, + STATE(3591), 1, + sym_expression, + STATE(3593), 1, + sym_call, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(2355), 27, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3845), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157135] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3125), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [163446] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(2943), 1, + sym_identifier, + ACTIONS(3343), 1, + anon_sym_not, + STATE(830), 1, + sym_primary_expression, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 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(3127), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157203] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3129), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [163561] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3023), 1, + sym_identifier, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(953), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5283), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 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(3131), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157271] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3135), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [163676] = 26, + ACTIONS(456), 1, + sym_identifier, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + STATE(3583), 1, + sym_primary_expression, + STATE(3588), 1, + sym_expression, + STATE(3593), 1, + sym_call, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(3133), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3845), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157339] = 10, - ACTIONS(2707), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [163791] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, + sym_float, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + STATE(1384), 1, + sym_expression, + STATE(1770), 1, + sym_call, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, + sym_dotted_name, + STATE(6093), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 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(2518), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, + STATE(2268), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(2248), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [163906] = 7, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2981), 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, - [157421] = 4, - STATE(3232), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2985), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -177600,7 +186876,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, @@ -177617,14 +186892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(2242), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -177638,7 +186912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -177650,409 +186923,636 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [157491] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3137), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [163983] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3285), 1, + sym_identifier, + STATE(754), 1, + sym_primary_expression, + STATE(879), 1, + sym_call, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5278), 1, + sym_expression, + STATE(5966), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 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(3139), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1251), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157559] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3141), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [164098] = 26, + ACTIONS(456), 1, + sym_identifier, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + STATE(3583), 1, + sym_primary_expression, + STATE(3585), 1, + sym_expression, + STATE(3593), 1, + sym_call, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(3143), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3845), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157627] = 9, - ACTIONS(3023), 1, - anon_sym_if, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [164213] = 26, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, + anon_sym_LBRACE, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, ACTIONS(3025), 1, - anon_sym_and, - ACTIONS(3029), 1, - anon_sym_PLUS, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2479), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [164328] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(496), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(502), 1, sym_float, - ACTIONS(2469), 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(2449), 23, - anon_sym_import, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(3025), 1, + sym_identifier, + ACTIONS(3345), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2479), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_or, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157707] = 4, - ACTIONS(2849), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [164443] = 26, + ACTIONS(59), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + STATE(604), 1, + sym_primary_expression, + STATE(860), 1, + sym_call, + STATE(925), 1, + sym_expression, + STATE(946), 1, + sym_selector_expression, + STATE(5236), 1, + sym_dotted_name, + STATE(6308), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(1769), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 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(2560), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1896), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157777] = 4, - STATE(3239), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(1765), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [164558] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3852), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(217), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157847] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3145), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [164673] = 26, + ACTIONS(456), 1, + sym_identifier, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(470), 1, + anon_sym_not, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + STATE(3580), 1, + sym_expression, + STATE(3583), 1, + sym_primary_expression, + STATE(3593), 1, + sym_call, + STATE(3756), 1, + sym_selector_expression, + STATE(5214), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(3147), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3845), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [157915] = 3, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [164788] = 4, + STATE(3206), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3149), 27, + ACTIONS(201), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -178080,7 +187580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3151), 32, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -178113,417 +187613,638 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [157983] = 10, - ACTIONS(2707), 1, + [164859] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, + anon_sym_LBRACE, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2513), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(2518), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158065] = 3, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [164974] = 26, + ACTIONS(67), 1, + anon_sym_LPAREN, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2943), 1, + sym_identifier, + STATE(828), 1, + sym_primary_expression, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [165089] = 26, + ACTIONS(369), 1, + sym_identifier, + ACTIONS(375), 1, anon_sym_LPAREN, + ACTIONS(377), 1, anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(383), 1, + anon_sym_not, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, anon_sym_QMARK_DOT, + STATE(3482), 1, + sym_call, + STATE(3544), 1, + sym_primary_expression, + STATE(3571), 1, + sym_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, + sym_dotted_name, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 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(3155), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, + STATE(3748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [165204] = 26, + ACTIONS(67), 1, + anon_sym_LPAREN, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 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(2943), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [158133] = 3, + STATE(826), 1, + sym_primary_expression, + STATE(859), 1, + sym_selector_expression, + STATE(860), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5285), 1, + sym_expression, + STATE(6308), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - 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(1340), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1343), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(81), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158201] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2367), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1335), 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, + [165319] = 26, + ACTIONS(369), 1, + sym_identifier, + ACTIONS(375), 1, anon_sym_LPAREN, + ACTIONS(377), 1, anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(383), 1, + anon_sym_not, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, anon_sym_QMARK_DOT, + STATE(3482), 1, + sym_call, + STATE(3539), 1, + sym_expression, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, + sym_dotted_name, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 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(2365), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158269] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3157), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [165434] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2514), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(3159), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158337] = 10, - ACTIONS(2707), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [165549] = 26, + ACTIONS(143), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, + sym_float, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3223), 1, + sym_identifier, + STATE(1770), 1, + sym_call, + STATE(1955), 1, + sym_selector_expression, + STATE(2258), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5272), 1, + sym_expression, + STATE(6093), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 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(2574), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2161), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158419] = 3, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [165664] = 4, + ACTIONS(2689), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2936), 26, - sym__dedent, + ACTIONS(2554), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -178548,15 +188269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2934), 33, + ACTIONS(2556), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -178582,77 +188303,115 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [158487] = 4, - ACTIONS(2851), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [165735] = 26, + ACTIONS(542), 1, anon_sym_LPAREN, + ACTIONS(544), 1, anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(1371), 1, + sym_identifier, + STATE(3778), 1, + sym_call, + STATE(3779), 1, + sym_primary_expression, + STATE(3900), 1, + sym_selector_expression, + STATE(5092), 1, + sym_expression, + STATE(5220), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 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(2560), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4121), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158557] = 3, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [165850] = 8, + ACTIONS(3350), 1, + anon_sym_not, + ACTIONS(3356), 1, + anon_sym_is, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 27, + ACTIONS(3347), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3353), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 23, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -178674,22 +188433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3163), 32, + ACTIONS(2841), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -178700,1089 +188454,1355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158625] = 4, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [165929] = 26, + ACTIONS(369), 1, + sym_identifier, + ACTIONS(375), 1, anon_sym_LPAREN, + ACTIONS(377), 1, anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(383), 1, + anon_sym_not, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, anon_sym_QMARK_DOT, + STATE(3482), 1, + sym_call, + STATE(3540), 1, + sym_expression, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, + sym_dotted_name, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 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(2857), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158695] = 4, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [166044] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(720), 1, + anon_sym_not, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + STATE(2856), 1, + sym_primary_expression, + STATE(2996), 1, + sym_expression, + STATE(3034), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5174), 1, + sym_dotted_name, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2857), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3208), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158765] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2940), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3246), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [166159] = 26, + ACTIONS(674), 1, + sym_identifier, + ACTIONS(680), 1, anon_sym_LPAREN, + ACTIONS(682), 1, anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_lambda, + ACTIONS(686), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(688), 1, + anon_sym_not, + ACTIONS(690), 1, + anon_sym_DQUOTE, + ACTIONS(696), 1, + sym_float, + ACTIONS(698), 1, + sym_string_start, + ACTIONS(758), 1, + anon_sym_DOT, + ACTIONS(760), 1, anon_sym_QMARK_DOT, + STATE(4096), 1, + sym_call, + STATE(4228), 1, + sym_expression, + STATE(4242), 1, + sym_primary_expression, + STATE(4321), 1, + sym_selector_expression, + STATE(5102), 1, + sym_dotted_name, + STATE(6329), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4406), 2, + sym_binary_operator, + sym_subscript, + STATE(4407), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(692), 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(2938), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4410), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(694), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158833] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3167), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(4397), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4398), 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, + [166274] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2991), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(3165), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [158901] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2555), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [166389] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(722), 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(728), 1, sym_float, - ACTIONS(2550), 33, - anon_sym_import, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1437), 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(2935), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [158969] = 4, - STATE(1561), 1, - aux_sym_union_type_repeat1, + STATE(2917), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 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(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2912), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159039] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2944), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [166504] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2920), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2942), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159107] = 4, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [166619] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2923), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2857), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159177] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2948), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [166734] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2924), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2946), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159245] = 4, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [166849] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2925), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2857), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159315] = 4, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [166964] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2854), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159385] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2952), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [167079] = 26, + ACTIONS(712), 1, anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2935), 1, + sym_identifier, + STATE(2930), 1, + sym_primary_expression, + STATE(3039), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5260), 1, + sym_expression, + STATE(6041), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 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(2950), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159453] = 4, - ACTIONS(3169), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [167194] = 26, + ACTIONS(369), 1, + sym_identifier, + ACTIONS(375), 1, anon_sym_LPAREN, + ACTIONS(377), 1, anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(383), 1, + anon_sym_not, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, anon_sym_QMARK_DOT, + STATE(3482), 1, + sym_call, + STATE(3544), 1, + sym_primary_expression, + STATE(3575), 1, + sym_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, + sym_dotted_name, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 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(217), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159523] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3067), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [167309] = 26, + ACTIONS(369), 1, + sym_identifier, + ACTIONS(375), 1, anon_sym_LPAREN, + ACTIONS(377), 1, anon_sym_LBRACK, + ACTIONS(379), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(383), 1, + anon_sym_not, + ACTIONS(385), 1, + anon_sym_DQUOTE, + ACTIONS(391), 1, + sym_float, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(568), 1, + anon_sym_DOT, + ACTIONS(570), 1, anon_sym_QMARK_DOT, + STATE(3482), 1, + sym_call, + STATE(3542), 1, + sym_expression, + STATE(3544), 1, + sym_primary_expression, + STATE(3613), 1, + sym_selector_expression, + STATE(5239), 1, + sym_dotted_name, + STATE(6316), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3702), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3703), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(387), 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(3065), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(389), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159591] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3063), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3704), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3706), 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, + [167424] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(4492), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 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(3061), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159659] = 21, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - ACTIONS(3091), 1, - anon_sym_CARET, - ACTIONS(3093), 1, - anon_sym_AMP, - ACTIONS(3101), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [167539] = 26, + ACTIONS(708), 1, + sym_identifier, + ACTIONS(712), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(716), 1, + anon_sym_lambda, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(720), 1, anon_sym_not, - ACTIONS(3103), 1, - anon_sym_PIPE, - ACTIONS(3107), 1, - anon_sym_is, - STATE(2116), 1, - sym_argument_list, - STATE(3256), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(722), 1, + anon_sym_DQUOTE, + ACTIONS(728), 1, + sym_float, + ACTIONS(730), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(114), 1, + sym_expression, + STATE(2856), 1, + sym_primary_expression, + STATE(3034), 1, + sym_selector_expression, + STATE(3115), 1, + sym_call, + STATE(5174), 1, + sym_dotted_name, + STATE(6041), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, + STATE(3232), 2, + sym_binary_operator, + sym_subscript, + STATE(3242), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(724), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3099), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, + STATE(3208), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(726), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159763] = 3, + STATE(3246), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3228), 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, + [167654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 27, + ACTIONS(201), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -179810,13 +189830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -179843,1358 +189864,1616 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [159831] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3175), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [167723] = 26, + ACTIONS(482), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + STATE(98), 1, + sym_expression, + STATE(2350), 1, + sym_call, + STATE(2453), 1, + sym_primary_expression, + STATE(2704), 1, + sym_selector_expression, + STATE(5152), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(3177), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2801), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159899] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3179), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [167838] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(438), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_float, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2945), 1, + sym_identifier, + STATE(2380), 1, + sym_primary_expression, + STATE(2428), 1, + sym_selector_expression, + STATE(2436), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5270), 1, + sym_expression, + STATE(6027), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 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(3181), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2630), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [159967] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3183), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [167953] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, anon_sym_LPAREN, + ACTIONS(544), 1, anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, anon_sym_QMARK_DOT, + STATE(3717), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 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(3185), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160035] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3187), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [168068] = 26, + ACTIONS(512), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_LBRACK, + ACTIONS(522), 1, + anon_sym_lambda, + ACTIONS(524), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(526), 1, + anon_sym_not, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + sym_float, + ACTIONS(536), 1, + sym_string_start, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(576), 1, anon_sym_QMARK_DOT, + STATE(101), 1, + sym_expression, + STATE(2719), 1, + sym_primary_expression, + STATE(2736), 1, + sym_selector_expression, + STATE(2751), 1, + sym_call, + STATE(5171), 1, + sym_dotted_name, + STATE(6038), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2986), 2, + sym_binary_operator, + sym_subscript, + STATE(2995), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(530), 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(3189), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2885), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(532), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160103] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3191), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2983), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2981), 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, + [168183] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3025), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2565), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5258), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(3193), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160171] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [168298] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2990), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(217), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160243] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2924), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [168413] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3860), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(2922), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160311] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3141), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [168528] = 26, + ACTIONS(263), 1, anon_sym_LPAREN, + ACTIONS(265), 1, anon_sym_LBRACK, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(269), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(273), 1, + anon_sym_DQUOTE, + ACTIONS(279), 1, + sym_float, + ACTIONS(281), 1, + sym_string_start, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2915), 1, + sym_identifier, + STATE(2371), 1, + sym_selector_expression, + STATE(2406), 1, + sym_call, + STATE(2417), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5250), 1, + sym_expression, + STATE(6368), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2592), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(275), 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(3143), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2517), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(277), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160379] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3129), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2596), 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, + [168643] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3863), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(3131), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160447] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2555), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [168758] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, anon_sym_LPAREN, + ACTIONS(544), 1, anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, anon_sym_QMARK_DOT, + STATE(3719), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 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(2550), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160515] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3161), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [168873] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1327), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(2433), 1, + sym_primary_expression, + STATE(2720), 1, + sym_selector_expression, + STATE(3868), 1, + sym_expression, + STATE(5231), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 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(3163), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2757), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160583] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2707), 1, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [168988] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, + anon_sym_LBRACE, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - ACTIONS(3091), 1, - anon_sym_CARET, - ACTIONS(3093), 1, - anon_sym_AMP, - ACTIONS(3103), 1, - anon_sym_PIPE, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(738), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_not, + STATE(111), 1, + sym_expression, + STATE(2350), 1, + sym_call, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(2501), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160689] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [169103] = 26, + ACTIONS(137), 1, + sym_identifier, + ACTIONS(143), 1, anon_sym_LPAREN, + ACTIONS(145), 1, anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_lambda, + ACTIONS(149), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(151), 1, + anon_sym_not, + ACTIONS(153), 1, + anon_sym_DQUOTE, + ACTIONS(159), 1, + sym_float, + ACTIONS(161), 1, + sym_string_start, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, anon_sym_QMARK_DOT, + STATE(1398), 1, + sym_expression, + STATE(1770), 1, + sym_call, + STATE(2008), 1, + sym_primary_expression, + STATE(2240), 1, + sym_selector_expression, + STATE(5196), 1, + sym_dotted_name, + STATE(6093), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2233), 2, + sym_binary_operator, + sym_subscript, + STATE(2246), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(155), 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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2268), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(157), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [160757] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2883), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2248), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2235), 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, + [169218] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(49), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(53), 1, sym_float, - ACTIONS(2881), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 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(2987), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [160825] = 5, - ACTIONS(3199), 1, - anon_sym_EQ, - STATE(1638), 1, - aux_sym_union_type_repeat1, + STATE(3885), 1, + sym_primary_expression, + STATE(3968), 1, + sym_call, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 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(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + 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(2560), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4274), 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, - [160897] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2707), 1, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4257), 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, + [169333] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2709), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - ACTIONS(3091), 1, - anon_sym_CARET, - ACTIONS(3093), 1, - anon_sym_AMP, - ACTIONS(3103), 1, - anon_sym_PIPE, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3027), 1, + sym_identifier, + STATE(879), 1, + sym_call, + STATE(968), 1, + sym_primary_expression, + STATE(978), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5256), 1, + sym_expression, + STATE(5966), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(2489), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(29), 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_check, + STATE(1251), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161003] = 4, - STATE(1638), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2914), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [169448] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(49), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(53), 1, sym_float, - ACTIONS(2912), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(1437), 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(2987), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [161073] = 3, + STATE(3886), 1, + sym_primary_expression, + STATE(3968), 1, + sym_call, + STATE(4224), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5284), 1, + sym_expression, + STATE(6471), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 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(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4261), 2, + sym_binary_operator, + sym_subscript, + 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(2922), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4274), 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, - [161141] = 4, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4257), 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, + [169563] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(766), 1, + anon_sym_not, + STATE(3593), 1, + sym_call, + STATE(4451), 1, + sym_primary_expression, + STATE(4476), 1, + sym_expression, + STATE(4504), 1, + sym_selector_expression, + STATE(5234), 1, + sym_dotted_name, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4511), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161211] = 3, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [169678] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, + anon_sym_LPAREN, + ACTIONS(544), 1, + anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, + anon_sym_LBRACE, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, + anon_sym_QMARK_DOT, + STATE(3721), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3055), 27, - sym__newline, - 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(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 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(3053), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161279] = 3, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [169793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 27, + ACTIONS(201), 27, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -181219,13 +191498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3049), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -181252,1390 +191532,1605 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [161347] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3043), 27, - sym__newline, + [169862] = 26, + ACTIONS(648), 1, + anon_sym_lambda, + ACTIONS(660), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(756), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3059), 1, anon_sym_LPAREN, + ACTIONS(3061), 1, anon_sym_LBRACK, + ACTIONS(3063), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3065), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(3069), 1, anon_sym_DQUOTE, + ACTIONS(3071), 1, + sym_float, + ACTIONS(3255), 1, + sym_identifier, + STATE(3891), 1, + sym_primary_expression, + STATE(3948), 1, + sym_call, + STATE(4245), 1, + sym_selector_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5275), 1, + sym_expression, + STATE(6173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4339), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(3067), 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(3041), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4272), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(658), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161415] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3149), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4338), 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, + [169977] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3263), 1, + sym_identifier, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(3617), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5281), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(474), 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(3151), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161483] = 4, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [170092] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(4488), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161553] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3201), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [170207] = 26, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(436), 1, + anon_sym_not, + ACTIONS(438), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_float, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, anon_sym_QMARK_DOT, + STATE(92), 1, + sym_expression, + STATE(2369), 1, + sym_primary_expression, + STATE(2436), 1, + sym_call, + STATE(2458), 1, + sym_selector_expression, + STATE(5158), 1, + sym_dotted_name, + STATE(6027), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(440), 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(3203), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2707), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161621] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3145), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2608), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [170322] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(4489), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 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(3147), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161689] = 4, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [170437] = 26, + ACTIONS(462), 1, anon_sym_LPAREN, + ACTIONS(464), 1, anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_lambda, + ACTIONS(468), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_float, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(580), 1, anon_sym_QMARK_DOT, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_not, + STATE(3458), 1, + sym_selector_expression, + STATE(3593), 1, + sym_call, + STATE(4491), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5263), 1, + sym_expression, + STATE(6206), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3565), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(768), 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(2857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(476), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161759] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3079), 27, - sym__newline, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3568), 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, + [170552] = 26, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(638), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(732), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2949), 1, anon_sym_LPAREN, + ACTIONS(2951), 1, anon_sym_LBRACK, + ACTIONS(2953), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2955), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2959), 1, anon_sym_DQUOTE, + ACTIONS(2961), 1, + sym_float, + ACTIONS(3017), 1, + sym_identifier, + STATE(2778), 1, + sym_primary_expression, + STATE(2861), 1, + sym_selector_expression, + STATE(2877), 1, + sym_call, + STATE(5182), 1, + sym_dotted_name, + STATE(5249), 1, + sym_expression, + STATE(5959), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3194), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2957), 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(3077), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3090), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(636), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161827] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3135), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(3195), 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, + [170667] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(738), 1, + sym_identifier, + ACTIONS(742), 1, + anon_sym_not, + STATE(2350), 1, + sym_call, + STATE(3000), 1, + sym_expression, + STATE(3006), 1, + sym_primary_expression, + STATE(3054), 1, + sym_selector_expression, + STATE(5229), 1, + sym_dotted_name, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(2435), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(3133), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161895] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3137), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2431), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [170782] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2987), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(3139), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [161963] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [170897] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, anon_sym_QMARK_DOT, + STATE(825), 1, + sym_expression, + STATE(879), 1, + sym_call, + STATE(1003), 1, + sym_primary_expression, + STATE(1322), 1, + sym_selector_expression, + STATE(5146), 1, + sym_dotted_name, + STATE(5966), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1241), 2, + sym_binary_operator, + sym_subscript, + STATE(1992), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 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(217), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2152), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162031] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3167), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2001), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 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, + [171012] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2969), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3165), 32, - anon_sym_import, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [162099] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3125), 27, - sym__newline, + ACTIONS(2382), 8, 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(3127), 32, + ACTIONS(2384), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162167] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3109), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [171119] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2969), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3111), 32, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [162235] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3095), 27, - sym__newline, + ACTIONS(2394), 8, 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(3097), 32, + ACTIONS(2396), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162303] = 5, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3207), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [171226] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, anon_sym_LPAREN, + ACTIONS(544), 1, anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, anon_sym_QMARK_DOT, + STATE(3707), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 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(217), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162375] = 7, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3119), 1, - anon_sym_and, - ACTIONS(3123), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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(2481), 25, - 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, + [171341] = 26, + ACTIONS(428), 1, anon_sym_LPAREN, + ACTIONS(430), 1, anon_sym_LBRACK, + ACTIONS(432), 1, + anon_sym_lambda, + ACTIONS(434), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(438), 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(444), 1, sym_float, - ACTIONS(2479), 29, - anon_sym_import, + ACTIONS(446), 1, + sym_string_start, + ACTIONS(506), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1375), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [162451] = 8, - ACTIONS(3212), 1, + ACTIONS(1379), 1, anon_sym_not, - ACTIONS(3218), 1, - anon_sym_is, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, + STATE(2436), 1, + sym_call, + STATE(3176), 1, + sym_primary_expression, + STATE(3212), 1, + sym_selector_expression, + STATE(4470), 1, + sym_expression, + STATE(5117), 1, + sym_dotted_name, + STATE(6027), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3215), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 22, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2609), 2, + sym_binary_operator, + sym_subscript, + STATE(2610), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(706), 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_QMARK_LBRACK, - sym_float, - ACTIONS(2861), 27, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + ACTIONS(29), 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, + STATE(3284), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(442), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162529] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3073), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2608), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2606), 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, + [171456] = 26, + ACTIONS(538), 1, + sym_identifier, + ACTIONS(542), 1, anon_sym_LPAREN, + ACTIONS(544), 1, anon_sym_LBRACK, + ACTIONS(546), 1, + anon_sym_lambda, + ACTIONS(548), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(550), 1, + anon_sym_not, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(558), 1, + sym_float, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(736), 1, anon_sym_QMARK_DOT, + STATE(3726), 1, + sym_expression, + STATE(3778), 1, + sym_call, + STATE(3800), 1, + sym_primary_expression, + STATE(3871), 1, + sym_selector_expression, + STATE(5099), 1, + sym_dotted_name, + STATE(6322), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4119), 2, + sym_binary_operator, + sym_subscript, + STATE(4120), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(554), 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(3075), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4177), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(556), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162597] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3069), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(4118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(4117), 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, + [171571] = 26, + ACTIONS(169), 1, anon_sym_LPAREN, + ACTIONS(171), 1, anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_lambda, + ACTIONS(175), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(179), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + sym_float, + ACTIONS(187), 1, + sym_string_start, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(2941), 1, + sym_identifier, + STATE(1411), 1, + sym_call, + STATE(1710), 1, + sym_selector_expression, + STATE(2112), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5254), 1, + sym_expression, + STATE(5941), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2132), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(219), 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(3071), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2153), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(183), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162665] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3045), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2129), 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, + [171686] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2988), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(3047), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162733] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2900), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [171801] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, anon_sym_QMARK_DOT, + ACTIONS(1437), 1, + anon_sym_not, + ACTIONS(3271), 1, + sym_identifier, + STATE(2350), 1, + sym_call, + STATE(2393), 1, + sym_selector_expression, + STATE(2989), 1, + sym_primary_expression, + STATE(5182), 1, + sym_dotted_name, + STATE(5266), 1, + sym_expression, + STATE(5987), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_binary_operator, + sym_subscript, + STATE(3559), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(746), 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(2898), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2561), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(500), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [162801] = 3, + STATE(3549), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2430), 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, + [171916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 27, - sym__newline, + ACTIONS(3233), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -182662,13 +193157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 32, + ACTIONS(3235), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -182695,13 +193191,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [162869] = 3, + [171984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2896), 26, - sym__dedent, + ACTIONS(3153), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -182726,15 +193222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2894), 33, + ACTIONS(3151), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -182760,12 +193256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [162937] = 3, + [172052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3057), 27, - sym__newline, + ACTIONS(3163), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -182792,13 +193287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3059), 32, + ACTIONS(3165), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -182825,13 +193321,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163005] = 3, + [172120] = 4, + STATE(3293), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 26, + ACTIONS(201), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -182856,15 +193355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2928), 33, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -182890,12 +193387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163073] = 3, + [172190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3113), 27, - sym__newline, + ACTIONS(3167), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -182922,13 +193418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3115), 32, + ACTIONS(3169), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -182955,12 +193452,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163141] = 3, + [172258] = 4, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 27, - sym__newline, + ACTIONS(2768), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -182987,14 +193485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 32, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -183020,16 +193518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163209] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, + [172328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + ACTIONS(3171), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183056,15 +193549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(3173), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -183075,6 +193570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -183087,31 +193583,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163281] = 7, - ACTIONS(3023), 1, + [172396] = 9, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(3025), 1, + ACTIONS(2981), 1, anon_sym_and, - ACTIONS(3029), 1, + ACTIONS(2985), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2481), 25, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, + 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_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -183119,26 +193625,22 @@ 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(2479), 29, + ACTIONS(2242), 23, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -183146,40 +193648,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [163357] = 10, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [172476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(3175), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -183195,14 +193683,17 @@ 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(2518), 31, + ACTIONS(3177), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -183228,12 +193719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163439] = 3, + [172544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 27, - sym__newline, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183260,13 +193750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -183293,20 +193784,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163507] = 3, + [172612] = 8, + ACTIONS(3359), 1, + sym_isMutableFlag, + ACTIONS(3361), 1, + anon_sym_QMARK_COLON, + STATE(2522), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 27, + ACTIONS(1538), 26, sym__newline, - sym__dedent, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -183325,13 +193825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3155), 32, + ACTIONS(1536), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -183341,10 +193840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -183358,12 +193854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163575] = 3, + [172690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3157), 27, - sym__newline, + ACTIONS(3179), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183390,13 +193885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3159), 32, + ACTIONS(3181), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -183423,12 +193919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163643] = 3, + [172758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 27, - sym__newline, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183455,13 +193950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 32, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -183488,12 +193984,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163711] = 3, + [172826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 27, - sym__newline, + ACTIONS(3183), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183520,13 +194015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3177), 32, + ACTIONS(3185), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -183553,27 +194049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163779] = 8, - ACTIONS(3224), 1, - anon_sym_not, - ACTIONS(3230), 1, - anon_sym_is, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, + [172894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 23, - sym__newline, + ACTIONS(3187), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183594,74 +194074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2861), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [163857] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3233), 27, - sym__newline, - 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(3235), 32, + ACTIONS(3189), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -183688,13 +194114,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163925] = 4, - STATE(2020), 1, + [172962] = 4, + STATE(2243), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(2768), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -183721,14 +194147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 32, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -183754,24 +194180,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [163995] = 3, + [173032] = 9, + ACTIONS(3085), 1, + anon_sym_if, + ACTIONS(3145), 1, + anon_sym_PLUS, + ACTIONS(3261), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 27, - sym__newline, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, 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_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -183779,52 +194222,42 @@ 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(3239), 32, + ACTIONS(2242), 23, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - 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_check, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [164063] = 3, + [173112] = 4, + STATE(3287), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3179), 27, - sym__newline, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183851,7 +194284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3181), 32, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -183884,82 +194317,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164131] = 8, - ACTIONS(3244), 1, - anon_sym_not, - ACTIONS(3250), 1, - anon_sym_is, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3241), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3247), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 23, - sym__newline, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2861), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [164209] = 3, + [173182] = 4, + ACTIONS(3057), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 27, - sym__newline, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -183986,14 +194350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3185), 32, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184019,95 +194383,105 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3187), 27, - sym__newline, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [173252] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + ACTIONS(3363), 1, + anon_sym_for, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2969), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3189), 32, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2927), 7, + sym__dedent, + sym_string_start, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2923), 19, + anon_sym_import, + anon_sym_assert, anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [164345] = 10, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [173360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(3191), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -184123,14 +194497,17 @@ 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(2518), 31, + ACTIONS(3193), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184156,13 +194533,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164427] = 3, + [173428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184187,15 +194564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2885), 33, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184221,14 +194598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164495] = 3, + [173496] = 4, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3191), 27, - sym__newline, - sym__dedent, + ACTIONS(2768), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184253,14 +194631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3193), 32, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184286,13 +194664,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164563] = 3, + [173566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 26, + ACTIONS(3195), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184317,15 +194695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2885), 33, + ACTIONS(3197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184351,15 +194729,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164631] = 4, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, + [173634] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3105), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184384,13 +194760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 32, + ACTIONS(3103), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -184417,96 +194794,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164701] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2709), 1, - anon_sym_LBRACK, - ACTIONS(2715), 1, - anon_sym_QMARK_DOT, - ACTIONS(2729), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3083), 1, - anon_sym_STAR_STAR, - ACTIONS(3091), 1, - anon_sym_CARET, - ACTIONS(3093), 1, - anon_sym_AMP, - ACTIONS(3103), 1, - anon_sym_PIPE, - STATE(2116), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3087), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 19, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [164807] = 3, + [173702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 27, - sym__newline, + ACTIONS(3035), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -184533,13 +194825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3253), 32, + ACTIONS(3033), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -184566,30 +194859,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164875] = 10, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [173770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, + ACTIONS(3039), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -184605,14 +194888,17 @@ 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(2574), 31, + ACTIONS(3037), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184638,13 +194924,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [164957] = 3, + [173838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2936), 26, + ACTIONS(3045), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184669,15 +194955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2934), 33, + ACTIONS(3043), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184703,13 +194989,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165025] = 3, + [173906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 26, + ACTIONS(3199), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184734,15 +195020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2938), 33, + ACTIONS(3201), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184768,12 +195054,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165093] = 3, + [173974] = 4, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 27, - sym__newline, + ACTIONS(2768), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -184800,14 +195087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3259), 32, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -184833,28 +195120,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165161] = 8, - ACTIONS(3264), 1, + [174044] = 5, + ACTIONS(3323), 1, + anon_sym_in, + ACTIONS(3365), 1, anon_sym_not, - ACTIONS(3270), 1, - anon_sym_is, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3267), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 22, + ACTIONS(201), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -184873,9 +195150,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(2861), 27, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -184897,27 +195178,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [165239] = 4, - STATE(2020), 1, + [174116] = 8, + ACTIONS(3359), 1, + sym_isMutableFlag, + ACTIONS(3361), 1, + anon_sym_QMARK_COLON, + STATE(2522), 1, + sym_dict_expr, + STATE(3309), 1, aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(1538), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -184936,13 +195228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 32, + ACTIONS(1536), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -184952,10 +195243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -184969,15 +195257,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165309] = 4, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, + [174194] = 5, + ACTIONS(3323), 1, + anon_sym_in, + ACTIONS(3367), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(201), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185002,16 +195293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -185022,7 +195312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -185035,11 +195324,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165379] = 3, + [174266] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 26, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -185066,17 +195359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2881), 33, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -185087,7 +195379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -185100,13 +195391,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165447] = 3, + [174338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2944), 26, + ACTIONS(3203), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185131,15 +195422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2942), 33, + ACTIONS(3205), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -185165,13 +195456,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165515] = 3, + [174406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 26, + ACTIONS(3055), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185196,15 +195487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2946), 33, + ACTIONS(3053), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -185230,11 +195521,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165583] = 3, + [174474] = 4, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 26, + ACTIONS(2768), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -185261,15 +195554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2950), 33, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, - anon_sym_EQ, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -185295,15 +195587,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165651] = 4, - STATE(2201), 1, - sym_dictionary, + [174544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(3203), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185328,13 +195618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3205), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -185361,16 +195652,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165721] = 4, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [174612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, + ACTIONS(3207), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185395,13 +195683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(3209), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -185427,14 +195717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165791] = 3, + [174680] = 4, + ACTIONS(3057), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 27, - sym__newline, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185459,14 +195750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3273), 32, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -185492,16 +195783,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165859] = 4, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [174750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, + ACTIONS(3075), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -185526,13 +195814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(3073), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -185558,14 +195848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165929] = 4, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [174818] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, + ACTIONS(201), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -185592,15 +195883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -185611,7 +195903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -185624,39 +195915,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [165999] = 12, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [174890] = 5, + ACTIONS(3369), 1, + anon_sym_in, + ACTIONS(3371), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3013), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + ACTIONS(201), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -185667,28 +195948,31 @@ 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(2518), 29, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -185698,150 +195982,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166085] = 21, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - ACTIONS(3015), 1, - anon_sym_PIPE, - ACTIONS(3017), 1, - anon_sym_AMP, - ACTIONS(3019), 1, - anon_sym_CARET, - ACTIONS(3035), 1, - anon_sym_not, - ACTIONS(3039), 1, - anon_sym_is, - STATE(2195), 1, - sym_argument_list, - STATE(3250), 1, - aux_sym_comparison_operator_repeat1, + [174962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3013), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3033), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, + ACTIONS(3211), 26, + 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(2365), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [166189] = 16, - ACTIONS(2633), 1, anon_sym_LPAREN, - ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3017), 1, - anon_sym_AMP, - ACTIONS(3019), 1, - anon_sym_CARET, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3013), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 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, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2518), 29, + ACTIONS(3213), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + 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, @@ -185850,6 +196037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -185859,13 +196047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166283] = 4, - STATE(3242), 1, - aux_sym_comparison_operator_repeat1, + [175030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(3079), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -185892,13 +196078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3077), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -185925,89 +196112,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166353] = 15, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - ACTIONS(3019), 1, - anon_sym_CARET, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3013), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 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(2518), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [166445] = 3, + [175098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 27, - sym__newline, + ACTIONS(3083), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -186034,13 +196143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3277), 32, + ACTIONS(3081), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186067,12 +196177,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166513] = 3, + [175166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 27, - sym__newline, + ACTIONS(3089), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -186099,13 +196208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 32, + ACTIONS(3087), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186132,12 +196242,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166581] = 3, + [175234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 27, - sym__newline, + ACTIONS(3093), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -186164,13 +196273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 32, + ACTIONS(3091), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186197,14 +196307,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166649] = 3, + [175302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 27, - sym__newline, + ACTIONS(3097), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -186229,13 +196338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 32, + ACTIONS(3095), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186262,13 +196372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166717] = 4, - ACTIONS(2855), 1, - anon_sym_EQ, + [175370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 26, + ACTIONS(3101), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -186295,13 +196403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 32, + ACTIONS(3099), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186328,14 +196437,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166787] = 3, + [175438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 27, - sym__newline, - sym__dedent, + ACTIONS(3249), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -186360,13 +196468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3289), 32, + ACTIONS(3251), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186393,18 +196502,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166855] = 6, - ACTIONS(3023), 1, - anon_sym_if, - ACTIONS(3029), 1, - anon_sym_PLUS, + [175506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 25, + ACTIONS(3245), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -186414,6 +196516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -186430,12 +196533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2445), 30, + ACTIONS(3247), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186461,18 +196567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [166929] = 6, - ACTIONS(3023), 1, - anon_sym_if, - ACTIONS(3029), 1, - anon_sym_PLUS, + [175574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, + ACTIONS(3241), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -186482,6 +196581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -186498,12 +196598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 30, + ACTIONS(3243), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186529,18 +196632,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167003] = 5, - ACTIONS(3023), 1, - anon_sym_if, + [175642] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 26, + ACTIONS(3215), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -186565,12 +196663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2453), 30, + ACTIONS(3217), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186596,18 +196697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167075] = 6, - ACTIONS(3023), 1, - anon_sym_if, - ACTIONS(3029), 1, - anon_sym_PLUS, + [175710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 25, + ACTIONS(3237), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -186617,6 +196711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -186633,12 +196728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 30, + ACTIONS(3239), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186664,22 +196762,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167149] = 7, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3119), 1, - anon_sym_and, - ACTIONS(3123), 1, - anon_sym_PLUS, + [175778] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, - sym__dedent, + ACTIONS(3233), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -186687,6 +196776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -186703,12 +196793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 29, + ACTIONS(3235), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186722,6 +196815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -186733,16 +196827,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167225] = 5, - ACTIONS(3023), 1, - anon_sym_if, + [175846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, + ACTIONS(3229), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -186769,12 +196858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 30, + ACTIONS(3231), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186800,26 +196892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167297] = 9, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3119), 1, - anon_sym_and, - ACTIONS(3123), 1, - anon_sym_PLUS, + [175914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2469), 24, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -186828,6 +196905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -186844,10 +196923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2467), 26, + ACTIONS(197), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -186861,6 +196945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -186871,14 +196957,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167377] = 3, + [175982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 27, - sym__newline, - sym__dedent, + ACTIONS(3225), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -186903,13 +196988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3293), 32, + ACTIONS(3227), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -186936,65 +197022,183 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167445] = 14, - ACTIONS(2633), 1, + [176050] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3219), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(2639), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2641), 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, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + sym_float, + ACTIONS(3221), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176118] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, + ACTIONS(3215), 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, - ACTIONS(3013), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 15, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3217), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176186] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3215), 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(2518), 29, + ACTIONS(3217), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + 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, @@ -187003,6 +197207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -187012,18 +197217,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167535] = 5, - ACTIONS(3023), 1, - anon_sym_if, + [176254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, + ACTIONS(3215), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187048,12 +197248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 30, + ACTIONS(3217), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187079,14 +197282,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167607] = 3, + [176322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 27, - sym__newline, - sym__dedent, + ACTIONS(3211), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187111,13 +197313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3297), 32, + ACTIONS(3213), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -187144,16 +197347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167675] = 5, - ACTIONS(3023), 1, - anon_sym_if, + [176390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 26, + ACTIONS(3207), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -187180,12 +197378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 30, + ACTIONS(3209), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187211,41 +197412,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167747] = 9, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3119), 1, - anon_sym_and, - ACTIONS(3123), 1, - anon_sym_PLUS, + [176458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, - sym__dedent, + ACTIONS(3203), 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_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -187253,45 +197436,52 @@ 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(2449), 23, + sym_float, + ACTIONS(3205), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [167827] = 5, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3301), 1, - anon_sym_not, + [176526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + ACTIONS(3203), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -187318,15 +197508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(3205), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -187337,6 +197529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -187349,12 +197542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167899] = 3, + [176594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + ACTIONS(3157), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -187381,13 +197573,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3155), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -187414,20 +197607,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [167967] = 7, - ACTIONS(3023), 1, - anon_sym_if, - ACTIONS(3025), 1, - anon_sym_and, - ACTIONS(3029), 1, - anon_sym_PLUS, + [176662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, + ACTIONS(3195), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -187437,6 +197621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -187453,12 +197638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 29, + ACTIONS(3197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187472,6 +197660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -187483,14 +197672,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168043] = 3, + [176730] = 5, + ACTIONS(3307), 1, + anon_sym_in, + ACTIONS(3373), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 27, + ACTIONS(201), 27, sym__newline, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187515,7 +197708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -187524,7 +197717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -187535,7 +197727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -187548,16 +197739,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168111] = 4, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [176802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 27, - sym__newline, + ACTIONS(3153), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187582,13 +197770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(3151), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187614,18 +197804,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168181] = 5, - ACTIONS(3023), 1, - anon_sym_if, + [176870] = 4, + STATE(2256), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 26, + ACTIONS(201), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187650,12 +197837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 30, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187681,12 +197870,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168253] = 3, + [176940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 27, - sym__newline, + ACTIONS(3219), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -187713,13 +197901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 32, + ACTIONS(3221), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -187746,16 +197935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168321] = 5, - ACTIONS(3023), 1, - anon_sym_if, + [177008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 26, + ACTIONS(3191), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -187782,12 +197966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 30, + ACTIONS(3193), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187813,40 +198000,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168393] = 13, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [177076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3013), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, + ACTIONS(3109), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -187857,20 +198029,24 @@ 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(2518), 29, + ACTIONS(3107), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + 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, @@ -187879,6 +198055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -187888,16 +198065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168481] = 4, - STATE(3247), 1, - aux_sym_comparison_operator_repeat1, + [177144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(3187), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187922,13 +198096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + ACTIONS(3189), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -187954,14 +198130,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168551] = 3, + [177212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(3183), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -187986,13 +198161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3185), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188019,14 +198195,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168619] = 3, + [177280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 27, - sym__newline, - sym__dedent, + ACTIONS(3179), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188051,13 +198226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3203), 32, + ACTIONS(3181), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188084,16 +198260,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168687] = 4, - ACTIONS(2904), 1, - anon_sym_EQ, + [177348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 27, - sym__newline, - sym__dedent, + ACTIONS(3175), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188118,13 +198291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 31, + ACTIONS(3177), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -188150,14 +198325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168757] = 4, - ACTIONS(3169), 1, - anon_sym_else, + [177416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, + ACTIONS(3171), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -188184,13 +198356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + ACTIONS(3173), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -188216,13 +198390,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168827] = 3, + [177484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2900), 26, + ACTIONS(3117), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188247,15 +198421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2898), 33, + ACTIONS(3115), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -188281,12 +198455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168895] = 3, + [177552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 27, - sym__newline, + ACTIONS(3167), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -188313,13 +198486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3253), 32, + ACTIONS(3169), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188346,15 +198520,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [168963] = 4, - STATE(2110), 1, - sym_dictionary, + [177620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(3163), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188379,13 +198551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3165), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188412,18 +198585,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169033] = 5, - ACTIONS(3307), 1, + [177688] = 5, + ACTIONS(3375), 1, anon_sym_in, - ACTIONS(3309), 1, + ACTIONS(3377), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188448,13 +198620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -188479,11 +198652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169105] = 3, + [177760] = 5, + ACTIONS(3307), 1, + anon_sym_in, + ACTIONS(3379), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 27, + ACTIONS(201), 27, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -188511,16 +198688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3273), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -188531,7 +198707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -188544,20 +198719,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169173] = 3, + [177832] = 8, + ACTIONS(3359), 1, + sym_isMutableFlag, + ACTIONS(3361), 1, + anon_sym_QMARK_COLON, + STATE(2414), 1, + aux_sym_comparison_operator_repeat1, + STATE(2522), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 27, + ACTIONS(1538), 26, sym__newline, - sym__dedent, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -188576,13 +198760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3259), 32, + ACTIONS(1536), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188592,10 +198775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -188609,12 +198789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169241] = 3, + [177910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 27, - sym__newline, + ACTIONS(3149), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -188641,13 +198820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3277), 32, + ACTIONS(3147), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188674,14 +198854,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169309] = 3, + [177978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 27, - sym__newline, - sym__dedent, + ACTIONS(3143), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188706,13 +198885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3235), 32, + ACTIONS(3141), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188739,26 +198919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169377] = 9, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3023), 1, - anon_sym_if, - ACTIONS(3025), 1, - anon_sym_and, - ACTIONS(3029), 1, - anon_sym_PLUS, + [178046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2469), 24, + ACTIONS(3045), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -188767,6 +198932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -188783,10 +198950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2467), 26, + ACTIONS(3043), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -188800,6 +198972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -188810,14 +198984,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169457] = 3, + [178114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 27, - sym__newline, - sym__dedent, + ACTIONS(3127), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188842,13 +199015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3239), 32, + ACTIONS(3125), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188875,14 +199049,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169525] = 3, + [178182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 27, - sym__newline, - sym__dedent, + ACTIONS(3123), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -188907,13 +199080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 32, + ACTIONS(3121), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -188940,16 +199114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169593] = 5, - ACTIONS(3117), 1, - anon_sym_if, + [178250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 26, + ACTIONS(3149), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -188976,12 +199145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 30, + ACTIONS(3147), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189007,14 +199179,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169665] = 3, + [178318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 27, - sym__newline, + ACTIONS(3143), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189039,13 +199210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 32, + ACTIONS(3141), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -189072,12 +199244,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169733] = 3, + [178386] = 4, + ACTIONS(3297), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 27, - sym__newline, + ACTIONS(2554), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -189104,14 +199277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 32, + ACTIONS(2556), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189137,18 +199310,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169801] = 5, - ACTIONS(3117), 1, - anon_sym_if, + [178456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 26, - sym__dedent, + ACTIONS(3117), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189173,12 +199341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 30, + ACTIONS(3115), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189204,102 +199375,78 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [169873] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2633), 1, - anon_sym_LPAREN, - ACTIONS(2635), 1, - anon_sym_LBRACK, - ACTIONS(2639), 1, - anon_sym_QMARK_DOT, - ACTIONS(2641), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3009), 1, - anon_sym_STAR_STAR, - ACTIONS(3015), 1, - anon_sym_PIPE, - ACTIONS(3017), 1, - anon_sym_AMP, - ACTIONS(3019), 1, - anon_sym_CARET, - STATE(2195), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [178524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3011), 2, + ACTIONS(3109), 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, - ACTIONS(3013), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3021), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2501), 19, + ACTIONS(3107), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [169979] = 5, - ACTIONS(3307), 1, - anon_sym_in, - ACTIONS(3311), 1, - anon_sym_not, + [178592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(3101), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189324,15 +199471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(3099), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -189343,6 +199492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -189355,14 +199505,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170051] = 3, + [178660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(3097), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189387,13 +199536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3095), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -189420,18 +199570,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170119] = 5, - ACTIONS(3117), 1, - anon_sym_if, + [178728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 26, - sym__dedent, + ACTIONS(3093), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189456,12 +199601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 30, + ACTIONS(3091), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189487,12 +199635,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170191] = 3, + [178796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 27, - sym__newline, + ACTIONS(3089), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -189519,13 +199666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 32, + ACTIONS(3087), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -189552,18 +199700,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170259] = 5, - ACTIONS(3117), 1, - anon_sym_if, + [178864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, - sym__dedent, + ACTIONS(3083), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189588,12 +199731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 30, + ACTIONS(3081), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189619,18 +199765,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170331] = 5, - ACTIONS(3117), 1, - anon_sym_if, + [178932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, - sym__dedent, + ACTIONS(3079), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189655,12 +199796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 30, + ACTIONS(3077), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189686,20 +199830,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170403] = 6, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3123), 1, - anon_sym_PLUS, + [179000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 25, - sym__dedent, + ACTIONS(3075), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189707,6 +199844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -189723,12 +199861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 30, + ACTIONS(3073), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189754,16 +199895,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170477] = 5, - ACTIONS(3117), 1, - anon_sym_if, + [179068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 26, + ACTIONS(3287), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -189790,12 +199926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2453), 30, + ACTIONS(3289), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189821,20 +199960,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170549] = 6, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3123), 1, - anon_sym_PLUS, + [179136] = 4, + STATE(3290), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, - sym__dedent, + ACTIONS(201), 27, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189842,6 +199977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -189858,11 +199994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 30, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_in, @@ -189889,18 +200026,94 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170623] = 6, - ACTIONS(3117), 1, - anon_sym_if, - ACTIONS(3123), 1, + [179206] = 21, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + anon_sym_LBRACK, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + ACTIONS(3279), 1, + anon_sym_not, + ACTIONS(3283), 1, + anon_sym_is, + STATE(2160), 1, + sym_argument_list, + STATE(3295), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2969), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3277), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3281), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [179310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 25, + ACTIONS(2356), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -189910,6 +200123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -189926,12 +200140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2445), 30, + ACTIONS(2310), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -189957,14 +200174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170697] = 3, + [179378] = 4, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 27, - sym__newline, + ACTIONS(2768), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -189989,14 +200207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3289), 32, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190022,12 +200240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170765] = 3, + [179448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 27, - sym__newline, + ACTIONS(3055), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -190054,13 +200271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3293), 32, + ACTIONS(3053), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -190087,16 +200305,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170833] = 4, - STATE(1929), 1, - aux_sym_comparison_operator_repeat1, + [179516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - sym__dedent, + ACTIONS(3045), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190121,13 +200336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + ACTIONS(3043), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190153,12 +200370,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170903] = 3, + [179584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 27, - sym__newline, + ACTIONS(3039), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -190185,13 +200401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3297), 32, + ACTIONS(3037), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -190218,13 +200435,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [170971] = 3, + [179652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 26, - sym__dedent, + ACTIONS(3035), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190249,13 +200466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 32, + ACTIONS(3033), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -190282,13 +200500,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171038] = 4, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [179720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3045), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -190315,13 +200531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(3043), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190347,15 +200565,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171107] = 4, - STATE(2131), 1, - aux_sym_comparison_operator_repeat1, + [179788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190380,13 +200596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190412,15 +200630,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171176] = 4, - ACTIONS(3031), 1, - anon_sym_EQ, + [179856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 26, + ACTIONS(3127), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190445,13 +200661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 31, + ACTIONS(3125), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190477,15 +200695,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171245] = 4, - ACTIONS(3169), 1, - anon_sym_else, + [179924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190510,13 +200726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + ACTIONS(197), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190542,13 +200760,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171314] = 3, + [179992] = 4, + ACTIONS(3293), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2554), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190573,14 +200793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(2556), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190606,11 +200826,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171381] = 3, + [180062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 26, + ACTIONS(3225), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -190637,13 +200857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 32, + ACTIONS(3227), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -190670,117 +200891,74 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171448] = 4, - ACTIONS(3169), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [180130] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2973), 1, + anon_sym_AMP, + ACTIONS(2975), 1, + anon_sym_CARET, + STATE(2160), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2963), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2967), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2969), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2977), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(217), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [171517] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3291), 26, + ACTIONS(2458), 8, 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(3289), 32, + ACTIONS(2386), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - 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, @@ -190789,21 +200967,32 @@ 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, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [171584] = 3, + [180232] = 8, + ACTIONS(3384), 1, + anon_sym_not, + ACTIONS(3390), 1, + anon_sym_is, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 26, + ACTIONS(3381), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3387), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -190824,22 +201013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3293), 32, + ACTIONS(2841), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -190850,26 +201034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [171651] = 3, + [180310] = 4, + STATE(2149), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -190894,14 +201076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3297), 32, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190927,13 +201109,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171718] = 4, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [180380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3105), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -190960,13 +201140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(3103), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -190992,13 +201174,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171787] = 3, + [180448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3135), 26, + ACTIONS(3229), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191023,13 +201205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3133), 32, + ACTIONS(3231), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191056,13 +201239,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171854] = 4, - STATE(2120), 1, + [180516] = 8, + ACTIONS(3396), 1, + anon_sym_not, + ACTIONS(3402), 1, + anon_sym_is, + STATE(2243), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3393), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3399), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -191083,21 +201279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(2841), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -191108,28 +201300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [171923] = 4, - STATE(2120), 1, + [180594] = 4, + STATE(2239), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(2768), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191154,13 +201342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -191186,82 +201375,95 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [171992] = 8, - ACTIONS(3313), 1, - sym_isMutableFlag, - ACTIONS(3315), 1, - anon_sym_QMARK_COLON, - STATE(2433), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, + [180664] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_PLUS_EQ, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2995), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3003), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2458), 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(1586), 27, + ACTIONS(2386), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, 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, - [172069] = 3, + [180766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 26, - sym__dedent, + ACTIONS(3287), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191286,13 +201488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 32, + ACTIONS(3289), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191319,75 +201522,94 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172136] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3129), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [180834] = 21, + ACTIONS(2643), 1, anon_sym_LPAREN, + ACTIONS(2645), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2651), 1, anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3337), 1, + anon_sym_not, + ACTIONS(3341), 1, + anon_sym_is, + STATE(2222), 1, + sym_argument_list, + STATE(3299), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2995), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3003), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3335), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3339), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 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(3131), 32, + ACTIONS(2310), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [172203] = 3, + [180938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 26, + ACTIONS(2356), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -191414,13 +201636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3163), 32, + ACTIONS(2310), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191447,11 +201670,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172270] = 3, + [181006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(3123), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -191478,13 +201701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(3121), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191511,28 +201735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172337] = 8, - ACTIONS(3320), 1, - anon_sym_not, - ACTIONS(3326), 1, - anon_sym_is, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [181074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3323), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 22, + ACTIONS(3237), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191551,16 +201760,23 @@ 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(2861), 26, + ACTIONS(3239), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -191571,35 +201787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [172414] = 8, - ACTIONS(3332), 1, - anon_sym_not, - ACTIONS(3338), 1, - anon_sym_is, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [181142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3329), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3335), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 22, + ACTIONS(3241), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -191620,16 +201825,23 @@ 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(2861), 26, + ACTIONS(3243), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -191640,22 +201852,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [172491] = 3, + [181210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 26, + ACTIONS(3245), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191680,13 +201896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3143), 32, + ACTIONS(3247), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191713,13 +201930,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172558] = 3, + [181278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3149), 26, + ACTIONS(3249), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191744,13 +201961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3151), 32, + ACTIONS(3251), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191777,13 +201995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172625] = 3, + [181346] = 4, + STATE(3288), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -191808,7 +202028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3239), 32, + ACTIONS(197), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -191841,11 +202061,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172692] = 3, + [181416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 26, + ACTIONS(3157), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -191872,13 +202092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 32, + ACTIONS(3155), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -191905,11 +202126,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172759] = 3, + [181484] = 4, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 26, + ACTIONS(2768), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -191936,14 +202159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 32, + ACTIONS(2770), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -191969,15 +202192,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172826] = 4, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [181554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, + ACTIONS(3199), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -192002,13 +202223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(3201), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192034,146 +202257,100 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [172895] = 8, - ACTIONS(3313), 1, - sym_isMutableFlag, - ACTIONS(3315), 1, - anon_sym_QMARK_COLON, - STATE(2389), 1, + [181622] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2643), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_QMARK_DOT, + ACTIONS(2665), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2991), 1, + anon_sym_STAR_STAR, + ACTIONS(2997), 1, + anon_sym_PIPE, + ACTIONS(2999), 1, + anon_sym_AMP, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3405), 1, + anon_sym_for, + STATE(2222), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - STATE(2433), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_PLUS_EQ, + ACTIONS(2989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2993), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2995), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3003), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1586), 27, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, - 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_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, - [172972] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3067), 26, + ACTIONS(2927), 7, 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(3065), 32, + ACTIONS(2923), 19, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [173039] = 3, + [181730] = 4, + STATE(3298), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -192198,14 +202375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3235), 32, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192231,24 +202407,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173106] = 4, - STATE(2121), 1, + [181799] = 8, + ACTIONS(3407), 1, + sym_isMutableFlag, + ACTIONS(3409), 1, + anon_sym_QMARK_COLON, + STATE(2625), 1, + sym_dict_expr, + STATE(3303), 1, aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, + ACTIONS(1538), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -192264,13 +202448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, - anon_sym_import, + ACTIONS(1536), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192278,14 +202462,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -192296,13 +202476,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173175] = 3, + [181876] = 5, + ACTIONS(3323), 1, + anon_sym_in, + ACTIONS(3411), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 26, + ACTIONS(201), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -192327,16 +202512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3061), 32, + ACTIONS(197), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -192347,7 +202530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -192360,19 +202542,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173242] = 3, + [181947] = 8, + ACTIONS(3361), 1, + anon_sym_QMARK_COLON, + ACTIONS(3413), 1, + sym_isMutableFlag, + STATE(2522), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3055), 26, + ACTIONS(1538), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -192391,14 +202583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3053), 32, + ACTIONS(1536), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192407,10 +202597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -192424,19 +202611,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173309] = 3, + [182024] = 8, + ACTIONS(3361), 1, + anon_sym_QMARK_COLON, + ACTIONS(3413), 1, + sym_isMutableFlag, + STATE(2446), 1, + aux_sym_comparison_operator_repeat1, + STATE(2522), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 26, + ACTIONS(1538), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -192455,14 +202652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3049), 32, + ACTIONS(1536), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192471,10 +202666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -192488,75 +202680,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173376] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3043), 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(3041), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + [182101] = 5, + ACTIONS(3307), 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_check, + ACTIONS(3415), 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, - [173443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 26, + ACTIONS(201), 27, + sym__newline, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -192583,16 +202716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3155), 32, + ACTIONS(197), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -192603,7 +202734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -192616,32 +202746,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173510] = 8, - ACTIONS(3341), 1, + [182172] = 8, + ACTIONS(3407), 1, sym_isMutableFlag, - ACTIONS(3343), 1, + ACTIONS(3409), 1, anon_sym_QMARK_COLON, - STATE(2492), 1, - sym_dict_expr, - STATE(3265), 1, + STATE(2483), 1, aux_sym_comparison_operator_repeat1, - STATE(4412), 1, + STATE(2625), 1, + sym_dict_expr, + STATE(4447), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, - sym__newline, - sym__indent, + ACTIONS(1538), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -192657,13 +202787,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 27, - anon_sym_import, + ACTIONS(1536), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192671,10 +202801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -192685,24 +202815,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173587] = 4, - STATE(2121), 1, + [182249] = 8, + ACTIONS(3407), 1, + sym_isMutableFlag, + ACTIONS(3409), 1, + anon_sym_QMARK_COLON, + STATE(2625), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, - sym__dedent, + ACTIONS(1538), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -192718,13 +202856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, - anon_sym_import, + ACTIONS(1536), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -192732,14 +202870,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -192750,75 +202884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173656] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3145), 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(3147), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, - anon_sym_lambda, + [182326] = 5, + ACTIONS(3375), 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_check, + ACTIONS(3417), 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, - [173723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3157), 26, + ACTIONS(201), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -192845,7 +202919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3159), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -192854,7 +202928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -192865,7 +202938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -192878,11 +202950,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173790] = 3, + [182397] = 5, + ACTIONS(3375), 1, + anon_sym_in, + ACTIONS(3419), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 26, + ACTIONS(201), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -192909,16 +202985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -192929,7 +203004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -192942,13 +203016,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173857] = 3, + [182468] = 5, + ACTIONS(3369), 1, + anon_sym_in, + ACTIONS(3421), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 26, + ACTIONS(201), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -192973,16 +203051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, + anon_sym_for, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -192993,7 +203070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193006,13 +203082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173924] = 3, + [182539] = 4, + STATE(3301), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3137), 26, + ACTIONS(201), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -193037,14 +203115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3139), 32, + ACTIONS(197), 31, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -193070,21 +203147,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [173991] = 8, - ACTIONS(3341), 1, - sym_isMutableFlag, - ACTIONS(3343), 1, + [182608] = 8, + ACTIONS(3361), 1, anon_sym_QMARK_COLON, - STATE(2355), 1, - aux_sym_comparison_operator_repeat1, - STATE(2492), 1, + ACTIONS(3413), 1, + sym_isMutableFlag, + STATE(2522), 1, sym_dict_expr, - STATE(4412), 1, + STATE(3313), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, + ACTIONS(1538), 26, sym__newline, sym__indent, sym_string_start, @@ -193111,13 +203188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 27, + ACTIONS(1536), 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, anon_sym_all, @@ -193126,6 +203202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -193139,13 +203216,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174068] = 3, + [182685] = 5, + ACTIONS(3369), 1, + anon_sym_in, + ACTIONS(3423), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 26, + ACTIONS(201), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -193170,7 +203251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3177), 32, + ACTIONS(197), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -193179,7 +203260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -193190,7 +203270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193203,22 +203282,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174135] = 3, + [182756] = 8, + ACTIONS(3425), 1, + sym_isMutableFlag, + ACTIONS(3427), 1, + anon_sym_QMARK_COLON, + STATE(2448), 1, + sym_dict_expr, + STATE(3318), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3191), 26, - sym__dedent, + ACTIONS(1538), 24, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -193234,14 +203321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3193), 32, - anon_sym_import, + ACTIONS(1536), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -193249,14 +203335,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -193267,26 +203350,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174202] = 5, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3347), 1, - anon_sym_not, + [182832] = 8, + ACTIONS(3425), 1, + sym_isMutableFlag, + ACTIONS(3427), 1, + anon_sym_QMARK_COLON, + STATE(2448), 1, + sym_dict_expr, + STATE(2624), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(1538), 24, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -193302,27 +203389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, - anon_sym_import, + ACTIONS(1536), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -193333,22 +203418,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174273] = 3, + [182908] = 8, + ACTIONS(3425), 1, + sym_isMutableFlag, + ACTIONS(3427), 1, + anon_sym_QMARK_COLON, + STATE(2448), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 26, - sym__dedent, + ACTIONS(1538), 24, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -193364,14 +203457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3189), 32, - anon_sym_import, + ACTIONS(1536), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -193379,14 +203471,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -193397,11 +203486,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174340] = 3, + [182984] = 5, + ACTIONS(3369), 1, + anon_sym_in, + ACTIONS(3429), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 26, + ACTIONS(201), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -193428,16 +203521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3203), 32, + ACTIONS(197), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -193448,7 +203539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193461,13 +203551,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174407] = 3, + [183054] = 5, + ACTIONS(3375), 1, + anon_sym_in, + ACTIONS(3431), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(201), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -193492,16 +203586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, + ACTIONS(197), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -193512,7 +203604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mixin, anon_sym_protocol, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193525,24 +203616,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174474] = 5, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3349), 1, - anon_sym_not, + [183124] = 4, + STATE(2288), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, + ACTIONS(2598), 26, sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -193561,24 +203649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 29, + ACTIONS(2600), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193591,44 +203679,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174545] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3183), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [183191] = 14, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(3447), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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(3185), 32, + ACTIONS(1942), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -193636,16 +203738,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -193655,19 +203752,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174612] = 3, + [183278] = 5, + ACTIONS(259), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 26, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -193686,13 +203788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3253), 32, + ACTIONS(2252), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -193702,10 +203802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -193719,30 +203816,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174679] = 5, - ACTIONS(3351), 1, - anon_sym_in, - ACTIONS(3353), 1, - anon_sym_not, + [183347] = 5, + ACTIONS(3451), 1, + anon_sym_PIPE, + STATE(2281), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(1954), 25, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -193754,25 +203850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(1956), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193785,26 +203880,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174750] = 5, - ACTIONS(3307), 1, - anon_sym_in, - ACTIONS(3355), 1, - anon_sym_not, + [183416] = 6, + ACTIONS(259), 1, + anon_sym_if, + ACTIONS(3454), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 25, sym__newline, - sym__dedent, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -193821,24 +203917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 29, + ACTIONS(2256), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -193851,19 +203945,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174821] = 3, + [183487] = 5, + ACTIONS(259), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3179), 26, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -193882,13 +203981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3181), 32, + ACTIONS(2264), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -193898,10 +203995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -193915,21 +204009,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174888] = 3, + [183556] = 6, + ACTIONS(259), 1, + anon_sym_if, + ACTIONS(3454), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3179), 26, - sym__dedent, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -193946,13 +204046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3181), 32, + ACTIONS(2242), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -193962,10 +204060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -193979,21 +204074,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [174955] = 8, - ACTIONS(3341), 1, - sym_isMutableFlag, - ACTIONS(3343), 1, - anon_sym_QMARK_COLON, - STATE(2492), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [183627] = 9, + ACTIONS(259), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3454), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2276), 23, + 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_mixin, + 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, + ACTIONS(2278), 24, sym__newline, sym__indent, sym_string_start, @@ -194002,8 +204126,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [183704] = 7, + ACTIONS(259), 1, + anon_sym_if, + ACTIONS(3454), 1, anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 25, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -194020,12 +204181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 27, + ACTIONS(2242), 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, @@ -194035,8 +204195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -194048,21 +204208,34 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175032] = 3, + [183777] = 10, + ACTIONS(259), 1, + anon_sym_if, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(3454), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_and, + ACTIONS(3458), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 26, - sym__dedent, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 24, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -194079,13 +204252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3177), 32, + ACTIONS(2059), 24, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -194095,13 +204265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -194112,19 +204277,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175099] = 3, + [183856] = 4, + STATE(2319), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 26, - sym__dedent, + ACTIONS(2300), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -194143,14 +204310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 32, + ACTIONS(2298), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -194159,10 +204326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -194176,87 +204340,109 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175166] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3125), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [183923] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3127), 32, - anon_sym_import, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 16, + 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [175233] = 3, + [184026] = 6, + ACTIONS(3466), 1, + anon_sym_DOT, + ACTIONS(3469), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + STATE(2290), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 24, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -194271,14 +204457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, - anon_sym_import, - anon_sym_DOT, + ACTIONS(2436), 28, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -194286,14 +204470,12 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -194304,19 +204486,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175300] = 3, + [184097] = 4, + STATE(2318), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 26, + ACTIONS(1954), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -194335,14 +204519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 32, + ACTIONS(1956), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -194351,10 +204535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -194368,21 +204549,55 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175367] = 4, - STATE(3254), 1, + [184164] = 8, + ACTIONS(3472), 1, + sym_isMutableFlag, + ACTIONS(3474), 1, + anon_sym_QMARK_COLON, + STATE(2742), 1, aux_sym_comparison_operator_repeat1, + STATE(2855), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(1536), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(1538), 26, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -194401,59 +204616,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, + [184239] = 9, + ACTIONS(259), 1, anon_sym_if, - anon_sym_rule, - anon_sym_lambda, + ACTIONS(3454), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [175436] = 5, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3357), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2244), 12, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -194461,185 +204658,211 @@ 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(217), 30, + ACTIONS(2242), 20, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, 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_check, - anon_sym_and, + 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, - [175507] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3157), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [184316] = 21, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + ACTIONS(3478), 1, + anon_sym_not, + ACTIONS(3482), 1, + anon_sym_is, + STATE(2342), 1, + aux_sym_comparison_operator_repeat1, + STATE(2577), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3476), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3480), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(3159), 32, + ACTIONS(2310), 21, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [175574] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [184417] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(217), 32, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 16, + 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [175641] = 3, + [184520] = 5, + ACTIONS(259), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 26, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -194658,13 +204881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3203), 32, + ACTIONS(2400), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -194674,10 +204895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -194691,20 +204909,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175708] = 3, + [184589] = 6, + ACTIONS(3484), 1, + anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3109), 26, + STATE(2297), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 25, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -194722,13 +204946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3111), 32, + ACTIONS(2436), 27, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -194738,10 +204960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -194755,19 +204974,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175775] = 3, + [184660] = 5, + ACTIONS(259), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 26, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -194786,13 +205010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3185), 32, + ACTIONS(2236), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -194802,10 +205024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -194819,21 +205038,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175842] = 3, + [184729] = 7, + ACTIONS(259), 1, + anon_sym_if, + ACTIONS(3454), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 26, - sym__dedent, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 25, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -194850,13 +205077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3155), 32, + ACTIONS(2540), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -194866,12 +205091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -194883,35 +205104,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175909] = 8, - ACTIONS(3313), 1, - sym_isMutableFlag, - ACTIONS(3315), 1, - anon_sym_QMARK_COLON, - STATE(2433), 1, - sym_dict_expr, - STATE(3261), 1, + [184802] = 13, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3439), 1, + anon_sym_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 26, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - 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_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -194922,27 +205148,25 @@ 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(1586), 27, + ACTIONS(1942), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -194952,19 +205176,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [175986] = 3, + [184887] = 5, + ACTIONS(259), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 26, - sym__dedent, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -194983,13 +205212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 32, + ACTIONS(2252), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -194999,10 +205226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195016,21 +205240,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176053] = 4, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [184956] = 4, + STATE(2318), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(2192), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -195049,13 +205273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 31, + ACTIONS(2194), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -195064,10 +205289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195081,19 +205303,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176122] = 3, + [185023] = 5, + ACTIONS(259), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 26, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -195112,13 +205339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3235), 32, + ACTIONS(129), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195128,10 +205353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195145,44 +205367,59 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176189] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3237), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [185092] = 15, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 14, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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(3239), 32, + ACTIONS(1942), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195190,16 +205427,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -195209,44 +205441,60 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176256] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3129), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [185181] = 16, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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(3131), 32, + ACTIONS(1942), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195254,16 +205502,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -195273,25 +205516,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176323] = 3, + [185272] = 12, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3439), 1, + anon_sym_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 26, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 19, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_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, @@ -195302,15 +205559,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(3077), 32, + ACTIONS(1942), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195318,16 +205573,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -195337,23 +205587,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176390] = 3, + [185355] = 4, + ACTIONS(3490), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3113), 26, - sym__dedent, + ACTIONS(2033), 25, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -195368,14 +205619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3115), 32, + ACTIONS(2035), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -195384,13 +205635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -195401,19 +205650,55 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176457] = 3, + [185422] = 8, + ACTIONS(3472), 1, + sym_isMutableFlag, + ACTIONS(3474), 1, + anon_sym_QMARK_COLON, + STATE(2855), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3057), 26, - sym__dedent, + ACTIONS(1536), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(1538), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -195432,13 +205717,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3059), 32, + [185497] = 5, + ACTIONS(3492), 1, + anon_sym_EQ, + STATE(2318), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(2556), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195448,10 +205767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195465,20 +205781,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176524] = 3, + [185566] = 10, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3439), 1, + anon_sym_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 26, - sym__dedent, + ACTIONS(2069), 21, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -195494,15 +205820,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(3047), 32, + ACTIONS(2067), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195512,10 +205836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195529,83 +205850,100 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176591] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3045), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [185645] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2458), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(3047), 32, + ACTIONS(2386), 22, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [176658] = 3, + [185744] = 4, + STATE(2318), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3069), 26, - sym__dedent, + ACTIONS(2220), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -195624,14 +205962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3071), 32, + ACTIONS(2222), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -195640,10 +205978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195657,19 +205992,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176725] = 3, + [185811] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 26, - sym__dedent, + STATE(2297), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -195688,13 +206026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3075), 32, + ACTIONS(2288), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195704,10 +206041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195721,84 +206055,110 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176792] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3257), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [185878] = 21, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + ACTIONS(3478), 1, + anon_sym_not, + ACTIONS(3482), 1, + anon_sym_is, + STATE(2577), 1, + sym_argument_list, + STATE(3304), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3476), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3480), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(3259), 32, + ACTIONS(2310), 21, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [176859] = 3, + [185979] = 10, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3439), 1, + anon_sym_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 26, + ACTIONS(1940), 21, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -195814,15 +206174,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(3189), 32, + ACTIONS(1942), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195832,10 +206190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195849,20 +206204,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176926] = 3, + [186058] = 10, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3439), 1, + anon_sym_STAR_STAR, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 26, - sym__dedent, + ACTIONS(1940), 21, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -195878,15 +206243,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(3097), 32, + ACTIONS(1942), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195896,10 +206259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -195913,44 +206273,61 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [176993] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3095), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [186137] = 17, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2458), 12, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3097), 32, + ACTIONS(2386), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -195958,16 +206335,11 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -195977,19 +206349,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177060] = 3, + [186230] = 4, + STATE(2281), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3109), 26, - sym__dedent, + ACTIONS(2392), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -196008,14 +206382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3111), 32, + ACTIONS(2390), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196024,10 +206398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196041,20 +206412,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177127] = 3, + [186297] = 6, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3497), 1, + anon_sym_QMARK_DOT, + STATE(2319), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3125), 26, - sym__dedent, + ACTIONS(2007), 25, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -196072,14 +206448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3127), 32, + ACTIONS(2009), 28, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196088,10 +206463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196105,83 +206477,102 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177194] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3191), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [186368] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_AMP, + ACTIONS(3464), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3443), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3193), 32, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 16, + 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [177261] = 3, + [186471] = 4, + STATE(2318), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3137), 26, - sym__dedent, + ACTIONS(2154), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -196200,14 +206591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3139), 32, + ACTIONS(2156), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196216,10 +206607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196233,23 +206621,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177328] = 3, + [186538] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3145), 26, - sym__dedent, + STATE(2290), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 25, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -196264,14 +206654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3147), 32, - anon_sym_import, + ACTIONS(2288), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196279,14 +206668,12 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -196297,60 +206684,34 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177395] = 5, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3359), 1, - anon_sym_not, + [186605] = 8, + ACTIONS(3472), 1, + sym_isMutableFlag, + ACTIONS(3474), 1, + anon_sym_QMARK_COLON, + STATE(2855), 1, + sym_dict_expr, + STATE(3346), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 27, - sym__newline, - 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(217), 29, - anon_sym_import, + ACTIONS(1536), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -196363,23 +206724,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177466] = 3, + ACTIONS(1538), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, + [186680] = 4, + ACTIONS(3500), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 26, + ACTIONS(2154), 25, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -196394,14 +206783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 32, + ACTIONS(2156), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196410,13 +206799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -196427,23 +206814,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177533] = 3, + [186747] = 4, + ACTIONS(3502), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 26, + ACTIONS(1973), 25, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -196458,14 +206846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3273), 32, + ACTIONS(1975), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196474,13 +206862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -196491,19 +206877,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177600] = 3, + [186814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 26, - sym__dedent, + ACTIONS(2007), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -196522,14 +206908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3259), 32, + ACTIONS(2009), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196538,10 +206924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196555,23 +206938,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177667] = 3, + [186878] = 4, + STATE(2398), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3149), 26, - sym__dedent, + ACTIONS(2300), 25, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -196586,14 +206970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3151), 32, - anon_sym_import, + ACTIONS(2298), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196601,14 +206984,12 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -196619,23 +207000,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177734] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, + [186944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(2778), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -196654,25 +207031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(2776), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -196685,22 +207061,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177805] = 3, + [187008] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 26, - sym__dedent, + STATE(2360), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2290), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -196716,14 +207095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3163), 32, - anon_sym_import, + ACTIONS(2288), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196731,14 +207109,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -196749,61 +207123,72 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177872] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3299), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [187074] = 17, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2458), 12, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3297), 32, + ACTIONS(2386), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -196813,45 +207198,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [177939] = 3, + [187166] = 5, + ACTIONS(3520), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 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(3143), 32, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196860,10 +207220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196877,19 +207234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178006] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3073), 26, + ACTIONS(133), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -196908,14 +207261,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3075), 32, - anon_sym_import, + [187234] = 6, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3522), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196923,11 +207285,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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196941,24 +207298,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178073] = 4, - STATE(2113), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2244), 26, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -196974,13 +207325,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, - anon_sym_import, + [187304] = 10, + ACTIONS(395), 1, anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3524), 1, + anon_sym_and, + ACTIONS(3526), 1, + anon_sym_or, + ACTIONS(3528), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 23, + anon_sym_import, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -196989,13 +207356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -197006,21 +207368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178142] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3067), 26, - sym__dedent, + ACTIONS(2057), 24, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_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, @@ -197037,14 +207393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3065), 32, - anon_sym_import, + [187382] = 5, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197052,14 +207415,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -197070,22 +207429,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178209] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3063), 26, - sym__dedent, + ACTIONS(2266), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -197101,14 +207456,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3061), 32, - anon_sym_import, + [187450] = 6, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3522), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197116,11 +207480,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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -197134,22 +207493,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178276] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3167), 26, + ACTIONS(2258), 26, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -197165,14 +207520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3165), 32, - anon_sym_import, + [187520] = 5, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197180,14 +207542,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -197198,24 +207556,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178343] = 4, - STATE(3252), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(2254), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -197231,13 +207583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 31, + [187588] = 5, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197246,10 +207605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -197263,24 +207619,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178412] = 5, - ACTIONS(3307), 1, - anon_sym_in, - ACTIONS(3361), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 27, + ACTIONS(2266), 26, sym__newline, - sym__dedent, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -197299,26 +207646,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 29, - anon_sym_import, + [187656] = 5, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -197329,26 +207682,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178483] = 5, - ACTIONS(3351), 1, - anon_sym_in, - ACTIONS(3363), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(2254), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -197364,50 +207709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_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, - [178554] = 3, + [187724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 26, + ACTIONS(2807), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -197426,14 +207740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3293), 32, + ACTIONS(2805), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197442,10 +207756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -197459,45 +207770,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178621] = 3, + [187788] = 5, + ACTIONS(371), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 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(3289), 32, - anon_sym_import, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197505,14 +207792,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -197523,22 +207806,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178688] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3287), 26, + ACTIONS(2238), 26, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -197554,13 +207833,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 32, - anon_sym_import, + [187856] = 8, + ACTIONS(3530), 1, + sym_isMutableFlag, + ACTIONS(3532), 1, + anon_sym_QMARK_COLON, + STATE(3112), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -197569,11 +207860,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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -197587,19 +207873,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178755] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3055), 26, - sym__dedent, + ACTIONS(1538), 25, + sym__newline, 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, @@ -197618,52 +207899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3053), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [178822] = 3, + [187930] = 4, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 26, - sym__dedent, + ACTIONS(2768), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -197682,13 +207932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3049), 32, + ACTIONS(2770), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -197698,10 +207947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -197715,23 +207961,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178889] = 3, + [187996] = 4, + STATE(2327), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3069), 26, + ACTIONS(2598), 25, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -197746,14 +207993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3071), 32, - anon_sym_import, + ACTIONS(2600), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -197761,14 +208007,12 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -197779,83 +208023,112 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [178956] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3043), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [188062] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2458), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(3041), 32, + ACTIONS(2386), 21, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [179023] = 3, + [188160] = 8, + ACTIONS(3537), 1, + anon_sym_not, + ACTIONS(3543), 1, + anon_sym_is, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 26, + ACTIONS(3534), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3540), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -197868,148 +208141,207 @@ 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(3047), 32, + ACTIONS(2841), 23, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [179090] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3079), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [188234] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3077), 32, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, - anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 15, + anon_sym_import, + anon_sym_assert, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [179157] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3135), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [188336] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3133), 32, - anon_sym_import, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 15, + anon_sym_import, anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [188438] = 5, + ACTIONS(371), 1, anon_sym_if, - anon_sym_rule, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198017,14 +208349,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -198035,22 +208363,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179224] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3167), 26, - sym__dedent, + ACTIONS(133), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -198066,14 +208390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3165), 32, - anon_sym_import, + [188506] = 5, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198081,14 +208412,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -198099,22 +208426,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179291] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3045), 26, + ACTIONS(2402), 26, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -198130,56 +208453,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [179358] = 3, + [188574] = 4, + STATE(2464), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 26, + ACTIONS(201), 25, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -198194,14 +208485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 32, - anon_sym_import, + ACTIONS(197), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198209,14 +208499,12 @@ 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -198227,89 +208515,121 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179425] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3279), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [188640] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3546), 1, anon_sym_LPAREN, + ACTIONS(3548), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, + ACTIONS(3556), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(3558), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3562), 1, anon_sym_PIPE, + ACTIONS(3564), 1, anon_sym_AMP, + ACTIONS(3566), 1, anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3560), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3277), 32, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 9, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 14, + anon_sym_for, 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [179492] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3057), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [188744] = 13, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -198320,32 +208640,24 @@ 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(3059), 32, + ACTIONS(1942), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -198355,21 +208667,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179559] = 4, - ACTIONS(3199), 1, - anon_sym_EQ, + [188828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 26, - sym__dedent, + ACTIONS(2803), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -198388,13 +208698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 31, + ACTIONS(2801), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198403,10 +208714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -198420,86 +208728,111 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179628] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2367), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [188892] = 21, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3546), 1, anon_sym_LPAREN, + ACTIONS(3548), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, + ACTIONS(3556), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(3558), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3562), 1, anon_sym_PIPE, + ACTIONS(3564), 1, anon_sym_AMP, + ACTIONS(3566), 1, anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3560), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2458), 9, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, sym_float, - ACTIONS(2365), 32, - anon_sym_import, + ACTIONS(2386), 20, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [179695] = 3, + [188992] = 10, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3552), 1, + anon_sym_STAR_STAR, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 26, - sym__dedent, + ACTIONS(2069), 21, sym_string_start, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -198513,16 +208846,14 @@ 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(3253), 32, - anon_sym_import, + ACTIONS(2067), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198530,14 +208861,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -198548,61 +208875,69 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179762] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3275), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [189070] = 14, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(3518), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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(3273), 32, + ACTIONS(1942), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -198612,19 +208947,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179829] = 3, + [189156] = 4, + STATE(2409), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3113), 26, + ACTIONS(201), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -198643,13 +208980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3115), 32, + ACTIONS(197), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -198659,10 +208995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -198676,23 +209009,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179896] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, + [189222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2825), 26, + sym__newline, + sym__indent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -198711,25 +209040,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 30, + ACTIONS(2827), 29, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -198742,61 +209070,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [179967] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3279), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [189286] = 15, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3516), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 14, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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(3277), 32, + ACTIONS(1942), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -198806,22 +209143,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [180034] = 3, + [189374] = 6, + ACTIONS(3572), 1, + anon_sym_DOT, + ACTIONS(3575), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + STATE(2360), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 25, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -198837,14 +209180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 32, - anon_sym_import, - anon_sym_DOT, + ACTIONS(2436), 26, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198852,14 +209193,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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -198870,48 +209207,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [180101] = 8, - ACTIONS(3343), 1, - anon_sym_QMARK_COLON, - ACTIONS(3365), 1, - sym_isMutableFlag, - STATE(2492), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, + [189444] = 4, + STATE(3307), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 26, - 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_not, - anon_sym_and, - anon_sym_or, - 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(1588), 26, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -198938,26 +209240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [180177] = 8, - ACTIONS(3343), 1, - anon_sym_QMARK_COLON, - ACTIONS(3365), 1, - sym_isMutableFlag, - STATE(2492), 1, - sym_dict_expr, - STATE(2534), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 26, + ACTIONS(197), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -198966,6 +209255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -198979,89 +209269,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [189510] = 16, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3514), 1, anon_sym_AMP, + ACTIONS(3516), 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, - [180253] = 5, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3367), 1, - anon_sym_not, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 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(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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(217), 29, + ACTIONS(1942), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -199071,29 +209343,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [180323] = 5, - ACTIONS(3351), 1, - anon_sym_in, - ACTIONS(3369), 1, - anon_sym_not, + [189600] = 12, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__dedent, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3510), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 19, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_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, @@ -199104,29 +209386,24 @@ 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(217), 29, + ACTIONS(1942), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -199136,95 +209413,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [180393] = 8, - ACTIONS(3343), 1, - anon_sym_QMARK_COLON, - ACTIONS(3365), 1, + [189682] = 8, + ACTIONS(3578), 1, sym_isMutableFlag, - STATE(2492), 1, - sym_dict_expr, - STATE(3277), 1, + ACTIONS(3580), 1, + anon_sym_QMARK_COLON, + STATE(2914), 1, aux_sym_comparison_operator_repeat1, - STATE(4412), 1, + STATE(3175), 1, + sym_dict_expr, + STATE(4447), 1, aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 26, - anon_sym_import, + ACTIONS(1538), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(1536), 48, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - 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(1588), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, 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, - [180469] = 5, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3371), 1, anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 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_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, @@ -199233,154 +209464,113 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(217), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [180539] = 5, - ACTIONS(3351), 1, - anon_sym_in, - ACTIONS(3373), 1, + [189756] = 21, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + ACTIONS(3584), 1, anon_sym_not, + ACTIONS(3588), 1, + anon_sym_is, + STATE(2452), 1, + aux_sym_comparison_operator_repeat1, + STATE(2577), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 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, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3582), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3586), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(217), 29, + ACTIONS(2310), 20, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_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, - [180609] = 8, - ACTIONS(3375), 1, - sym_isMutableFlag, - ACTIONS(3377), 1, - anon_sym_QMARK_COLON, - STATE(2705), 1, - aux_sym_comparison_operator_repeat1, - STATE(2847), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [189856] = 4, + ACTIONS(3492), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - 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(1588), 26, + ACTIONS(2554), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -199401,51 +209591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [180684] = 8, - ACTIONS(3379), 1, - sym_isMutableFlag, - ACTIONS(3381), 1, - anon_sym_QMARK_COLON, - STATE(2557), 1, - sym_dict_expr, - STATE(3327), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1588), 24, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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, - ACTIONS(1586), 27, + ACTIONS(2556), 28, + 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, @@ -199453,11 +209605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -199468,21 +209620,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [180759] = 8, - ACTIONS(3379), 1, - sym_isMutableFlag, - ACTIONS(3381), 1, - anon_sym_QMARK_COLON, - STATE(2557), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [189922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 24, + ACTIONS(2774), 26, + sym__newline, + sym__indent, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -199490,8 +209634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -199507,9 +209651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 27, + ACTIONS(2772), 29, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, anon_sym_else, anon_sym_EQ, @@ -199520,11 +209666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -199535,26 +209681,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [180834] = 8, - ACTIONS(3375), 1, - sym_isMutableFlag, - ACTIONS(3377), 1, - anon_sym_QMARK_COLON, - STATE(2847), 1, - sym_dict_expr, - STATE(3294), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [189986] = 5, + ACTIONS(3520), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 25, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, + anon_sym_assert, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -199562,6 +209702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -199575,13 +209717,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 26, + ACTIONS(2402), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -199602,97 +209744,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [180909] = 8, - ACTIONS(3375), 1, - sym_isMutableFlag, - ACTIONS(3377), 1, - anon_sym_QMARK_COLON, - STATE(2847), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, + [190054] = 22, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3552), 1, + anon_sym_STAR_STAR, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3556), 1, + anon_sym_PLUS, + ACTIONS(3558), 1, + anon_sym_DASH, + ACTIONS(3562), 1, + anon_sym_PIPE, + ACTIONS(3564), 1, + anon_sym_AMP, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3592), 1, + anon_sym_not, + ACTIONS(3596), 1, + anon_sym_is, + STATE(2437), 1, aux_sym_comparison_operator_repeat1, + STATE(2626), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 25, + ACTIONS(3550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3560), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3568), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3590), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3594), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - 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(1588), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [190156] = 10, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3449), 1, anon_sym_QMARK_LBRACK, - sym_float, - [180984] = 8, - ACTIONS(3379), 1, - sym_isMutableFlag, - ACTIONS(3381), 1, - anon_sym_QMARK_COLON, - STATE(2557), 1, - sym_dict_expr, - STATE(2701), 1, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 24, + ACTIONS(1940), 21, + sym__newline, + sym__indent, sym_string_start, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - 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, @@ -199706,14 +209863,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(1586), 27, + ACTIONS(1942), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -199721,11 +209877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -199736,16 +209892,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181059] = 5, - ACTIONS(253), 1, - anon_sym_if, + [190234] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 26, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -199772,11 +209925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 26, + ACTIONS(197), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -199786,6 +209940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -199799,110 +209954,124 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181127] = 14, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_STAR_STAR, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3393), 1, + [190300] = 9, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3522), 1, anon_sym_PLUS, - ACTIONS(3395), 1, - anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3598), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3397), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 13, sym_string_start, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 24, + anon_sym_QMARK_LBRACK, + ACTIONS(2242), 18, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, 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_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, - [181213] = 15, - ACTIONS(3383), 1, + [190376] = 22, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3393), 1, + ACTIONS(3556), 1, anon_sym_PLUS, - ACTIONS(3395), 1, + ACTIONS(3558), 1, anon_sym_DASH, - ACTIONS(3399), 1, + ACTIONS(3562), 1, + anon_sym_PIPE, + ACTIONS(3564), 1, + anon_sym_AMP, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - STATE(2429), 1, + ACTIONS(3592), 1, + anon_sym_not, + ACTIONS(3596), 1, + anon_sym_is, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(3306), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 16, + ACTIONS(3590), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3594), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -199910,16 +210079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - 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(2518), 24, + ACTIONS(2310), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -199927,76 +210089,104 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [181301] = 16, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_STAR_STAR, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3393), 1, + [190478] = 7, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3522), 1, anon_sym_PLUS, - ACTIONS(3395), 1, - anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3598), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + 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_not, + anon_sym_or, anon_sym_SLASH, - ACTIONS(3397), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2542), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, + 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_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, - ACTIONS(2518), 24, + [190550] = 10, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(506), 1, anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(3522), 1, + anon_sym_PLUS, + ACTIONS(3598), 1, + anon_sym_and, + ACTIONS(3600), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 22, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -200006,9 +210196,9 @@ 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, @@ -200018,49 +210208,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181391] = 8, - ACTIONS(3405), 1, - sym_isMutableFlag, - ACTIONS(3407), 1, - anon_sym_QMARK_COLON, - STATE(3065), 1, - sym_dict_expr, - STATE(3350), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1588), 2, + ACTIONS(2057), 25, sym_string_start, - anon_sym_LF, - ACTIONS(1586), 48, - 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -200069,127 +210228,89 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [181465] = 22, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_STAR_STAR, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3393), 1, - anon_sym_PLUS, - ACTIONS(3395), 1, - anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_not, - ACTIONS(3413), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, - anon_sym_AMP, - ACTIONS(3419), 1, - anon_sym_is, - STATE(2429), 1, - sym_argument_list, - STATE(3258), 1, - aux_sym_comparison_operator_repeat1, + [190628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(2817), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3409), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3417), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 19, + ACTIONS(2819), 29, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, 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_mixin, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [181567] = 10, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_STAR_STAR, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [190692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, + ACTIONS(2813), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -200203,12 +210324,14 @@ 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(2574), 27, + ACTIONS(2815), 29, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -200218,10 +210341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -200232,28 +210356,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181645] = 6, - ACTIONS(3421), 1, - anon_sym_DOT, - ACTIONS(3424), 1, - anon_sym_QMARK_DOT, + [190756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 24, + ACTIONS(2809), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -200268,8 +210387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2540), 27, + ACTIONS(2811), 29, + anon_sym_import, + anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, anon_sym_else, anon_sym_EQ, @@ -200280,12 +210402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -200296,123 +210417,112 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181715] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3383), 1, + [190820] = 10, + ACTIONS(3433), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3435), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, - ACTIONS(3393), 1, - anon_sym_PLUS, - ACTIONS(3395), 1, - anon_sym_DASH, - ACTIONS(3399), 1, + ACTIONS(3449), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - ACTIONS(3413), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, - anon_sym_AMP, - STATE(2429), 1, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + STATE(2577), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(1940), 21, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + sym_float, + ACTIONS(1942), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 9, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 14, - anon_sym_for, - 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_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [181819] = 17, - ACTIONS(3383), 1, + [190898] = 18, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3393), 1, + ACTIONS(3556), 1, anon_sym_PLUS, - ACTIONS(3395), 1, + ACTIONS(3558), 1, anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - ACTIONS(3415), 1, + ACTIONS(3562), 1, + anon_sym_PIPE, + ACTIONS(3564), 1, anon_sym_AMP, - STATE(2429), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(2458), 13, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -200420,14 +210530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - 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(2518), 24, + ACTIONS(2386), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -200452,31 +210561,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181911] = 12, - ACTIONS(3383), 1, + [190992] = 14, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3399), 1, + ACTIONS(3556), 1, + anon_sym_PLUS, + ACTIONS(3558), 1, + anon_sym_DASH, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - STATE(2429), 1, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + ACTIONS(1940), 18, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -200484,7 +210597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -200496,7 +210608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 25, + ACTIONS(1942), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -200512,7 +210624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -200522,25 +210633,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [181993] = 10, - ACTIONS(3383), 1, + [191078] = 15, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3399), 1, + ACTIONS(3556), 1, + anon_sym_PLUS, + ACTIONS(3558), 1, + anon_sym_DASH, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - STATE(2429), 1, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(3550), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3560), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3568), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 16, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -200548,21 +210672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, 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, sym_float, - ACTIONS(2518), 27, + ACTIONS(1942), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -200575,12 +210694,9 @@ 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_PLUS, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -200590,45 +210706,47 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [182071] = 15, - ACTIONS(3427), 1, + [191166] = 16, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3429), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3433), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3435), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3441), 1, + ACTIONS(3556), 1, + anon_sym_PLUS, + ACTIONS(3558), 1, + anon_sym_DASH, + ACTIONS(3566), 1, anon_sym_CARET, - ACTIONS(3445), 1, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - STATE(2499), 1, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 14, - sym__newline, - sym__indent, + ACTIONS(1940), 15, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_PIPE, anon_sym_AMP, anon_sym_TILDE, @@ -200637,20 +210755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 25, - anon_sym_import, + ACTIONS(1942), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -200663,63 +210780,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [182159] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3383), 1, + [191256] = 17, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3393), 1, + ACTIONS(3556), 1, anon_sym_PLUS, - ACTIONS(3395), 1, + ACTIONS(3558), 1, anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - ACTIONS(3413), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, + ACTIONS(3564), 1, anon_sym_AMP, - STATE(2429), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 9, + ACTIONS(1940), 14, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -200727,83 +210823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 14, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, - 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, - [182263] = 14, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - 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(2518), 25, - anon_sym_import, + ACTIONS(1942), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -200816,40 +210855,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [182349] = 13, - ACTIONS(3427), 1, + [191348] = 12, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3429), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3433), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3435), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3445), 1, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - STATE(2499), 1, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, - sym__newline, - sym__indent, + ACTIONS(1940), 19, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -200861,23 +210899,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 25, - anon_sym_import, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -200887,205 +210925,144 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [182433] = 22, - ACTIONS(2495), 1, + [191430] = 23, + ACTIONS(2316), 1, anon_sym_not, - ACTIONS(2499), 1, + ACTIONS(2332), 1, anon_sym_is, - ACTIONS(3427), 1, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3429), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3433), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3435), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_CARET, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3447), 1, + ACTIONS(3556), 1, + anon_sym_PLUS, + ACTIONS(3558), 1, + anon_sym_DASH, + ACTIONS(3562), 1, anon_sym_PIPE, - ACTIONS(3449), 1, + ACTIONS(3564), 1, anon_sym_AMP, - STATE(2499), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2503), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 15, - 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [182535] = 4, - ACTIONS(3451), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2528), 25, - sym__newline, - sym__indent, + ACTIONS(2394), 9, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + anon_sym_RBRACE, 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_PLUS_EQ, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 29, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, + ACTIONS(2396), 14, + anon_sym_for, 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_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, - [182601] = 23, - ACTIONS(2495), 1, + [191534] = 23, + ACTIONS(2316), 1, anon_sym_not, - ACTIONS(2499), 1, + ACTIONS(2332), 1, anon_sym_is, - ACTIONS(3383), 1, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3393), 1, + ACTIONS(3556), 1, anon_sym_PLUS, - ACTIONS(3395), 1, + ACTIONS(3558), 1, anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - ACTIONS(3413), 1, + ACTIONS(3562), 1, anon_sym_PIPE, - ACTIONS(3415), 1, + ACTIONS(3564), 1, anon_sym_AMP, - STATE(2429), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + ACTIONS(3550), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3397), 2, + ACTIONS(3560), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + ACTIONS(3568), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2524), 9, + ACTIONS(2382), 9, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -201095,7 +211072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_TILDE, sym_float, - ACTIONS(2522), 14, + ACTIONS(2384), 14, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -201110,25 +211087,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [182705] = 4, + [191638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2283), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2572), 26, + ACTIONS(2797), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -201144,11 +211118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2570), 27, + ACTIONS(2799), 29, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -201158,10 +211133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -201172,49 +211148,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [182771] = 8, - ACTIONS(3405), 1, - sym_isMutableFlag, - ACTIONS(3407), 1, - anon_sym_QMARK_COLON, - STATE(2805), 1, - aux_sym_comparison_operator_repeat1, - STATE(3065), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [191702] = 9, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3524), 1, + anon_sym_and, + ACTIONS(3528), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 2, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, + sym__newline, + sym__indent, sym_string_start, - anon_sym_LF, - ACTIONS(1586), 48, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -201222,120 +211190,57 @@ 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [182845] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_CARET, - ACTIONS(3445), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3449), 1, - anon_sym_AMP, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2242), 19, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 15, - 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_mixin, + anon_sym_not, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [182947] = 4, - STATE(2320), 1, - aux_sym_union_type_repeat1, + [191778] = 10, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3552), 1, + anon_sym_STAR_STAR, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 26, - sym__newline, - sym__indent, + ACTIONS(1940), 21, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -201349,14 +211254,12 @@ 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(2566), 28, - anon_sym_import, + ACTIONS(1942), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -201366,10 +211269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -201380,30 +211283,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183013] = 10, - ACTIONS(386), 1, + [191856] = 7, + ACTIONS(3520), 1, anon_sym_if, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(3453), 1, + ACTIONS(3524), 1, anon_sym_and, - ACTIONS(3455), 1, - anon_sym_or, - ACTIONS(3457), 1, + ACTIONS(3528), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2355), 22, + ACTIONS(2540), 25, + anon_sym_import, + anon_sym_DOT, anon_sym_as, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_assert, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -201411,7 +211308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -201422,17 +211322,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2357), 25, + ACTIONS(2542), 25, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -201448,25 +211348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [183091] = 10, - ACTIONS(3383), 1, + [191928] = 10, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + ACTIONS(3552), 1, anon_sym_STAR_STAR, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3399), 1, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - STATE(2429), 1, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(1940), 21, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -201488,7 +211388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 27, + ACTIONS(1942), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -201516,28 +211416,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183169] = 5, - ACTIONS(386), 1, - anon_sym_if, + [192006] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 26, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -201552,9 +211448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 26, + ACTIONS(197), 29, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -201569,6 +211466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -201579,49 +211478,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183237] = 6, - ACTIONS(3459), 1, - anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_QMARK_DOT, - STATE(2273), 1, + [192072] = 8, + ACTIONS(3530), 1, + sym_isMutableFlag, + ACTIONS(3532), 1, + anon_sym_QMARK_COLON, + STATE(2999), 1, + aux_sym_comparison_operator_repeat1, + STATE(3112), 1, + sym_dict_expr, + STATE(4447), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 25, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2550), 27, - anon_sym_import, + ACTIONS(1536), 25, + anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -201629,7 +211505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -201643,30 +211518,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183307] = 10, - ACTIONS(253), 1, - anon_sym_if, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, + ACTIONS(1538), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - ACTIONS(3465), 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, + [192146] = 7, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3524), 1, anon_sym_and, - ACTIONS(3467), 1, - anon_sym_or, - ACTIONS(3469), 1, + ACTIONS(3528), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2355), 23, + ACTIONS(2242), 25, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -201675,7 +211570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -201686,7 +211583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2357), 24, + ACTIONS(2244), 25, sym__newline, sym__indent, sym_string_start, @@ -201695,6 +211592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -201711,55 +211609,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [183385] = 16, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_CARET, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3449), 1, - anon_sym_AMP, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [192218] = 4, + STATE(2318), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(2758), 26, sym__newline, sym__indent, sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, - ACTIONS(2518), 25, + ACTIONS(2760), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -201772,10 +211655,13 @@ 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -201785,31 +211671,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183475] = 7, - ACTIONS(253), 1, - anon_sym_if, - ACTIONS(3465), 1, - anon_sym_and, - ACTIONS(3469), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [192284] = 8, + ACTIONS(3578), 1, + sym_isMutableFlag, + ACTIONS(3580), 1, + anon_sym_QMARK_COLON, + STATE(3175), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, - sym__newline, - sym__indent, + ACTIONS(1538), 2, sym_string_start, - anon_sym_COLON, + anon_sym_LF, + ACTIONS(1536), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -201818,71 +211722,44 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(2449), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [183547] = 12, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, + [192358] = 6, + ACTIONS(3602), 1, + anon_sym_DOT, + ACTIONS(3605), 1, anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + STATE(2398), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3439), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, - sym__newline, - sym__indent, + ACTIONS(2007), 24, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -201893,24 +211770,28 @@ 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(2518), 25, - anon_sym_import, - anon_sym_DOT, + ACTIONS(2009), 28, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_type, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -201920,53 +211801,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183629] = 10, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, + [192428] = 9, + ACTIONS(2244), 1, anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3524), 1, + anon_sym_and, + ACTIONS(3528), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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(2518), 27, - anon_sym_import, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, + anon_sym_or, + ACTIONS(2276), 22, + anon_sym_import, anon_sym_assert, - anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -201975,9 +211831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -201988,13 +211843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183707] = 4, - ACTIONS(3471), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 25, + ACTIONS(2278), 24, sym__newline, sym__indent, sym_string_start, @@ -202003,9 +211852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -202020,63 +211868,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 29, - anon_sym_import, + [192504] = 8, + ACTIONS(3578), 1, + sym_isMutableFlag, + ACTIONS(3580), 1, + anon_sym_QMARK_COLON, + STATE(3175), 1, + sym_dict_expr, + STATE(3404), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1538), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(1536), 48, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, + 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_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [183773] = 10, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 21, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -202085,18 +211919,44 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(2518), 27, - anon_sym_import, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [192578] = 9, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3522), 1, + anon_sym_PLUS, + ACTIONS(3598), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_or, + ACTIONS(2276), 21, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -202104,10 +211964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -202118,20 +211975,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183851] = 7, - ACTIONS(386), 1, + ACTIONS(2278), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + 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, + [192654] = 7, + ACTIONS(371), 1, anon_sym_if, - ACTIONS(3453), 1, - anon_sym_and, - ACTIONS(3457), 1, + ACTIONS(3522), 1, anon_sym_PLUS, + ACTIONS(3598), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2479), 24, + ACTIONS(2242), 24, anon_sym_DOT, anon_sym_as, anon_sym_for, @@ -202156,7 +212039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 26, + ACTIONS(2244), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -202183,13 +212066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [183923] = 4, - STATE(2269), 1, + [192726] = 5, + ACTIONS(3608), 1, + anon_sym_EQ, + STATE(2318), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 26, + ACTIONS(2554), 26, sym__newline, sym__indent, sym_string_start, @@ -202216,14 +212101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 28, + ACTIONS(2556), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -202232,6 +212115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -202245,144 +212129,172 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [183989] = 6, - ACTIONS(3473), 1, - anon_sym_DOT, - ACTIONS(3476), 1, + [192794] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2283), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2540), 26, + ACTIONS(2310), 5, + anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 15, + anon_sym_import, + anon_sym_assert, 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_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_type, + anon_sym_mixin, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [184059] = 4, - STATE(2269), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [192896] = 21, + ACTIONS(3433), 1, anon_sym_LPAREN, + ACTIONS(3435), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3441), 1, anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3512), 1, + anon_sym_PIPE, + ACTIONS(3514), 1, + anon_sym_AMP, + ACTIONS(3516), 1, + anon_sym_CARET, + ACTIONS(3584), 1, + anon_sym_not, + ACTIONS(3588), 1, + anon_sym_is, + STATE(2577), 1, + sym_argument_list, + STATE(3312), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3504), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3508), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3518), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3582), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3586), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 8, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(2483), 28, + ACTIONS(2310), 20, 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_not, + anon_sym_mixin, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [184125] = 6, - ACTIONS(3479), 1, - anon_sym_DOT, - ACTIONS(3482), 1, - anon_sym_QMARK_DOT, + [192996] = 4, + STATE(2576), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2285), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2545), 25, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -202391,6 +212303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -202408,8 +212321,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2540), 26, + ACTIONS(197), 28, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -202422,6 +212336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -202435,15 +212350,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184195] = 5, - ACTIONS(3485), 1, - anon_sym_EQ, - STATE(2269), 1, - aux_sym_union_type_repeat1, + [193062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 26, + ACTIONS(2821), 26, sym__newline, sym__indent, sym_string_start, @@ -202470,13 +212381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 27, + ACTIONS(2823), 29, 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, @@ -202485,6 +212397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -202498,93 +212411,74 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184263] = 21, - ACTIONS(3427), 1, + [193126] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3429), 1, anon_sym_LBRACK, - ACTIONS(3433), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_CARET, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3449), 1, - anon_sym_AMP, - ACTIONS(3489), 1, - anon_sym_not, - ACTIONS(3493), 1, - anon_sym_is, - STATE(2348), 1, - aux_sym_comparison_operator_repeat1, - STATE(2499), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3437), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3439), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3487), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3491), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 20, + ACTIONS(2793), 29, 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_mixin, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [184363] = 4, + [193190] = 4, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2285), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2572), 26, + ACTIONS(2768), 26, sym__newline, sym__indent, sym_string_start, @@ -202611,7 +212505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2570), 27, + ACTIONS(2770), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -202626,6 +212520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -202639,16 +212534,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184429] = 5, - ACTIONS(253), 1, + [193256] = 6, + ACTIONS(3520), 1, anon_sym_if, + ACTIONS(3528), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 26, + ACTIONS(2244), 25, sym__newline, sym__indent, sym_string_start, @@ -202658,7 +212555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -202675,12 +212571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 26, + ACTIONS(2242), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -202689,6 +212584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -202702,27 +212598,54 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184497] = 5, - ACTIONS(386), 1, + [193326] = 5, + ACTIONS(3520), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 26, + ACTIONS(2236), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(2238), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -202738,12 +212661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 26, + [193394] = 5, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_assert, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -202751,10 +212682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -202765,16 +212697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184565] = 5, - ACTIONS(253), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 26, + ACTIONS(2254), 26, sym__newline, sym__indent, sym_string_start, @@ -202801,12 +212724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 26, + [193462] = 5, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -202815,6 +212746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -202828,105 +212760,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184633] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3427), 1, + ACTIONS(2254), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3429), 1, anon_sym_LBRACK, - ACTIONS(3433), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_CARET, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3449), 1, - anon_sym_AMP, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3437), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3439), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2522), 15, - 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [184735] = 4, + [193530] = 4, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2572), 25, + ACTIONS(2768), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -202941,12 +212820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2570), 28, + ACTIONS(2770), 28, + 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, @@ -202954,12 +212834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -202970,16 +212849,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184801] = 5, - ACTIONS(253), 1, - anon_sym_if, + [193596] = 4, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, + ACTIONS(2768), 26, sym__newline, sym__indent, sym_string_start, @@ -203006,11 +212882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 26, + ACTIONS(2770), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -203020,6 +212897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -203033,13 +212911,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184869] = 4, - ACTIONS(3495), 1, - anon_sym_DASH_GT, + [193662] = 6, + ACTIONS(3520), 1, + anon_sym_if, + ACTIONS(3528), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 25, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 25, sym__newline, sym__indent, sym_string_start, @@ -203049,8 +212932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -203065,14 +212948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 29, + ACTIONS(2256), 26, 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, @@ -203081,10 +212961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -203095,25 +212975,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [184935] = 7, - ACTIONS(386), 1, - anon_sym_if, - ACTIONS(3453), 1, - anon_sym_and, - ACTIONS(3457), 1, - anon_sym_PLUS, + [193732] = 10, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_LBRACK, + ACTIONS(3441), 1, + anon_sym_QMARK_DOT, + ACTIONS(3449), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + STATE(2577), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 24, + ACTIONS(2069), 21, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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(2067), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_assert, + anon_sym_if, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -203121,7 +213028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -203133,43 +213043,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_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, - [185007] = 5, - ACTIONS(253), 1, - anon_sym_if, + [193810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, + ACTIONS(3163), 26, sym__newline, sym__indent, sym_string_start, @@ -203196,11 +213074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 26, + ACTIONS(3165), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -203210,6 +213089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -203223,13 +213103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185075] = 4, - STATE(2269), 1, - aux_sym_union_type_repeat1, + [193873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 26, + ACTIONS(3045), 26, sym__newline, sym__indent, sym_string_start, @@ -203256,14 +213134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2536), 28, + ACTIONS(3043), 28, 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, @@ -203272,6 +213149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -203285,29 +213163,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185141] = 9, - ACTIONS(386), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3453), 1, - anon_sym_and, - ACTIONS(3457), 1, - anon_sym_PLUS, + [193936] = 8, + ACTIONS(3610), 1, + sym_isMutableFlag, + ACTIONS(3612), 1, + anon_sym_QMARK_COLON, + STATE(3241), 1, + sym_dict_expr, + STATE(3436), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(1536), 24, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 21, - anon_sym_for, + anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -203316,6 +213190,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, @@ -203326,17 +213202,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2469), 25, + ACTIONS(1538), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, 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, @@ -203352,15 +213228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [185217] = 4, - STATE(2269), 1, - aux_sym_union_type_repeat1, + [194009] = 5, + ACTIONS(458), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 26, - sym__newline, - sym__indent, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -203368,8 +213245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -203385,12 +213262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 28, - anon_sym_import, + ACTIONS(129), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -203400,10 +213275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -203414,28 +213290,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185283] = 6, - ACTIONS(253), 1, - anon_sym_if, - ACTIONS(3469), 1, - anon_sym_PLUS, + [194076] = 4, + STATE(2567), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 25, - sym__newline, - sym__indent, + ACTIONS(2192), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -203451,12 +213323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 26, - anon_sym_import, + ACTIONS(2194), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -203464,10 +213337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -203478,49 +213351,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185353] = 8, - ACTIONS(3405), 1, - sym_isMutableFlag, - ACTIONS(3407), 1, - anon_sym_QMARK_COLON, - STATE(3065), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [194141] = 5, + ACTIONS(458), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 2, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 24, sym_string_start, - anon_sym_LF, - ACTIONS(1586), 48, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -203529,33 +213379,50 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + ACTIONS(2236), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [185427] = 5, - ACTIONS(253), 1, + [194208] = 5, + ACTIONS(458), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 26, - sym__newline, - sym__indent, + ACTIONS(2254), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -203563,8 +213430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -203580,12 +213447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2453), 26, - anon_sym_import, + ACTIONS(2252), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -203593,10 +213460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -203607,28 +213475,57 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185495] = 6, - ACTIONS(253), 1, + [194275] = 9, + ACTIONS(458), 1, anon_sym_if, - ACTIONS(3469), 1, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3614), 1, + anon_sym_and, + ACTIONS(3616), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, - sym__newline, - sym__indent, + ACTIONS(2242), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2276), 22, + anon_sym_for, + 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_not, + anon_sym_then, + 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(2278), 23, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -203644,47 +213541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [185565] = 6, - ACTIONS(253), 1, + [194350] = 5, + ACTIONS(458), 1, anon_sym_if, - ACTIONS(3469), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 25, - sym__newline, - sym__indent, + ACTIONS(2402), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -203693,6 +213559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -203708,12 +213575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2445), 26, - anon_sym_import, + ACTIONS(2400), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -203721,10 +213588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -203735,41 +213603,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185635] = 9, - ACTIONS(253), 1, + [194417] = 7, + ACTIONS(458), 1, anon_sym_if, - ACTIONS(3465), 1, + ACTIONS(3614), 1, anon_sym_and, - ACTIONS(3469), 1, + ACTIONS(3616), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, - sym__newline, - sym__indent, + ACTIONS(2244), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -203777,49 +213634,57 @@ 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(2449), 19, - anon_sym_import, + sym_float, + ACTIONS(2242), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_for, 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_type, + anon_sym_STAR, anon_sym_not, anon_sym_or, + anon_sym_then, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [185711] = 4, - STATE(2312), 1, - aux_sym_dotted_name_repeat1, + [194488] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 26, - sym__newline, - sym__indent, + ACTIONS(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -203835,12 +213700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2475), 28, - anon_sym_import, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -203850,10 +213714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -203864,24 +213728,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [185777] = 7, - ACTIONS(253), 1, - anon_sym_if, - ACTIONS(3465), 1, - anon_sym_and, - ACTIONS(3469), 1, - anon_sym_PLUS, + [194553] = 8, + ACTIONS(3530), 1, + sym_isMutableFlag, + ACTIONS(3532), 1, + anon_sym_QMARK_COLON, + STATE(3112), 1, + sym_dict_expr, + STATE(3435), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 25, - anon_sym_import, + ACTIONS(1536), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -203890,8 +213754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -203903,16 +213767,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 25, + ACTIONS(1538), 25, sym__newline, - sym__indent, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -203929,42 +213793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [185849] = 9, - ACTIONS(386), 1, - anon_sym_if, - ACTIONS(3453), 1, - anon_sym_and, - ACTIONS(3457), 1, - anon_sym_PLUS, + [194626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 13, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -203972,44 +213816,17 @@ 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(2449), 18, + sym_float, + ACTIONS(197), 29, anon_sym_DOT, anon_sym_as, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [185925] = 6, - ACTIONS(386), 1, anon_sym_if, - ACTIONS(3457), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 25, - anon_sym_DOT, - anon_sym_as, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -204023,6 +213840,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204033,19 +213853,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2443), 26, + [194689] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204060,23 +213883,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [185995] = 6, - ACTIONS(386), 1, + ACTIONS(2310), 29, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(3457), 1, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, + anon_sym_then, + 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, + [194752] = 8, + ACTIONS(3610), 1, + sym_isMutableFlag, + ACTIONS(3612), 1, + anon_sym_QMARK_COLON, + STATE(3241), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 25, + ACTIONS(1536), 24, anon_sym_DOT, anon_sym_as, - anon_sym_for, + anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -204097,18 +213952,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 26, + ACTIONS(1538), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, 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, @@ -204124,208 +213978,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [186065] = 4, - STATE(2273), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2473), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [194825] = 22, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3626), 1, anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3630), 1, + anon_sym_not, + ACTIONS(3632), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(3634), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3638), 1, anon_sym_PIPE, + ACTIONS(3640), 1, anon_sym_AMP, + ACTIONS(3642), 1, anon_sym_CARET, + ACTIONS(3648), 1, + anon_sym_is, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(3314), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3622), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 7, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, sym_float, - ACTIONS(2471), 28, - anon_sym_import, + ACTIONS(2310), 20, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [186131] = 21, - ACTIONS(3427), 1, + [194926] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3429), 1, anon_sym_LBRACK, - ACTIONS(3433), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_CARET, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3449), 1, - anon_sym_AMP, - ACTIONS(3489), 1, - anon_sym_not, - ACTIONS(3493), 1, - anon_sym_is, - STATE(2499), 1, - sym_argument_list, - STATE(3262), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3431), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3439), 2, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3443), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3487), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3491), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 20, - anon_sym_import, + ACTIONS(197), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_type, + anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + 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, - [186231] = 22, - ACTIONS(3383), 1, + [194989] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3385), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3391), 1, anon_sym_QMARK_DOT, - ACTIONS(3393), 1, - anon_sym_PLUS, - ACTIONS(3395), 1, - anon_sym_DASH, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3403), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_not, - ACTIONS(3413), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, - anon_sym_AMP, - ACTIONS(3419), 1, - anon_sym_is, - STATE(2387), 1, - aux_sym_comparison_operator_repeat1, - STATE(2429), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3387), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3397), 2, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3401), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3409), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3417), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 9, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 19, + ACTIONS(3289), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -204333,28 +214155,35 @@ static const uint16_t ts_small_parse_table[] = { 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + 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, - [186333] = 5, - ACTIONS(386), 1, - anon_sym_if, + [195052] = 4, + STATE(2627), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 26, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -204381,9 +214210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2453), 26, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -204408,20 +214238,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186401] = 6, - ACTIONS(386), 1, - anon_sym_if, - ACTIONS(3457), 1, - anon_sym_PLUS, + [195117] = 4, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 25, + ACTIONS(2768), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + 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_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, + ACTIONS(2770), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -204435,6 +214288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204445,19 +214299,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2455), 26, + [195182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204472,28 +214329,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [186471] = 5, - ACTIONS(386), 1, + ACTIONS(2793), 29, + anon_sym_DOT, + anon_sym_as, anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + 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, + [195245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, + ACTIONS(3035), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204508,9 +214389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 26, + ACTIONS(3033), 29, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -204525,6 +214407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204535,33 +214419,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186539] = 10, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3433), 1, - anon_sym_STAR_STAR, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [195308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, - sym__newline, - sym__indent, + ACTIONS(3039), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204574,14 +214447,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(2574), 27, - anon_sym_import, + ACTIONS(3037), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -204589,10 +214463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204603,29 +214479,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186617] = 9, - ACTIONS(253), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3465), 1, - anon_sym_and, - ACTIONS(3469), 1, - anon_sym_PLUS, + [195371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(2797), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + 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_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2799), 29, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 22, - anon_sym_import, - anon_sym_assert, + anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -204633,8 +214523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204645,17 +214539,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2469), 24, - sym__newline, - sym__indent, + [195434] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204670,29 +214569,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [186693] = 5, - ACTIONS(3497), 1, - anon_sym_PIPE, - STATE(2320), 1, - aux_sym_union_type_repeat1, + ACTIONS(3043), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + 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, + [195497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 25, - sym__newline, - sym__indent, + ACTIONS(2809), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -204704,12 +214629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 28, - anon_sym_import, + ACTIONS(2811), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -204719,10 +214643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204733,28 +214659,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186761] = 5, - ACTIONS(386), 1, - anon_sym_if, + [195560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 26, + ACTIONS(2813), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204769,9 +214689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 26, + ACTIONS(2815), 29, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -204786,6 +214707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204796,28 +214719,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186829] = 5, - ACTIONS(386), 1, - anon_sym_if, + [195623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 26, + ACTIONS(2817), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204832,9 +214749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 26, + ACTIONS(2819), 29, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -204849,6 +214767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204859,24 +214779,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186897] = 4, - STATE(2324), 1, + [195686] = 4, + STATE(2564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(2768), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -204892,13 +214812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + ACTIONS(2770), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -204906,10 +214825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -204920,26 +214840,45 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [186962] = 8, - ACTIONS(3503), 1, - anon_sym_not, - ACTIONS(3509), 1, - anon_sym_is, - STATE(2324), 1, + [195751] = 10, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3500), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3506), 4, + ACTIONS(2069), 19, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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, - ACTIONS(2861), 22, + sym_float, + ACTIONS(2067), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -204947,34 +214886,43 @@ static const uint16_t ts_small_parse_table[] = { 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_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, 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(2863), 22, + [195828] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -204983,27 +214931,19 @@ 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, - [187035] = 8, - ACTIONS(3512), 1, - sym_isMutableFlag, - ACTIONS(3514), 1, - anon_sym_QMARK_COLON, - STATE(3229), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 24, + ACTIONS(3053), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -205014,6 +214954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -205024,11 +214967,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 25, + [195891] = 4, + STATE(2564), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -205050,13 +215000,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [187108] = 4, - STATE(4733), 1, + ACTIONS(2770), 27, + 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_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [195956] = 4, + STATE(2484), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2768), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -205083,7 +215061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2770), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -205111,24 +215089,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187173] = 4, - STATE(4733), 1, + [196021] = 4, + STATE(2564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 25, + ACTIONS(2768), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -205143,12 +215122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 28, + ACTIONS(2770), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -205156,12 +215135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -205172,13 +215150,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187238] = 4, - STATE(3263), 1, + [196086] = 4, + STATE(2564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2768), 26, sym__newline, sym__indent, sym_string_start, @@ -205205,13 +215183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2770), 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, anon_sym_all, @@ -205220,6 +215197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -205233,74 +215211,92 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187303] = 4, - STATE(2353), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [196151] = 22, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3626), 1, anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3630), 1, + anon_sym_not, + ACTIONS(3632), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(3634), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3638), 1, anon_sym_PIPE, + ACTIONS(3640), 1, anon_sym_AMP, + ACTIONS(3642), 1, anon_sym_CARET, + ACTIONS(3648), 1, + anon_sym_is, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(2665), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3622), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 7, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, sym_float, - ACTIONS(217), 27, - anon_sym_import, + ACTIONS(2310), 20, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [187368] = 4, - STATE(2403), 1, + [196252] = 4, + STATE(2567), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 26, + ACTIONS(2220), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -205327,7 +215323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 27, + ACTIONS(2222), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -205355,22 +215351,34 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187433] = 3, + [196317] = 10, + ACTIONS(458), 1, + anon_sym_if, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(3614), 1, + anon_sym_and, + ACTIONS(3616), 1, + anon_sym_PLUS, + ACTIONS(3652), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 26, - sym__newline, - sym__indent, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 23, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -205386,12 +215394,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2881), 28, - anon_sym_import, - anon_sym_DOT, + ACTIONS(2059), 23, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -205401,10 +215406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -205415,11 +215418,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187496] = 3, + [196394] = 4, + STATE(2451), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 26, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -205446,14 +215451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2885), 28, + ACTIONS(197), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -205462,6 +215465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -205475,45 +215479,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187559] = 3, + [196459] = 8, + ACTIONS(3610), 1, + sym_isMutableFlag, + ACTIONS(3612), 1, + anon_sym_QMARK_COLON, + STATE(3068), 1, + aux_sym_comparison_operator_repeat1, + STATE(3241), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2896), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - ACTIONS(2894), 28, - anon_sym_import, + ACTIONS(1536), 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, @@ -205521,7 +215505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -205535,16 +215518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187622] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2952), 26, - sym__newline, - sym__indent, + ACTIONS(1538), 25, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -205566,51 +215544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2950), 28, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [187685] = 3, + [196532] = 4, + STATE(2450), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2900), 26, - sym__newline, - sym__indent, + ACTIONS(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -205626,12 +215577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2898), 28, - anon_sym_import, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -205641,10 +215591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -205655,49 +215605,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187748] = 8, - ACTIONS(3516), 1, - sym_isMutableFlag, - ACTIONS(3518), 1, - anon_sym_QMARK_COLON, - STATE(3030), 1, - aux_sym_comparison_operator_repeat1, - STATE(3180), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [196597] = 4, + ACTIONS(3057), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 24, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - 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(1588), 25, + ACTIONS(201), 26, sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -205720,25 +215638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [187821] = 8, - ACTIONS(3512), 1, - sym_isMutableFlag, - ACTIONS(3514), 1, - anon_sym_QMARK_COLON, - STATE(3045), 1, - aux_sym_comparison_operator_repeat1, - STATE(3229), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 24, + ACTIONS(197), 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, anon_sym_all, @@ -205746,6 +215651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -205757,41 +215664,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - sym_none, - sym_undefined, - ACTIONS(1588), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [187894] = 4, - STATE(2388), 1, + sym_none, + sym_undefined, + [196662] = 4, + STATE(2484), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2768), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -205818,7 +215699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2770), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -205846,11 +215727,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [187959] = 3, + [196727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 26, + ACTIONS(3225), 26, sym__newline, sym__indent, sym_string_start, @@ -205877,14 +215758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 28, + ACTIONS(3227), 28, 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, @@ -205893,6 +215773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -205906,25 +215787,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188022] = 4, - STATE(2403), 1, - aux_sym_union_type_repeat1, + [196790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 26, + ACTIONS(3075), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -205939,7 +215817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2536), 27, + ACTIONS(3073), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -205957,6 +215835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -205967,31 +215847,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188087] = 8, - ACTIONS(3520), 1, - sym_isMutableFlag, - ACTIONS(3522), 1, - anon_sym_QMARK_COLON, - STATE(2557), 1, - sym_dict_expr, - STATE(2974), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [196853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 24, + ACTIONS(3249), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -206006,9 +215878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 25, + ACTIONS(3251), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, anon_sym_else, anon_sym_lambda, @@ -206018,10 +215892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206032,23 +215907,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188160] = 3, + [196916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 26, - sym__newline, - sym__indent, + ACTIONS(3079), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206063,12 +215937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2922), 28, - anon_sym_import, + ACTIONS(3077), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -206078,10 +215951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206092,23 +215967,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188223] = 3, + [196979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2936), 26, - sym__newline, - sym__indent, + ACTIONS(2821), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206123,12 +215997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2934), 28, - anon_sym_import, + ACTIONS(2823), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -206138,49 +216011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [188286] = 8, - ACTIONS(3512), 1, - sym_isMutableFlag, - ACTIONS(3514), 1, - anon_sym_QMARK_COLON, - STATE(3229), 1, - sym_dict_expr, - STATE(3386), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 24, - anon_sym_DOT, - anon_sym_as, - 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206191,37 +216027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [188359] = 3, + [197042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 26, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -206248,14 +216058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2938), 28, + ACTIONS(197), 28, 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, @@ -206264,6 +216073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -206277,23 +216087,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188422] = 3, + [197105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2944), 26, - sym__newline, - sym__indent, + ACTIONS(3083), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206308,12 +216117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2942), 28, - anon_sym_import, + ACTIONS(3081), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -206323,10 +216131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206337,23 +216147,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188485] = 3, + [197168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 26, - sym__newline, - sym__indent, + ACTIONS(3089), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206368,12 +216177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2946), 28, - anon_sym_import, + ACTIONS(3087), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -206383,10 +216191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206397,25 +216207,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188548] = 4, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [197231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, - sym__newline, - sym__indent, + ACTIONS(3093), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206430,13 +216237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, - anon_sym_import, + ACTIONS(3091), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -206444,10 +216251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206458,25 +216267,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188613] = 4, - STATE(2403), 1, - aux_sym_union_type_repeat1, + [197294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 26, + ACTIONS(3097), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206491,7 +216297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 27, + ACTIONS(3095), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -206509,6 +216315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206519,59 +216327,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188678] = 10, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3526), 1, - anon_sym_and, - ACTIONS(3528), 1, - anon_sym_or, - ACTIONS(3530), 1, - anon_sym_PLUS, + [197357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 22, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - 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, - ACTIONS(2357), 24, - sym__newline, - sym__indent, + ACTIONS(3101), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206586,103 +216357,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [188755] = 21, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - ACTIONS(3538), 1, - anon_sym_not, - ACTIONS(3544), 1, - anon_sym_PIPE, - ACTIONS(3546), 1, - anon_sym_AMP, - ACTIONS(3548), 1, - anon_sym_CARET, - ACTIONS(3554), 1, - anon_sym_is, - STATE(2499), 1, - sym_argument_list, - STATE(2530), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3532), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3552), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2365), 19, - anon_sym_import, + ACTIONS(3099), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + 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_type, + anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + 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, - [188854] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + [197420] = 4, + ACTIONS(3654), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__newline, - sym__indent, + ACTIONS(2033), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206697,13 +216419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, - anon_sym_import, + ACTIONS(2035), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -206711,10 +216433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206725,25 +216448,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188919] = 4, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [197485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, - sym__newline, - sym__indent, + ACTIONS(2825), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206758,13 +216478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, - anon_sym_import, + ACTIONS(2827), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -206772,10 +216492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206786,15 +216508,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [188984] = 4, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [197548] = 5, + ACTIONS(458), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, - sym__newline, - sym__indent, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -206802,8 +216525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -206819,13 +216542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, - anon_sym_import, + ACTIONS(2252), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -206833,10 +216555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -206847,13 +216570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [189049] = 4, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [197615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3245), 26, sym__newline, sym__indent, sym_string_start, @@ -206880,7 +216601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + ACTIONS(3247), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -206895,6 +216616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -206908,31 +216630,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [189114] = 8, - ACTIONS(3520), 1, - sym_isMutableFlag, - ACTIONS(3522), 1, - anon_sym_QMARK_COLON, - STATE(2557), 1, - sym_dict_expr, - STATE(3393), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [197678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 24, + ACTIONS(3109), 25, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -206947,11 +216660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 25, + ACTIONS(3107), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -206962,6 +216677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -206973,58 +216690,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [189187] = 9, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3526), 1, - anon_sym_and, - ACTIONS(3530), 1, - anon_sym_PLUS, + [197741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2467), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - 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, - ACTIONS(2469), 24, - sym__newline, - sym__indent, + ACTIONS(2007), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -207039,24 +216720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [189262] = 7, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3526), 1, - anon_sym_and, - ACTIONS(3530), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 24, - anon_sym_import, + ACTIONS(2009), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -207064,9 +216734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -207077,18 +216750,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 25, - sym__newline, - sym__indent, + [197804] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3117), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -207103,25 +216780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [189333] = 8, - ACTIONS(3516), 1, - sym_isMutableFlag, - ACTIONS(3518), 1, - anon_sym_QMARK_COLON, - STATE(3180), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 24, + ACTIONS(3115), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -207132,6 +216797,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -207142,210 +216810,118 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, + [197867] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3626), 1, anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3632), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(3634), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3638), 1, anon_sym_PIPE, + ACTIONS(3640), 1, anon_sym_AMP, + ACTIONS(3642), 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, - [189406] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - ACTIONS(3544), 1, - anon_sym_PIPE, - ACTIONS(3546), 1, - anon_sym_AMP, - ACTIONS(3548), 1, - anon_sym_CARET, - STATE(2499), 1, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, + ACTIONS(3624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, + ACTIONS(3636), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2491), 8, - sym__newline, - sym__indent, + ACTIONS(2306), 7, sym_string_start, anon_sym_COLON, anon_sym_LBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_TILDE, sym_float, - ACTIONS(2489), 14, - anon_sym_import, - anon_sym_assert, + ACTIONS(2308), 15, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [189507] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - ACTIONS(3544), 1, - anon_sym_PIPE, - ACTIONS(3546), 1, - anon_sym_AMP, - ACTIONS(3548), 1, - anon_sym_CARET, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [197970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 8, + ACTIONS(3241), 26, sym__newline, sym__indent, sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, - sym_float, - ACTIONS(2501), 14, - anon_sym_import, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [189608] = 8, - ACTIONS(3559), 1, - anon_sym_not, - ACTIONS(3565), 1, - anon_sym_is, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3556), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3562), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2861), 22, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3243), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -207353,22 +216929,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, + anon_sym_not, anon_sym_and, anon_sym_or, 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(2863), 22, + [198033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 26, sym__newline, sym__indent, sym_string_start, @@ -207389,69 +216975,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_QMARK_LBRACK, - sym_float, - [189681] = 13, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - 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(2518), 24, + ACTIONS(3239), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -207461,13 +217010,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [189764] = 4, - ACTIONS(3485), 1, - anon_sym_EQ, + [198096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 26, + ACTIONS(3233), 26, sym__newline, sym__indent, sym_string_start, @@ -207494,7 +217041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 27, + ACTIONS(3235), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -207509,6 +217056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -207522,13 +217070,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [189829] = 4, - STATE(2427), 1, - sym_dictionary, + [198159] = 4, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2768), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -207555,7 +217103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2770), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -207583,13 +217131,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [189894] = 4, - STATE(2403), 1, - aux_sym_union_type_repeat1, + [198224] = 8, + ACTIONS(3659), 1, + anon_sym_not, + ACTIONS(3665), 1, + anon_sym_is, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 26, + ACTIONS(3656), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3662), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -207610,13 +217171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 27, + ACTIONS(2841), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -207624,88 +217181,73 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [189959] = 14, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [198297] = 4, + STATE(2567), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, - sym__newline, - sym__indent, + ACTIONS(2154), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + 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_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, - ACTIONS(2518), 24, - anon_sym_import, + ACTIONS(2156), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + 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_type, + 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, @@ -207715,142 +217257,57 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190044] = 15, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - ACTIONS(3548), 1, - anon_sym_CARET, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [198362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(3229), 26, sym__newline, sym__indent, sym_string_start, anon_sym_COLON, - anon_sym_LBRACE, - 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(2518), 24, - 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_type, - 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, - [190131] = 16, - ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3429), 1, anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3546), 1, - anon_sym_AMP, - ACTIONS(3548), 1, - anon_sym_CARET, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3542), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - 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(2518), 24, + ACTIONS(3231), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -207860,39 +217317,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190220] = 12, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [198425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + ACTIONS(3183), 26, sym__newline, sym__indent, sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, @@ -207903,23 +217346,28 @@ 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(2518), 24, + ACTIONS(3185), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -207929,30 +217377,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190301] = 10, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [198488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(3219), 26, sym__newline, sym__indent, sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -207968,13 +217406,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(2518), 26, + ACTIONS(3221), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -207983,6 +217423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -207996,33 +217437,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190378] = 10, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [198551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, - sym__newline, - sym__indent, + ACTIONS(3123), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208035,13 +217465,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(2518), 26, - anon_sym_import, + ACTIONS(3121), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208049,10 +217481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -208063,27 +217497,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190455] = 9, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3526), 1, - anon_sym_and, - ACTIONS(3530), 1, - anon_sym_PLUS, + [198614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, + ACTIONS(3215), 26, sym__newline, sym__indent, sym_string_start, @@ -208091,13 +217509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208105,42 +217521,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_QMARK_LBRACK, - ACTIONS(2449), 18, + sym_float, + ACTIONS(3217), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + 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_mixin, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [190530] = 6, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3530), 1, - anon_sym_PLUS, + [198677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 25, + ACTIONS(3215), 26, sym__newline, sym__indent, sym_string_start, @@ -208150,6 +217571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -208166,11 +217588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2445), 25, + ACTIONS(3217), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208179,6 +217603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208192,29 +217617,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190599] = 6, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3530), 1, - anon_sym_PLUS, + [198740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 25, - sym__newline, - sym__indent, + ACTIONS(3127), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208229,46 +217647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 25, - anon_sym_import, + ACTIONS(3125), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [190668] = 5, - ACTIONS(3524), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208276,10 +217661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -208290,45 +217677,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2451), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [190735] = 6, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3530), 1, - anon_sym_PLUS, + [198803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 25, + ACTIONS(3211), 26, sym__newline, sym__indent, sym_string_start, @@ -208338,6 +217691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -208354,11 +217708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 25, + ACTIONS(3213), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208367,6 +217723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208380,42 +217737,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [190804] = 5, - ACTIONS(3524), 1, - anon_sym_if, + [198866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - 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(2459), 26, + ACTIONS(3207), 26, sym__newline, sym__indent, sym_string_start, @@ -208442,20 +217768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [190871] = 5, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 25, + ACTIONS(3209), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208464,6 +217783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208477,7 +217797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 26, + [198929] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 26, sym__newline, sym__indent, sym_string_start, @@ -208504,20 +217828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [190938] = 5, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 25, + ACTIONS(3205), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208526,6 +217843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208539,7 +217857,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2463), 26, + [198992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 26, sym__newline, sym__indent, sym_string_start, @@ -208566,20 +217888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [191005] = 5, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 25, + ACTIONS(3205), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208588,6 +217903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208601,18 +217917,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(189), 26, - sym__newline, - sym__indent, + [199055] = 4, + STATE(2567), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -208628,31 +217950,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [191072] = 8, - ACTIONS(3520), 1, - sym_isMutableFlag, - ACTIONS(3522), 1, - anon_sym_QMARK_COLON, - STATE(2557), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1956), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_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, + [199120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 24, + ACTIONS(3045), 25, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208667,11 +218008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1586), 25, + ACTIONS(3043), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208682,6 +218025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -208693,44 +218038,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191145] = 5, - ACTIONS(3524), 1, + [199183] = 6, + ACTIONS(458), 1, anon_sym_if, + ACTIONS(3616), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2441), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - 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(2439), 26, - sym__newline, - sym__indent, + ACTIONS(2258), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -208738,8 +218057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -208755,25 +218074,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [191212] = 4, - STATE(2269), 1, - aux_sym_union_type_repeat1, + ACTIONS(2256), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [199252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 26, - sym__newline, - sym__indent, + ACTIONS(3105), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208788,13 +218131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2912), 27, - anon_sym_import, + ACTIONS(3103), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -208802,10 +218145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -208816,54 +218161,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191277] = 5, - ACTIONS(3568), 1, - anon_sym_EQ, - STATE(2269), 1, - aux_sym_union_type_repeat1, + [199315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 26, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2562), 26, - sym__newline, - sym__indent, + ACTIONS(3143), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208878,104 +218191,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [191344] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - ACTIONS(3544), 1, - anon_sym_PIPE, - ACTIONS(3546), 1, - anon_sym_AMP, - ACTIONS(3548), 1, - anon_sym_CARET, - STATE(2499), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(3141), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 8, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 14, - anon_sym_import, - anon_sym_assert, + anon_sym_for, + 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_type, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + 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, - [191445] = 4, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [199378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3149), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -208990,7 +218251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + ACTIONS(3147), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -209008,6 +218269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209018,25 +218281,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191510] = 4, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [199441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3153), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -209051,7 +218311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + ACTIONS(3151), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -209069,6 +218329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209079,25 +218341,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191575] = 4, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [199504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 26, + ACTIONS(3157), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -209112,7 +218371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + ACTIONS(3155), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -209130,6 +218389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209140,24 +218401,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191640] = 4, - STATE(2410), 1, - aux_sym_dotted_name_repeat1, + [199567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 25, + ACTIONS(3199), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -209172,12 +218432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2471), 28, + ACTIONS(3201), 28, + 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, @@ -209185,12 +218446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209201,17 +218461,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191705] = 6, - ACTIONS(3570), 1, - anon_sym_DOT, - ACTIONS(3573), 1, - anon_sym_QMARK_DOT, - STATE(2391), 1, - aux_sym_dotted_name_repeat1, + [199630] = 4, + ACTIONS(3668), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 25, + ACTIONS(1973), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -209220,9 +218476,9 @@ 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_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -209237,7 +218493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 26, + ACTIONS(1975), 28, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, @@ -209254,6 +218511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209264,25 +218522,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191774] = 4, - STATE(2403), 1, - aux_sym_union_type_repeat1, + [199695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 26, + ACTIONS(2807), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -209297,7 +218552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2912), 27, + ACTIONS(2805), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -209315,6 +218570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209325,25 +218582,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191839] = 4, - STATE(2391), 1, - aux_sym_dotted_name_repeat1, + [199758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 26, + ACTIONS(2803), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -209358,7 +218612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2471), 27, + ACTIONS(2801), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -209376,6 +218630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209386,19 +218642,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [191904] = 5, - ACTIONS(3576), 1, - anon_sym_EQ, - STATE(2403), 1, - aux_sym_union_type_repeat1, + [199821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 26, + ACTIONS(3195), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(3197), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -209407,10 +218687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209421,7 +218702,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 26, + [199884] = 5, + ACTIONS(3670), 1, + anon_sym_PIPE, + STATE(2510), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -209436,7 +218725,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, @@ -209448,13 +218736,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [191971] = 4, - STATE(2390), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(1956), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_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, + [199951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 25, + ACTIONS(3163), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -209480,10 +218794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2475), 28, + ACTIONS(3165), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -209509,13 +218824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192036] = 4, - STATE(2506), 1, - sym_dictionary, + [200014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 25, + ACTIONS(3167), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -209541,10 +218854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 28, + ACTIONS(3169), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -209570,234 +218884,182 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192101] = 8, - ACTIONS(3516), 1, - sym_isMutableFlag, - ACTIONS(3518), 1, - anon_sym_QMARK_COLON, - STATE(3180), 1, - sym_dict_expr, - STATE(3400), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 24, - anon_sym_DOT, - anon_sym_as, - 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, + [200077] = 23, + ACTIONS(2316), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2332), 1, anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1588), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3626), 1, anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3632), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(3634), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3638), 1, anon_sym_PIPE, + ACTIONS(3640), 1, anon_sym_AMP, + ACTIONS(3642), 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, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - sym_float, - [192174] = 10, - ACTIONS(3427), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, - anon_sym_STAR_STAR, - STATE(2499), 1, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2574), 26, - anon_sym_import, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 7, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 15, + anon_sym_for, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [192251] = 21, - ACTIONS(3427), 1, + [200180] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3618), 1, anon_sym_LPAREN, - ACTIONS(3429), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3445), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3536), 1, + ACTIONS(3626), 1, anon_sym_STAR_STAR, - ACTIONS(3538), 1, - anon_sym_not, - ACTIONS(3544), 1, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, + anon_sym_DASH, + ACTIONS(3638), 1, anon_sym_PIPE, - ACTIONS(3546), 1, + ACTIONS(3640), 1, anon_sym_AMP, - ACTIONS(3548), 1, + ACTIONS(3642), 1, anon_sym_CARET, - ACTIONS(3554), 1, - anon_sym_is, - STATE(2499), 1, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, sym_argument_list, - STATE(3281), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, + ACTIONS(3624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3540), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3542), 2, + ACTIONS(3636), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3550), 2, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3532), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3552), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym__newline, - sym__indent, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 7, sym_string_start, anon_sym_COLON, anon_sym_LBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_TILDE, sym_float, - ACTIONS(2365), 19, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, + ACTIONS(2384), 15, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_and, - anon_sym_or, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [192350] = 4, - STATE(2393), 1, - aux_sym_dotted_name_repeat1, + [200283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 26, + ACTIONS(3191), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -209813,13 +219075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2475), 27, + ACTIONS(3193), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -209827,10 +219089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209841,24 +219104,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192415] = 4, - ACTIONS(3578), 1, - anon_sym_DASH_GT, + [200346] = 5, + ACTIONS(458), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 25, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -209873,10 +219138,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 28, + ACTIONS(2264), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -209891,7 +219155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209902,57 +219166,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192480] = 4, - STATE(3259), 1, - aux_sym_comparison_operator_repeat1, + [200413] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_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, - ACTIONS(217), 27, + ACTIONS(197), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, 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_not, + anon_sym_type, + anon_sym_mixin, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -209963,24 +219201,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192545] = 4, - STATE(2409), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2568), 26, + ACTIONS(201), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -209996,39 +219228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2566), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_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, - [192610] = 3, + [200480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 26, + ACTIONS(3187), 26, sym__newline, sym__indent, sym_string_start, @@ -210055,14 +219259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2928), 28, + ACTIONS(3189), 28, 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, @@ -210071,6 +219274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -210084,20 +219288,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192673] = 4, - ACTIONS(3580), 1, - anon_sym_DASH_GT, + [200543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 25, + ACTIONS(3171), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -210116,7 +219318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 28, + ACTIONS(3173), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -210134,6 +219336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -210145,20 +219348,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192738] = 4, - ACTIONS(3582), 1, - anon_sym_DASH_GT, + [200606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 25, + ACTIONS(3175), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -210177,7 +219378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 28, + ACTIONS(3177), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -210195,6 +219396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -210206,154 +219408,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [192803] = 4, - STATE(2513), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - ACTIONS(217), 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, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [192868] = 7, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3526), 1, - anon_sym_and, - ACTIONS(3530), 1, - anon_sym_PLUS, + [200669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - 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, - ACTIONS(2447), 25, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [192939] = 5, - ACTIONS(3584), 1, - anon_sym_PIPE, - STATE(2409), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 25, + ACTIONS(3179), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, 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, @@ -210365,7 +219438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 27, + ACTIONS(3181), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -210383,67 +219456,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [193006] = 6, - ACTIONS(3587), 1, - anon_sym_DOT, - ACTIONS(3590), 1, - anon_sym_QMARK_DOT, - STATE(2410), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2555), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_DQUOTE, - 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_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2550), 27, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_then, anon_sym_DASH, anon_sym_SLASH, @@ -210456,22 +219468,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193075] = 3, + [200732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3191), 25, + ACTIONS(3055), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -210486,12 +219499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3193), 28, + ACTIONS(3053), 28, + 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, @@ -210499,12 +219513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -210515,23 +219528,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193137] = 3, + [200795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3135), 26, + ACTIONS(3183), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -210546,7 +219558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3133), 27, + ACTIONS(3185), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -210564,6 +219576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -210574,11 +219588,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193199] = 3, + [200858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 25, + ACTIONS(3187), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -210604,10 +219618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3277), 28, + ACTIONS(3189), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -210633,22 +219648,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193261] = 3, + [200921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 25, + ACTIONS(3179), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -210663,12 +219679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2922), 28, + ACTIONS(3181), 28, + 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, @@ -210676,12 +219693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -210692,22 +219708,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193323] = 3, + [200984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 26, + ACTIONS(3175), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -210723,13 +219739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 27, + ACTIONS(3177), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -210737,10 +219753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -210751,11 +219768,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193385] = 3, + [201047] = 4, + ACTIONS(3673), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 26, + ACTIONS(2154), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -210767,7 +219786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -210782,7 +219800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3273), 27, + ACTIONS(2156), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -210800,6 +219818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -210810,11 +219829,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193447] = 3, + [201112] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 25, + ACTIONS(2778), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -210840,10 +219859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3273), 28, + ACTIONS(2776), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -210869,11 +219889,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193509] = 3, + [201175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 25, + ACTIONS(3191), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -210899,10 +219919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2550), 28, + ACTIONS(3193), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -210928,22 +219949,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193571] = 3, + [201238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 25, + ACTIONS(3171), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -210958,12 +219980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3253), 28, + ACTIONS(3173), 28, + 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, @@ -210971,12 +219994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -210987,22 +220009,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193633] = 3, + [201301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 26, + ACTIONS(3167), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -211018,13 +220040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2922), 27, + ACTIONS(3169), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211032,10 +220054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211046,24 +220069,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193695] = 4, - ACTIONS(3593), 1, - anon_sym_DASH_GT, + [201364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 25, + ACTIONS(3157), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -211078,13 +220100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 27, + ACTIONS(3155), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211092,10 +220114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211106,22 +220129,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193759] = 3, + [201427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 26, + ACTIONS(3153), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -211137,13 +220160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3277), 27, + ACTIONS(3151), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211151,10 +220174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211165,23 +220189,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193821] = 3, + [201490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 26, + ACTIONS(3195), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211196,7 +220219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 27, + ACTIONS(3197), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211214,6 +220237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211224,23 +220249,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193883] = 3, + [201553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 26, + ACTIONS(3199), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211255,7 +220279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3289), 27, + ACTIONS(3201), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211273,6 +220297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211283,23 +220309,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [193945] = 3, + [201616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 26, + ACTIONS(3203), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211314,7 +220339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3293), 27, + ACTIONS(3205), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211332,6 +220357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211342,23 +220369,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194007] = 3, + [201679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 26, + ACTIONS(3203), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211373,7 +220399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2928), 27, + ACTIONS(3205), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211391,6 +220417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211401,23 +220429,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194069] = 3, + [201742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 26, + ACTIONS(3207), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211432,7 +220459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3297), 27, + ACTIONS(3209), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211450,6 +220477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211460,22 +220489,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194131] = 3, + [201805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 25, + ACTIONS(3149), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -211490,12 +220520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3165), 28, + ACTIONS(3147), 28, + 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, @@ -211503,12 +220534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211519,22 +220549,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194193] = 3, + [201868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 26, + ACTIONS(3143), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -211550,13 +220580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 27, + ACTIONS(3141), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211564,10 +220594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211578,23 +220609,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194255] = 3, + [201931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 26, - sym__newline, - sym__indent, + ACTIONS(2774), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211609,13 +220639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3239), 27, - anon_sym_import, + ACTIONS(2772), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211623,10 +220653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211637,22 +220669,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194317] = 3, + [201994] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3135), 25, + ACTIONS(3105), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -211667,12 +220700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3133), 28, + ACTIONS(3103), 28, + 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, @@ -211680,12 +220714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211696,24 +220729,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194379] = 8, - ACTIONS(3315), 1, - anon_sym_QMARK_COLON, - ACTIONS(3595), 1, - sym_isMutableFlag, - STATE(2433), 1, - sym_dict_expr, - STATE(3418), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [202057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 23, + ACTIONS(3211), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + 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_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3213), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211724,6 +220776,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211734,49 +220789,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 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, - [194451] = 3, + [202120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 26, + ACTIONS(3215), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211791,7 +220819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3259), 27, + ACTIONS(3217), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211809,6 +220837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211819,23 +220849,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194513] = 3, + [202183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 26, - sym__newline, - sym__indent, + ACTIONS(3215), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211850,13 +220879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 27, - anon_sym_import, + ACTIONS(3217), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -211864,10 +220893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211878,23 +220909,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194575] = 3, + [202246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2936), 26, + ACTIONS(3219), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -211909,7 +220939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2934), 27, + ACTIONS(3221), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -211927,6 +220957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211937,18 +220969,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194637] = 3, + [202309] = 7, + ACTIONS(458), 1, + anon_sym_if, + ACTIONS(3614), 1, + anon_sym_and, + ACTIONS(3616), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 26, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2542), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -211968,10 +221007,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2938), 27, + ACTIONS(2540), 25, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_EQ, @@ -211983,9 +221021,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_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -211996,11 +221033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194699] = 3, + [202380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 25, + ACTIONS(3225), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -212026,10 +221063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 28, + ACTIONS(3227), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -212055,23 +221093,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194761] = 3, + [202443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2944), 26, + ACTIONS(3229), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212086,7 +221123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2942), 27, + ACTIONS(3231), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -212104,6 +221141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212114,23 +221153,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194823] = 3, + [202506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 26, + ACTIONS(3233), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212145,7 +221183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 27, + ACTIONS(3235), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -212163,6 +221201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212173,11 +221213,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194885] = 3, + [202569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3043), 25, + ACTIONS(3237), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -212203,10 +221243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3041), 28, + ACTIONS(3239), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -212232,23 +221273,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [194947] = 3, + [202632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 26, + ACTIONS(3241), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212263,7 +221303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2946), 27, + ACTIONS(3243), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -212281,6 +221321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212291,23 +221333,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195009] = 3, + [202695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 26, + ACTIONS(3245), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212322,7 +221363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3239), 27, + ACTIONS(3247), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -212340,6 +221381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212350,11 +221393,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195071] = 3, + [202758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 25, + ACTIONS(3249), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -212380,10 +221423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3049), 28, + ACTIONS(3251), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -212409,22 +221453,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195133] = 3, + [202821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3055), 25, + ACTIONS(3127), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -212439,12 +221484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3053), 28, + ACTIONS(3125), 28, + 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, @@ -212452,12 +221498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212468,11 +221513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195195] = 3, + [202884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 25, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -212498,10 +221543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3061), 28, + ACTIONS(197), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -212527,22 +221573,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195257] = 3, + [202947] = 6, + ACTIONS(458), 1, + anon_sym_if, + ACTIONS(3616), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3067), 25, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212557,10 +221609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3065), 28, + ACTIONS(2242), 26, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -212573,9 +221625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212586,11 +221636,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195319] = 3, + [203016] = 6, + ACTIONS(3675), 1, + anon_sym_DOT, + ACTIONS(3678), 1, + anon_sym_QMARK_DOT, + STATE(2558), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 26, + ACTIONS(2007), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -212599,7 +221655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH, @@ -212617,8 +221672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3235), 27, - anon_sym_DOT, + ACTIONS(2009), 26, anon_sym_as, anon_sym_if, anon_sym_for, @@ -212645,22 +221699,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195381] = 3, + [203085] = 9, + ACTIONS(458), 1, + anon_sym_if, + ACTIONS(3614), 1, + anon_sym_and, + ACTIONS(3616), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2900), 25, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 11, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212668,58 +221740,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_QMARK_LBRACK, - sym_float, - ACTIONS(2898), 28, + ACTIONS(2242), 19, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_for, 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_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_then, - 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, - [195443] = 3, + [203160] = 4, + STATE(2567), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2896), 25, + ACTIONS(2758), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212734,10 +221798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2894), 28, + ACTIONS(2760), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -212751,8 +221816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212763,11 +221826,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195505] = 3, + [203225] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 25, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -212793,20 +221860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3143), 28, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -212822,22 +221888,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195567] = 3, + [203292] = 5, + ACTIONS(3681), 1, + anon_sym_EQ, + STATE(2567), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 25, + ACTIONS(2554), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -212852,12 +221923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3163), 28, + ACTIONS(2556), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -212869,8 +221940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212881,22 +221950,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195629] = 3, + [203359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 26, + ACTIONS(3123), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -212912,13 +221981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2950), 27, + ACTIONS(3121), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -212926,10 +221995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -212940,83 +222010,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195691] = 5, - ACTIONS(3597), 1, - anon_sym_in, - ACTIONS(3599), 1, + [203422] = 8, + ACTIONS(3686), 1, anon_sym_not, + ACTIONS(3692), 1, + anon_sym_is, + STATE(2564), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, - 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_PLUS, - anon_sym_SLASH, + ACTIONS(3683), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(221), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_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, + ACTIONS(3689), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [195757] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3201), 26, + ACTIONS(2839), 22, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -213026,72 +222050,81 @@ 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(3203), 27, + ACTIONS(2841), 22, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, - 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_not, + anon_sym_type, + anon_sym_mixin, 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, - [195819] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [203495] = 18, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3626), 1, anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3638), 1, anon_sym_PIPE, + ACTIONS(3640), 1, anon_sym_AMP, + ACTIONS(3642), 1, anon_sym_CARET, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2458), 11, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2386), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -213104,12 +222137,10 @@ 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_PLUS, - anon_sym_SLASH, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -213119,11 +222150,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195881] = 3, + [203588] = 4, + ACTIONS(3608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 26, + ACTIONS(2554), 26, sym__newline, sym__indent, sym_string_start, @@ -213150,13 +222183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3203), 27, + ACTIONS(2556), 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, anon_sym_all, @@ -213165,6 +222197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -213178,11 +222211,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [195943] = 3, + [203653] = 4, + STATE(2510), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3043), 26, + ACTIONS(2392), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -213209,7 +222244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3041), 27, + ACTIONS(2390), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -213237,11 +222272,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196005] = 3, + [203718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(3117), 26, sym__newline, sym__indent, sym_string_start, @@ -213268,7 +222303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(3115), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -213283,6 +222318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -213296,22 +222332,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196067] = 3, + [203781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 26, + ACTIONS(3109), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -213327,13 +222363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 27, + ACTIONS(3107), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -213341,10 +222377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213355,22 +222392,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196129] = 3, + [203844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3149), 25, + ACTIONS(3101), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -213385,12 +222423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3151), 28, + ACTIONS(3099), 28, + 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, @@ -213398,12 +222437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213414,22 +222452,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196191] = 3, + [203907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3145), 25, + ACTIONS(3097), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -213444,12 +222483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3147), 28, + ACTIONS(3095), 28, + 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, @@ -213457,12 +222497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213473,22 +222512,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196253] = 3, + [203970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3137), 25, + ACTIONS(3093), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -213503,12 +222543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3139), 28, + ACTIONS(3091), 28, + 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, @@ -213516,12 +222557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213532,22 +222572,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196315] = 3, + [204033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(3089), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, 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, @@ -213563,13 +222603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(3087), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -213577,10 +222617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213591,22 +222632,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196377] = 3, + [204096] = 4, + STATE(2582), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3125), 25, + ACTIONS(2598), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -213621,10 +222665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3127), 28, + ACTIONS(2600), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -213638,8 +222683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213650,22 +222693,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196439] = 3, + [204161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3109), 25, + ACTIONS(3083), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -213680,12 +222724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3111), 28, + ACTIONS(3081), 28, + 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, @@ -213693,12 +222738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213709,46 +222753,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196501] = 4, - STATE(2522), 1, - aux_sym_union_type_repeat1, + [204224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2534), 26, + ACTIONS(3079), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -213769,19 +222784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [196565] = 4, - STATE(2522), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2536), 26, + ACTIONS(3077), 28, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -213789,6 +222798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -213802,49 +222813,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2538), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, - [196629] = 3, + [204287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 25, + ACTIONS(3075), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -213859,12 +222844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 28, + ACTIONS(3073), 28, + 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, @@ -213872,12 +222858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -213888,22 +222873,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196691] = 3, + [204350] = 8, + ACTIONS(3695), 1, + sym_isMutableFlag, + ACTIONS(3697), 1, + anon_sym_QMARK_COLON, + STATE(2448), 1, + sym_dict_expr, + STATE(3423), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 25, + ACTIONS(1538), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -213918,12 +222912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2885), 28, + ACTIONS(1536), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -213934,8 +222927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -213947,22 +222938,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196753] = 3, + [204423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 25, + ACTIONS(3045), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -213977,12 +222969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3097), 28, + ACTIONS(3043), 28, + 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, @@ -213990,12 +222983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -214006,53 +222998,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196815] = 7, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3601), 1, - anon_sym_and, - ACTIONS(3603), 1, - anon_sym_PLUS, + [204486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - 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_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, - ACTIONS(2481), 25, + ACTIONS(3039), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -214069,42 +223029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [196885] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3291), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - 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_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3289), 28, + ACTIONS(3037), 28, + 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, @@ -214112,12 +223043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -214128,54 +223058,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [196947] = 4, - STATE(2512), 1, - aux_sym_dotted_name_repeat1, + [204549] = 14, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, + anon_sym_DASH, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + ACTIONS(3624), 2, 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(2473), 26, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 16, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - 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, @@ -214186,15 +223102,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, - [197011] = 4, - STATE(2522), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2483), 26, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -214207,11 +223116,10 @@ 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_then, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -214221,38 +223129,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2485), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, - [197075] = 3, + [204634] = 4, + STATE(2558), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(2300), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -214279,7 +223162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2298), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -214307,40 +223190,57 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197137] = 3, + [204699] = 15, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, + anon_sym_DASH, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 25, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3075), 28, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -214349,14 +223249,10 @@ 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_PLUS, anon_sym_then, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -214366,40 +223262,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197199] = 3, + [204786] = 16, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, + anon_sym_DASH, + ACTIONS(3642), 1, + anon_sym_CARET, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3069), 25, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 13, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3071), 28, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -214408,14 +223322,10 @@ 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_PLUS, anon_sym_then, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -214425,40 +223335,59 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197261] = 3, + [204875] = 17, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, + anon_sym_DASH, + ACTIONS(3640), 1, + anon_sym_AMP, + ACTIONS(3642), 1, + anon_sym_CARET, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 25, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 12, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 28, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -214467,14 +223396,10 @@ 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_PLUS, anon_sym_then, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -214484,24 +223409,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197323] = 3, + [204966] = 12, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 25, + ACTIONS(3624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3636), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -214512,12 +223450,12 @@ 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(3047), 28, + ACTIONS(1942), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -214526,14 +223464,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_PLUS, anon_sym_then, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -214543,22 +223478,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197385] = 3, + [205047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3057), 25, + ACTIONS(3035), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -214573,12 +223509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3059), 28, + ACTIONS(3033), 28, + 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, @@ -214586,12 +223523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -214602,100 +223538,98 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197447] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3605), 1, + [205110] = 10, + ACTIONS(3618), 1, anon_sym_LPAREN, - ACTIONS(3607), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3611), 1, + ACTIONS(3626), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - ACTIONS(3619), 1, - anon_sym_PIPE, - ACTIONS(3621), 1, - anon_sym_AMP, - ACTIONS(3623), 1, - anon_sym_CARET, - ACTIONS(3627), 1, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - STATE(2875), 1, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, + ACTIONS(1940), 19, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - ACTIONS(3617), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + sym_float, + ACTIONS(1942), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 8, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 13, anon_sym_for, 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [197547] = 3, + [205187] = 10, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3626), 1, + anon_sym_STAR_STAR, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 25, + ACTIONS(1940), 19, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -214708,12 +223642,12 @@ 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(3293), 28, + ACTIONS(1942), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -214728,7 +223662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -214739,22 +223672,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197609] = 3, + [205264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 25, + ACTIONS(3287), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -214769,12 +223703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2881), 28, + ACTIONS(3289), 28, + 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, @@ -214782,12 +223717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -214798,91 +223732,63 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197671] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, + [205327] = 21, + ACTIONS(2332), 1, anon_sym_is, - ACTIONS(3605), 1, + ACTIONS(3618), 1, anon_sym_LPAREN, - ACTIONS(3607), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3611), 1, + ACTIONS(3626), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - ACTIONS(3619), 1, + ACTIONS(3632), 1, + anon_sym_PLUS, + ACTIONS(3634), 1, + anon_sym_DASH, + ACTIONS(3638), 1, anon_sym_PIPE, - ACTIONS(3621), 1, + ACTIONS(3640), 1, anon_sym_AMP, - ACTIONS(3623), 1, + ACTIONS(3642), 1, anon_sym_CARET, - ACTIONS(3627), 1, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - STATE(2875), 1, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, + ACTIONS(3624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3617), 2, + ACTIONS(3636), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, + ACTIONS(3644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 8, + ACTIONS(2458), 7, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_TILDE, sym_float, - ACTIONS(2501), 13, - anon_sym_for, - anon_sym_else, - 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, - [197771] = 4, - STATE(2522), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2505), 26, + ACTIONS(2386), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -214890,68 +223796,37 @@ static const uint16_t ts_small_parse_table[] = { 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2507), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, - [197835] = 3, + [205426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3113), 25, + ACTIONS(201), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -214966,12 +223841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3115), 28, + ACTIONS(197), 28, + 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, @@ -214979,12 +223855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -214995,22 +223870,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197897] = 3, + [205489] = 4, + STATE(3311), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 25, + ACTIONS(201), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -215025,12 +223903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 28, + ACTIONS(197), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -215038,12 +223916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215054,22 +223931,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [197959] = 3, + [205554] = 4, + STATE(3305), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 25, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -215084,10 +223964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 28, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -215101,8 +223982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215113,22 +223992,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198021] = 3, + [205619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 25, + ACTIONS(2356), 26, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -215143,12 +224023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3155), 28, + ACTIONS(2310), 28, + 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, @@ -215156,12 +224037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215172,11 +224052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198083] = 3, + [205682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -215203,7 +224083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(197), 28, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -215218,6 +224098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_type, + anon_sym_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -215231,55 +224112,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198145] = 3, + [205745] = 5, + ACTIONS(3699), 1, + anon_sym_in, + ACTIONS(3701), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3157), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - 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_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3159), 28, + ACTIONS(197), 26, + 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_not, + anon_sym_type, + anon_sym_mixin, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215290,11 +224147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198207] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3257), 26, + ACTIONS(201), 26, sym__newline, sym__indent, sym_string_start, @@ -215321,11 +224174,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3259), 27, - anon_sym_import, + [205812] = 8, + ACTIONS(3695), 1, + sym_isMutableFlag, + ACTIONS(3697), 1, + anon_sym_QMARK_COLON, + STATE(2448), 1, + sym_dict_expr, + STATE(3075), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1538), 24, + sym_string_start, + 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_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(1536), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, anon_sym_else, anon_sym_lambda, @@ -215335,10 +224225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215349,22 +224239,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198269] = 3, + [205885] = 8, + ACTIONS(3695), 1, + sym_isMutableFlag, + ACTIONS(3697), 1, + anon_sym_QMARK_COLON, + STATE(2448), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 25, + ACTIONS(1538), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -215379,12 +224278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 28, + ACTIONS(1536), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -215395,8 +224293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -215408,22 +224304,85 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198331] = 3, + [205958] = 5, + ACTIONS(3699), 1, + anon_sym_in, + ACTIONS(3703), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 25, + ACTIONS(197), 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_STAR, + anon_sym_type, + anon_sym_mixin, + anon_sym_and, + anon_sym_or, + 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(201), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [206025] = 4, + STATE(2699), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -215438,10 +224397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3177), 28, + ACTIONS(2156), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -215456,7 +224416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215467,22 +224426,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198393] = 3, + [206089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3179), 25, + ACTIONS(3157), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -215497,10 +224457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3181), 28, + ACTIONS(3155), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -215514,8 +224475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215526,17 +224485,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198455] = 3, + [206151] = 4, + ACTIONS(3705), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 25, + ACTIONS(2033), 23, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -215556,10 +224515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3185), 28, + ACTIONS(2035), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -215585,22 +224545,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198517] = 3, + [206215] = 4, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 25, + ACTIONS(2768), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -215615,10 +224576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3189), 28, + ACTIONS(2770), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -215633,7 +224595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215644,17 +224605,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198579] = 3, + [206279] = 4, + STATE(2696), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 26, - sym__newline, - sym__indent, + ACTIONS(2192), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -215675,13 +224638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3235), 27, - anon_sym_import, + ACTIONS(2194), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -215689,7 +224652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -215703,22 +224665,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198641] = 3, + [206343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 26, - sym__newline, - sym__indent, + ACTIONS(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -215734,13 +224696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 27, - anon_sym_import, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -215748,10 +224710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215762,22 +224724,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198703] = 3, + [206405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 25, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -215792,10 +224755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2928), 28, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -215809,8 +224773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -215821,40 +224783,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198765] = 13, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [206467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3617), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, + ACTIONS(2356), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + 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_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -215865,22 +224812,27 @@ 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(2518), 23, + ACTIONS(2310), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -215890,67 +224842,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198847] = 14, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [206529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3617), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + 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_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, - ACTIONS(2518), 23, + ACTIONS(197), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -215960,68 +224901,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [198931] = 15, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3623), 1, - anon_sym_CARET, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [206591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3617), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(3287), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + 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_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, - ACTIONS(2518), 23, + ACTIONS(3289), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -216031,90 +224960,84 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199017] = 16, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3621), 1, - anon_sym_AMP, - ACTIONS(3623), 1, - anon_sym_CARET, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, + [206653] = 8, + ACTIONS(3710), 1, + anon_sym_not, + ACTIONS(3716), 1, + anon_sym_is, + STATE(2611), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3617), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(3707), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3713), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 20, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, 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, - ACTIONS(2518), 23, + ACTIONS(2841), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, + anon_sym_STAR, anon_sym_and, anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, + anon_sym_then, + anon_sym_SLASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [199105] = 4, - STATE(3280), 1, - aux_sym_comparison_operator_repeat1, + [206725] = 5, + ACTIONS(514), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 26, - anon_sym_import, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216122,7 +225045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -216136,13 +225058,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym__newline, - sym__indent, + ACTIONS(2254), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -216163,55 +225085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [199169] = 3, + [206791] = 5, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - 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_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3297), 28, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216222,39 +225119,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199231] = 12, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3617), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, 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, @@ -216265,22 +225144,33 @@ 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(2518), 23, + [206857] = 5, + ACTIONS(3699), 1, + anon_sym_in, + ACTIONS(3723), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, - anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, + anon_sym_STAR, + anon_sym_type, + anon_sym_mixin, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -216290,30 +225180,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199311] = 10, - ACTIONS(3605), 1, + ACTIONS(201), 26, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3607), 1, anon_sym_LBRACK, - ACTIONS(3611), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 21, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -216329,11 +225205,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(2518), 25, + [206923] = 5, + ACTIONS(514), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_lambda, @@ -216356,30 +225241,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199387] = 10, - ACTIONS(3605), 1, + ACTIONS(2254), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3607), 1, anon_sym_LBRACK, - ACTIONS(3611), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_QMARK_DOT, - ACTIONS(3627), 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, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + sym_float, + [206989] = 4, + STATE(2696), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 21, + ACTIONS(2220), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -216395,13 +225299,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(2518), 25, + ACTIONS(2222), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216422,22 +225328,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199463] = 3, + [207053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 26, - sym__newline, - sym__indent, + ACTIONS(2791), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -216453,13 +225359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 27, - anon_sym_import, + ACTIONS(2793), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216467,10 +225373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216481,22 +225387,44 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199525] = 6, - ACTIONS(3629), 1, - anon_sym_DOT, - ACTIONS(3632), 1, - anon_sym_QMARK_DOT, + [207115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2511), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 24, + ACTIONS(3035), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + 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_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, + ACTIONS(3033), 27, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216507,6 +225435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216517,17 +225446,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2545), 25, + [207177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_PLUS, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -216543,17 +225477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [199593] = 6, - ACTIONS(3635), 1, + ACTIONS(3037), 27, anon_sym_DOT, - ACTIONS(3638), 1, - anon_sym_QMARK_DOT, - STATE(2512), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2550), 25, anon_sym_as, anon_sym_if, anon_sym_for, @@ -216569,6 +225494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216579,48 +225505,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2555), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [199661] = 3, + [207239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 26, - sym__newline, - sym__indent, + ACTIONS(2797), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -216636,13 +225536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3297), 27, - anon_sym_import, + ACTIONS(2799), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216650,10 +225550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216664,51 +225564,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199723] = 4, - ACTIONS(3568), 1, - anon_sym_EQ, + [207301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 26, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2562), 26, - sym__newline, - sym__indent, + ACTIONS(3045), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -216724,20 +225595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [199787] = 5, - ACTIONS(3641), 1, - anon_sym_EQ, - STATE(2522), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2560), 25, + ACTIONS(3043), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216748,6 +225612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216758,18 +225623,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 26, + [207363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2809), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -216785,22 +225654,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [199853] = 3, + ACTIONS(2811), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_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, + [207425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 26, - sym__newline, - sym__indent, + ACTIONS(2813), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -216816,13 +225713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3293), 27, - anon_sym_import, + ACTIONS(2815), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216830,10 +225727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216844,13 +225741,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199915] = 3, + [207487] = 4, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 26, - sym__newline, - sym__indent, + ACTIONS(2768), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -216858,8 +225755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -216875,13 +225772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, - anon_sym_import, + ACTIONS(2770), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -216889,10 +225786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -216903,89 +225801,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [199977] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3605), 1, + [207551] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3607), 1, anon_sym_LBRACK, - ACTIONS(3611), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_QMARK_DOT, - ACTIONS(3619), 1, - anon_sym_PIPE, - ACTIONS(3621), 1, - anon_sym_AMP, - ACTIONS(3623), 1, - anon_sym_CARET, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - ACTIONS(3617), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3053), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 8, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 13, anon_sym_for, 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_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, - [200077] = 3, + [207613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 26, + ACTIONS(3075), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -217012,7 +225891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3253), 27, + ACTIONS(3073), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -217040,22 +225919,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200139] = 3, + [207675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 25, + ACTIONS(3079), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -217070,10 +225950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3303), 28, + ACTIONS(3077), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -217087,8 +225968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217099,22 +225978,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200201] = 3, + [207737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 26, - sym__newline, - sym__indent, + ACTIONS(2821), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -217130,13 +226009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3289), 27, - anon_sym_import, + ACTIONS(2823), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217144,10 +226023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217158,19 +226037,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200263] = 4, - STATE(2591), 1, - aux_sym_union_type_repeat1, + [207799] = 5, + ACTIONS(514), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 26, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217191,7 +226071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2568), 26, + ACTIONS(2238), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -217218,22 +226098,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [200327] = 3, + [207865] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 26, - sym__newline, - sym__indent, + ACTIONS(197), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, + 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_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(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -217249,12 +226159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 27, - anon_sym_import, + [207931] = 7, + ACTIONS(514), 1, + anon_sym_if, + ACTIONS(3725), 1, + anon_sym_and, + ACTIONS(3727), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -217263,9 +226184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -217277,22 +226196,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200389] = 3, + ACTIONS(2542), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [208001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 26, - sym__newline, - sym__indent, + ACTIONS(3083), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -217308,13 +226253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 27, - anon_sym_import, + ACTIONS(3081), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217322,10 +226267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217336,13 +226281,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200451] = 3, + [208063] = 4, + ACTIONS(3729), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 26, - sym__newline, - sym__indent, + ACTIONS(1973), 23, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -217350,9 +226295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -217367,13 +226311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3277), 27, - anon_sym_import, + ACTIONS(1975), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217381,10 +226325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217395,22 +226341,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200513] = 3, + [208127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 25, + ACTIONS(3089), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -217425,10 +226372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 28, + ACTIONS(3087), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -217442,8 +226390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217454,18 +226400,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200575] = 4, - ACTIONS(3576), 1, - anon_sym_EQ, + [208189] = 4, + STATE(2684), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 26, + ACTIONS(2298), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217476,7 +226423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217487,18 +226433,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 26, + ACTIONS(2300), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -217514,41 +226460,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [200639] = 9, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3601), 1, - anon_sym_and, - ACTIONS(3603), 1, - anon_sym_PLUS, + [208253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, + ACTIONS(3093), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -217556,36 +226484,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_QMARK_LBRACK, - ACTIONS(2449), 17, + sym_float, + ACTIONS(3091), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, 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_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, - [200713] = 3, + [208315] = 5, + ACTIONS(3731), 1, + anon_sym_PIPE, + STATE(2637), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 26, - sym__newline, - sym__indent, + ACTIONS(1954), 23, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -217593,12 +226535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -217610,13 +226551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3273), 27, - anon_sym_import, + ACTIONS(1956), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217624,10 +226565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217638,18 +226580,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [200775] = 4, - STATE(2549), 1, - aux_sym_comparison_operator_repeat1, + [208381] = 5, + ACTIONS(514), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 26, - anon_sym_import, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217657,7 +226601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -217671,13 +226614,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 26, - sym__newline, - sym__indent, + ACTIONS(133), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -217698,46 +226641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [200839] = 4, - STATE(2549), 1, - aux_sym_comparison_operator_repeat1, + [208447] = 4, + STATE(2696), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 26, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2859), 26, - sym__newline, - sym__indent, + ACTIONS(2154), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -217758,19 +226674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [200903] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2511), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2570), 25, + ACTIONS(2156), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217791,78 +226701,98 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2572), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [208511] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3734), 1, anon_sym_LPAREN, + ACTIONS(3736), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3740), 1, anon_sym_STAR_STAR, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, + ACTIONS(3748), 1, + anon_sym_PIPE, + ACTIONS(3750), 1, + anon_sym_AMP, + ACTIONS(3752), 1, + anon_sym_CARET, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3746), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3754), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2458), 8, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - [200967] = 4, - STATE(2549), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 26, - anon_sym_import, + ACTIONS(2386), 19, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + 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_not, anon_sym_and, anon_sym_or, - 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(2859), 26, - sym__newline, - sym__indent, + [208607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -217878,18 +226808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [201031] = 4, - STATE(2549), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 26, - anon_sym_import, + ACTIONS(3095), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217897,10 +226822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -217911,18 +226836,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 26, - sym__newline, - sym__indent, + [208669] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3101), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -217938,33 +226867,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [201095] = 10, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - STATE(2875), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3099), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_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, + [208731] = 4, + ACTIONS(3758), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 21, + ACTIONS(2033), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, + 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, @@ -217977,13 +226925,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(2574), 25, + ACTIONS(2035), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -217994,6 +226944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -218004,30 +226955,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [201171] = 5, - ACTIONS(3597), 1, - anon_sym_in, - ACTIONS(3643), 1, - anon_sym_not, + [208795] = 5, + ACTIONS(514), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -218038,18 +226989,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(2402), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -218065,22 +227016,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [201237] = 3, + [208861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 26, - sym__newline, - sym__indent, + ACTIONS(2825), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -218096,13 +227047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3253), 27, - anon_sym_import, + ACTIONS(2827), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -218110,10 +227061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -218124,96 +227075,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [201299] = 21, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_LBRACK, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_QMARK_DOT, - ACTIONS(3619), 1, - anon_sym_PIPE, - ACTIONS(3621), 1, - anon_sym_AMP, - ACTIONS(3623), 1, - anon_sym_CARET, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3647), 1, - anon_sym_not, - ACTIONS(3651), 1, - anon_sym_is, - STATE(2875), 1, - sym_argument_list, - STATE(3329), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3617), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3645), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3649), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2365), 18, - anon_sym_DOT, - anon_sym_as, + [208923] = 6, + ACTIONS(514), 1, anon_sym_if, - anon_sym_for, - 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, - [201397] = 4, - STATE(2473), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3727), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 26, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -218234,7 +227111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2477), 26, + ACTIONS(2258), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -218244,7 +227121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -218261,40 +227137,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [201461] = 9, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3653), 1, - anon_sym_and, - ACTIONS(3655), 1, - anon_sym_PLUS, + [208991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 11, + ACTIONS(3109), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -218302,35 +227161,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_QMARK_LBRACK, - ACTIONS(2449), 18, + sym_float, + ACTIONS(3107), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, 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_not, + anon_sym_and, anon_sym_or, - anon_sym_then, + 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, - [201535] = 3, + [209053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 26, + ACTIONS(2007), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -218357,7 +227227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3165), 27, + ACTIONS(2009), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -218385,22 +227255,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [201597] = 3, + [209115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 25, + ACTIONS(3117), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -218415,10 +227286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3281), 28, + ACTIONS(3115), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -218432,8 +227304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -218444,52 +227314,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [201659] = 5, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3659), 1, - anon_sym_not, + [209177] = 4, + ACTIONS(3681), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 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_STAR, - anon_sym_type, - anon_sym_and, - anon_sym_or, - 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(221), 26, - sym__newline, - sym__indent, + ACTIONS(2554), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -218505,26 +227347,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [201725] = 9, - ACTIONS(450), 1, + ACTIONS(2556), 26, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3601), 1, + anon_sym_for, + 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_not, anon_sym_and, - ACTIONS(3603), 1, + 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, + [209241] = 5, + ACTIONS(514), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, + STATE(2716), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(2264), 24, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 20, anon_sym_for, anon_sym_else, anon_sym_lambda, @@ -218535,6 +227396,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, @@ -218545,7 +227408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2469), 24, + ACTIONS(2266), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -218554,6 +227417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -218570,131 +227435,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [201799] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3079), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [209307] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3734), 1, anon_sym_LPAREN, + ACTIONS(3736), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3740), 1, anon_sym_STAR_STAR, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, anon_sym_PIPE, + ACTIONS(3750), 1, anon_sym_AMP, + ACTIONS(3752), 1, anon_sym_CARET, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3754), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3077), 27, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 8, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 13, anon_sym_for, 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_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, - [201861] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3149), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [209407] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3734), 1, anon_sym_LPAREN, + ACTIONS(3736), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3740), 1, anon_sym_STAR_STAR, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, anon_sym_PIPE, + ACTIONS(3750), 1, anon_sym_AMP, + ACTIONS(3752), 1, anon_sym_CARET, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3754), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(3151), 27, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 8, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 13, anon_sym_for, 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_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, - [201923] = 3, + [209507] = 4, + ACTIONS(3760), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3137), 26, - sym__newline, - sym__indent, + ACTIONS(2154), 23, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -218702,9 +227605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -218719,13 +227621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3139), 27, - anon_sym_import, + ACTIONS(2156), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -218733,10 +227635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -218747,11 +227651,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [201985] = 3, + [209571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 26, + ACTIONS(3123), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -218778,7 +227682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3049), 27, + ACTIONS(3121), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -218806,118 +227710,97 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202047] = 8, - ACTIONS(3664), 1, + [209633] = 21, + ACTIONS(3734), 1, + anon_sym_LPAREN, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3740), 1, + anon_sym_STAR_STAR, + ACTIONS(3742), 1, + anon_sym_QMARK_DOT, + ACTIONS(3748), 1, + anon_sym_PIPE, + ACTIONS(3750), 1, + anon_sym_AMP, + ACTIONS(3752), 1, + anon_sym_CARET, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3764), 1, anon_sym_not, - ACTIONS(3670), 1, + ACTIONS(3768), 1, anon_sym_is, - STATE(2549), 1, + STATE(2862), 1, + sym_argument_list, + STATE(3372), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3661), 3, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3754), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3667), 4, + ACTIONS(3766), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2861), 21, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_type, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2863), 22, - sym__newline, - sym__indent, + ACTIONS(2356), 8, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - 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, - [202119] = 9, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3653), 1, - anon_sym_and, - ACTIONS(3655), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(2310), 18, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 21, + anon_sym_if, + anon_sym_for, 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_not, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2469), 23, + [209731] = 4, + STATE(2699), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH, @@ -218935,24 +227818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [202193] = 7, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3601), 1, - anon_sym_and, - ACTIONS(3603), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 23, + ACTIONS(2194), 28, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -218961,7 +227833,10 @@ 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_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -218972,51 +227847,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [202263] = 7, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3653), 1, - anon_sym_and, - ACTIONS(3655), 1, - anon_sym_PLUS, + [209795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 24, + ACTIONS(3127), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -219036,9 +227878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 24, + ACTIONS(3125), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219049,8 +227893,9 @@ 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_then, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219061,101 +227906,97 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202333] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3673), 1, + [209857] = 17, + ACTIONS(3734), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3740), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3689), 1, + ACTIONS(3748), 1, anon_sym_PIPE, - ACTIONS(3691), 1, + ACTIONS(3750), 1, anon_sym_AMP, - ACTIONS(3693), 1, + ACTIONS(3752), 1, anon_sym_CARET, - ACTIONS(3697), 1, + ACTIONS(3756), 1, anon_sym_QMARK_LBRACK, - STATE(2520), 1, + STATE(2862), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, + ACTIONS(3738), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3687), 2, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, + ACTIONS(3754), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2458), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + sym_float, + ACTIONS(2386), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 7, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 14, + anon_sym_for, 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_then, + 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, - [202435] = 3, + [209947] = 4, + STATE(2696), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3055), 26, + ACTIONS(1954), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -219171,7 +228012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3053), 27, + ACTIONS(1956), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -219188,7 +228029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219199,18 +228039,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202497] = 3, + [210011] = 4, + STATE(2699), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 26, + ACTIONS(2220), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -219230,7 +228070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3061), 27, + ACTIONS(2222), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -219248,6 +228088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219258,11 +228099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202559] = 3, + [210075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3067), 26, + ACTIONS(3045), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -219289,7 +228130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3065), 27, + ACTIONS(3043), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -219317,22 +228158,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202621] = 3, + [210137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 25, + ACTIONS(3105), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -219347,10 +228189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3259), 28, + ACTIONS(3103), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219364,42 +228207,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - 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, - [202683] = 5, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 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_STAR, - anon_sym_type, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219410,51 +228217,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [202749] = 4, - ACTIONS(3701), 1, - anon_sym_DASH_GT, + [210199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 25, + ACTIONS(3143), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -219469,7 +228248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 27, + ACTIONS(3141), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -219486,7 +228265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219497,28 +228276,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202813] = 10, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3679), 1, - anon_sym_STAR_STAR, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, + [210261] = 4, + STATE(2611), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 19, + ACTIONS(2768), 24, sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH, @@ -219534,11 +228305,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(2574), 27, + ACTIONS(2770), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219563,11 +228336,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202889] = 3, + [210325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2900), 26, + ACTIONS(3153), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -219594,7 +228367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2898), 27, + ACTIONS(3151), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -219622,22 +228395,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [202951] = 3, + [210387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2936), 25, + ACTIONS(3149), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -219652,10 +228426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2934), 28, + ACTIONS(3147), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219669,8 +228444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219681,22 +228454,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203013] = 3, + [210449] = 4, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 25, + ACTIONS(2768), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -219711,10 +228485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2938), 28, + ACTIONS(2770), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219729,7 +228504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219740,43 +228514,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203075] = 3, + [210513] = 7, + ACTIONS(514), 1, + anon_sym_if, + ACTIONS(3725), 1, + anon_sym_and, + ACTIONS(3727), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - ACTIONS(3165), 27, - anon_sym_import, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -219785,9 +228539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -219799,22 +228551,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203137] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2944), 25, + ACTIONS(2244), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -219829,51 +228577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2942), 28, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - 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, - [203199] = 3, + [210583] = 4, + ACTIONS(3770), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 25, + ACTIONS(1973), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -219888,10 +228609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 28, + ACTIONS(1975), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219904,8 +228626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, @@ -219917,28 +228637,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203261] = 10, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3679), 1, - anon_sym_STAR_STAR, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [210647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 19, + ACTIONS(2817), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + 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_PLUS_EQ, anon_sym_DASH, @@ -219954,11 +228666,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(2518), 27, + ACTIONS(2819), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -219972,7 +228686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -219983,33 +228696,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203337] = 10, - ACTIONS(3673), 1, + [210709] = 13, + ACTIONS(3734), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3740), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - ACTIONS(3697), 1, + ACTIONS(3756), 1, anon_sym_QMARK_LBRACK, - STATE(2520), 1, + STATE(2862), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 19, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -220021,25 +228741,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 27, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220049,43 +228765,57 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203413] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3135), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [210791] = 14, + ACTIONS(3734), 1, anon_sym_LPAREN, + ACTIONS(3736), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3740), 1, anon_sym_STAR_STAR, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3746), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(3754), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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(3133), 27, - anon_sym_import, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -220093,12 +228823,9 @@ 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220108,54 +228835,59 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203475] = 12, - ACTIONS(3673), 1, + [210875] = 15, + ACTIONS(3734), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3740), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - ACTIONS(3697), 1, + ACTIONS(3752), 1, + anon_sym_CARET, + ACTIONS(3756), 1, anon_sym_QMARK_LBRACK, - STATE(2520), 1, + STATE(2862), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, + ACTIONS(3738), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3687), 2, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, + ACTIONS(3754), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - 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(2518), 25, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -220165,8 +228897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220176,47 +228906,47 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203555] = 17, - ACTIONS(3673), 1, + [210961] = 16, + ACTIONS(3734), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3740), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3691), 1, + ACTIONS(3750), 1, anon_sym_AMP, - ACTIONS(3693), 1, + ACTIONS(3752), 1, anon_sym_CARET, - ACTIONS(3697), 1, + ACTIONS(3756), 1, anon_sym_QMARK_LBRACK, - STATE(2520), 1, + STATE(2862), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, + ACTIONS(3738), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3687), 2, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, + ACTIONS(3754), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 12, + ACTIONS(1940), 13, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_PIPE, anon_sym_TILDE, anon_sym_LT_EQ, @@ -220224,12 +228954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 24, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -220239,7 +228969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220249,59 +228978,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203645] = 16, - ACTIONS(3673), 1, + [211049] = 12, + ACTIONS(3734), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3740), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3693), 1, - anon_sym_CARET, - ACTIONS(3697), 1, + ACTIONS(3756), 1, anon_sym_QMARK_LBRACK, - STATE(2520), 1, + STATE(2862), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, + ACTIONS(3738), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3687), 2, + ACTIONS(3746), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(1940), 19, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, + 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(2518), 24, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -220311,7 +229037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220321,56 +229046,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203733] = 15, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3679), 1, - anon_sym_STAR_STAR, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [211129] = 4, + STATE(2699), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3687), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(1954), 24, sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, 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, - ACTIONS(2518), 24, + ACTIONS(1956), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -220379,10 +229090,13 @@ 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_PLUS, anon_sym_then, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220392,40 +229106,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203819] = 14, - ACTIONS(3673), 1, + [211193] = 10, + ACTIONS(3734), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3736), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3740), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3697), 1, + ACTIONS(3756), 1, anon_sym_QMARK_LBRACK, - STATE(2520), 1, + STATE(2862), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3687), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 16, + ACTIONS(1940), 21, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LBRACE, + 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, @@ -220437,22 +229146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 24, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_then, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -220462,22 +229172,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203903] = 3, + [211269] = 10, + ACTIONS(3734), 1, + anon_sym_LPAREN, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3740), 1, + anon_sym_STAR_STAR, + ACTIONS(3742), 1, + anon_sym_QMARK_DOT, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 25, + ACTIONS(1940), 21, sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, - 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, @@ -220490,14 +229211,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(2946), 28, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -220508,9 +229228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -220521,22 +229238,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [203965] = 3, + [211345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 25, + ACTIONS(2803), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -220551,10 +229269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3239), 28, + ACTIONS(2801), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -220568,8 +229287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -220580,22 +229297,54 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204027] = 3, + [211407] = 6, + ACTIONS(3772), 1, + anon_sym_DOT, + ACTIONS(3775), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 25, + STATE(2681), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 24, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(2441), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -220610,55 +229359,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3235), 28, + [211475] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3778), 7, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(197), 12, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, + ACTIONS(3057), 15, + anon_sym_import, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [204089] = 3, + ACTIONS(201), 19, + sym__newline, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + 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_QMARK_LBRACK, + [211541] = 5, + ACTIONS(3780), 1, + anon_sym_PIPE, + STATE(2683), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2896), 26, + ACTIONS(1954), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -220670,7 +229454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2894), 27, + ACTIONS(1956), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -220687,7 +229471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -220698,22 +229481,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204151] = 3, + [211607] = 6, + ACTIONS(3783), 1, + anon_sym_DOT, + ACTIONS(3786), 1, + anon_sym_QMARK_DOT, + STATE(2684), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 25, + ACTIONS(2007), 25, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -220728,10 +229517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2950), 28, - anon_sym_DOT, + ACTIONS(2009), 25, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -220744,9 +229533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -220757,22 +229543,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204213] = 3, + [211675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 25, + ACTIONS(3163), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -220787,10 +229574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3203), 28, + ACTIONS(3165), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -220804,8 +229592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -220816,22 +229602,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204275] = 3, + [211737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 26, - sym__newline, - sym__indent, + ACTIONS(3167), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -220847,13 +229633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3077), 27, - anon_sym_import, + ACTIONS(3169), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -220861,10 +229647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -220875,44 +229661,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204337] = 3, + [211799] = 8, + ACTIONS(3409), 1, + anon_sym_QMARK_COLON, + ACTIONS(3789), 1, + sym_isMutableFlag, + STATE(2625), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3043), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - ACTIONS(3041), 27, - anon_sym_import, + ACTIONS(1536), 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, @@ -220920,7 +229686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -220934,18 +229699,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204399] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3051), 26, - sym__newline, - sym__indent, + ACTIONS(1538), 25, sym_string_start, - anon_sym_COLON, + 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, @@ -220965,12 +229725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3049), 27, - anon_sym_import, + [211871] = 5, + ACTIONS(3791), 1, + anon_sym_EQ, + STATE(2696), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2556), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -220979,7 +229746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -220993,17 +229759,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204461] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3055), 26, - sym__newline, - sym__indent, + ACTIONS(2554), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -221024,50 +229786,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3053), 27, - anon_sym_import, + [211937] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3734), 1, + anon_sym_LPAREN, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3740), 1, + anon_sym_STAR_STAR, + ACTIONS(3742), 1, + anon_sym_QMARK_DOT, + ACTIONS(3748), 1, + anon_sym_PIPE, + ACTIONS(3750), 1, + anon_sym_AMP, + ACTIONS(3752), 1, + anon_sym_CARET, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3754), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 8, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 13, + anon_sym_for, 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [204523] = 3, + [212037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 26, - sym__newline, - sym__indent, + ACTIONS(3171), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -221083,13 +229895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3061), 27, - anon_sym_import, + ACTIONS(3173), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221097,10 +229909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221111,22 +229923,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204585] = 3, + [212099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3067), 26, - sym__newline, - sym__indent, + ACTIONS(3175), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -221142,13 +229954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3065), 27, - anon_sym_import, + ACTIONS(3177), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221156,10 +229968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221170,22 +229982,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204647] = 3, + [212161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 26, - sym__newline, - sym__indent, + ACTIONS(3179), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -221201,13 +230013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3143), 27, - anon_sym_import, + ACTIONS(3181), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221215,10 +230027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221229,22 +230041,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204709] = 3, + [212223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 25, + ACTIONS(3183), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -221259,10 +230072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 28, + ACTIONS(3185), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -221276,8 +230090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221288,22 +230100,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204771] = 3, + [212285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 26, - sym__newline, - sym__indent, + ACTIONS(3187), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -221319,13 +230131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3163), 27, - anon_sym_import, + ACTIONS(3189), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221333,10 +230145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221347,119 +230159,73 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204833] = 22, - ACTIONS(3673), 1, + [212347] = 4, + STATE(2699), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2758), 24, + sym_string_start, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3681), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - ACTIONS(3689), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3693), 1, anon_sym_CARET, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3705), 1, - anon_sym_not, - ACTIONS(3709), 1, - anon_sym_is, - STATE(2520), 1, - sym_argument_list, - STATE(3299), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3677), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3687), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3703), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3707), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 19, + ACTIONS(2760), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_then, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [204933] = 5, - ACTIONS(3711), 1, - anon_sym_PIPE, - STATE(2591), 1, + [212411] = 4, + STATE(2683), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(2505), 26, + ACTIONS(2390), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -221486,17 +230252,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [204999] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3149), 26, - sym__newline, - sym__indent, + ACTIONS(2392), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -221517,13 +230279,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3151), 27, - anon_sym_import, + [212475] = 8, + ACTIONS(3409), 1, + anon_sym_QMARK_COLON, + ACTIONS(3789), 1, + sym_isMutableFlag, + STATE(2625), 1, + sym_dict_expr, + STATE(3227), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 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, @@ -221531,7 +230304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -221545,171 +230317,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205061] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3673), 1, + ACTIONS(1538), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(3681), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, anon_sym_PLUS, - ACTIONS(3685), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3689), 1, - anon_sym_PIPE, - ACTIONS(3691), 1, - anon_sym_AMP, - ACTIONS(3693), 1, - anon_sym_CARET, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3677), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3687), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 7, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 14, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_then, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [205163] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3679), 1, - anon_sym_STAR_STAR, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3689), 1, anon_sym_PIPE, - ACTIONS(3691), 1, anon_sym_AMP, - ACTIONS(3693), 1, anon_sym_CARET, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3677), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3687), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 7, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2489), 14, - anon_sym_else, + [212547] = 5, + ACTIONS(3793), 1, anon_sym_EQ, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_then, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [205265] = 3, + STATE(2699), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3145), 26, - sym__newline, - sym__indent, + ACTIONS(2554), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -221717,8 +230359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -221734,12 +230376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3147), 27, - anon_sym_import, + ACTIONS(2556), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -221748,10 +230389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221762,22 +230404,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205327] = 3, + [212613] = 4, + STATE(2637), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 25, + ACTIONS(2392), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -221792,10 +230435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 28, + ACTIONS(2390), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -221810,7 +230454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221821,23 +230464,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205389] = 3, + [212677] = 4, + ACTIONS(3795), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3125), 26, - sym__newline, - sym__indent, + ACTIONS(2154), 25, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -221852,13 +230496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3127), 27, - anon_sym_import, + ACTIONS(2156), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221866,10 +230510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221880,22 +230524,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205451] = 3, + [212741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3109), 26, - sym__newline, - sym__indent, + ACTIONS(2778), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -221911,13 +230555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3111), 27, - anon_sym_import, + ACTIONS(2776), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221925,10 +230569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221939,22 +230583,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205513] = 3, + [212803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 26, - sym__newline, - sym__indent, + ACTIONS(3191), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -221970,13 +230614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3097), 27, - anon_sym_import, + ACTIONS(3193), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -221984,10 +230628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -221998,11 +230642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205575] = 3, + [212865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 26, + ACTIONS(3195), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -222029,7 +230673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3143), 27, + ACTIONS(3197), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -222057,13 +230701,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205637] = 3, + [212927] = 4, + STATE(2668), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 26, - sym__newline, - sym__indent, + ACTIONS(201), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -222071,8 +230715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -222088,13 +230732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3075), 27, - anon_sym_import, + ACTIONS(197), 28, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222102,10 +230746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222116,22 +230761,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205699] = 3, + [212991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3069), 26, - sym__newline, - sym__indent, + ACTIONS(3199), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -222147,13 +230792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3071), 27, - anon_sym_import, + ACTIONS(3201), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222161,10 +230806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222175,22 +230820,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205761] = 3, + [213053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 26, - sym__newline, - sym__indent, + ACTIONS(3203), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -222206,13 +230851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 27, - anon_sym_import, + ACTIONS(3205), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222220,10 +230865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222234,22 +230879,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205823] = 3, + [213115] = 5, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3797), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 26, - sym__newline, - sym__indent, + ACTIONS(197), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, + 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_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(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -222265,22 +230940,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 27, + [213181] = 5, + ACTIONS(3699), 1, + anon_sym_in, + ACTIONS(3799), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, 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_not, + anon_sym_mixin, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -222293,16 +230974,9 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [205885] = 5, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 24, + ACTIONS(201), 26, + sym__newline, + sym__indent, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -222310,8 +230984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -222327,44 +231001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 26, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [205951] = 5, + [213247] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3714), 5, + ACTIONS(3778), 5, sym_string_start, anon_sym_LBRACE, anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(3169), 12, + ACTIONS(3057), 12, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -222377,7 +231024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(217), 15, + ACTIONS(197), 15, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -222393,7 +231040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(221), 21, + ACTIONS(201), 21, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, @@ -222415,21 +231062,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, - [206017] = 5, - ACTIONS(482), 1, - anon_sym_if, + [213313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 24, + ACTIONS(3203), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -222449,9 +231093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 26, + ACTIONS(3205), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -222465,7 +231111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222476,21 +231121,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206083] = 5, - ACTIONS(482), 1, - anon_sym_if, + [213375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 24, + ACTIONS(3207), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -222510,9 +231152,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 26, + ACTIONS(3209), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -222526,7 +231170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222537,45 +231180,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206149] = 5, - ACTIONS(482), 1, - anon_sym_if, + [213437] = 8, + ACTIONS(3409), 1, + anon_sym_QMARK_COLON, + ACTIONS(3789), 1, + sym_isMutableFlag, + STATE(2625), 1, + sym_dict_expr, + STATE(3464), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 24, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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, - ACTIONS(2461), 26, + ACTIONS(1536), 23, anon_sym_DOT, anon_sym_as, - anon_sym_else, - anon_sym_EQ, + anon_sym_if, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222586,8 +231208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222598,25 +231218,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206215] = 5, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 24, + ACTIONS(1538), 25, sym_string_start, - anon_sym_COLON, + 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, @@ -222632,50 +231244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 26, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [206281] = 6, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3655), 1, - anon_sym_PLUS, + [213509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 24, + ACTIONS(2774), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -222695,9 +231275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 25, + ACTIONS(2772), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -222710,7 +231292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_then, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222721,24 +231303,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206349] = 7, - ACTIONS(482), 1, + [213571] = 10, + ACTIONS(514), 1, anon_sym_if, - ACTIONS(3653), 1, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(576), 1, + anon_sym_QMARK_DOT, + ACTIONS(3725), 1, anon_sym_and, - ACTIONS(3655), 1, + ACTIONS(3727), 1, anon_sym_PLUS, + ACTIONS(3801), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2716), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2479), 24, - anon_sym_DOT, + ACTIONS(2059), 21, anon_sym_as, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222747,8 +231334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_or, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222759,16 +231344,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 24, + ACTIONS(2057), 24, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -222784,26 +231369,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [206419] = 5, - ACTIONS(482), 1, + [213647] = 9, + ACTIONS(514), 1, anon_sym_if, + ACTIONS(3725), 1, + anon_sym_and, + ACTIONS(3727), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2716), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 24, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -222811,18 +231411,42 @@ 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(2453), 26, + ACTIONS(2242), 17, anon_sym_DOT, anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [213721] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2681), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222833,8 +231457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222845,22 +231467,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206485] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 25, + ACTIONS(2290), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -222875,51 +231494,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 28, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - 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, - [206547] = 3, + [213785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3057), 26, - sym__newline, - sym__indent, + ACTIONS(3211), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -222935,13 +231525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3059), 27, - anon_sym_import, + ACTIONS(3213), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -222949,10 +231539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -222963,23 +231553,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206609] = 6, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3655), 1, - anon_sym_PLUS, + [213847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 24, + ACTIONS(2807), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -222999,9 +231584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 25, + ACTIONS(2805), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -223014,7 +231601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_then, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223025,88 +231612,100 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [206677] = 6, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(3655), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 24, - sym_string_start, - anon_sym_COLON, + [213909] = 21, + ACTIONS(3734), 1, anon_sym_LPAREN, + ACTIONS(3736), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3740), 1, anon_sym_STAR_STAR, + ACTIONS(3742), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, anon_sym_PIPE, + ACTIONS(3750), 1, anon_sym_AMP, + ACTIONS(3752), 1, anon_sym_CARET, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3764), 1, + anon_sym_not, + ACTIONS(3768), 1, + anon_sym_is, + STATE(2779), 1, + aux_sym_comparison_operator_repeat1, + STATE(2862), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3746), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3754), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3766), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 8, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(2445), 25, + ACTIONS(2310), 18, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [206745] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, + [214007] = 4, + STATE(3329), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 25, + ACTIONS(201), 24, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -223121,47 +231720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 26, + ACTIONS(197), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_EQ, - 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_PLUS, - anon_sym_then, - 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, - [206811] = 5, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 24, - anon_sym_DOT, - anon_sym_as, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223172,6 +231737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223182,18 +231749,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2439), 26, + [214071] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3249), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -223209,20 +231780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [206877] = 5, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 24, + ACTIONS(3251), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223233,6 +231797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223243,16 +231808,30 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(189), 26, + [214133] = 10, + ACTIONS(3734), 1, + anon_sym_LPAREN, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3740), 1, + anon_sym_STAR_STAR, + ACTIONS(3742), 1, + anon_sym_QMARK_DOT, + ACTIONS(3756), 1, + anon_sym_QMARK_LBRACK, + STATE(2862), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2069), 21, sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -223268,32 +231847,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - [206943] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(2067), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223304,7 +231874,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + [214209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3245), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -223331,20 +231905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [207009] = 5, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 24, + ACTIONS(3247), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223355,6 +231922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223365,38 +231933,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2463), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, - [207075] = 3, + [214271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3191), 26, + ACTIONS(3215), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -223423,7 +231964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3193), 27, + ACTIONS(3217), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -223451,18 +231992,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207137] = 5, - ACTIONS(450), 1, + [214333] = 9, + ACTIONS(514), 1, anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3725), 1, + anon_sym_and, + ACTIONS(3727), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, + STATE(2716), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 24, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, + anon_sym_or, + ACTIONS(2276), 20, anon_sym_for, anon_sym_else, anon_sym_lambda, @@ -223473,8 +232022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223485,7 +232032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 26, + ACTIONS(2278), 24, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -223494,8 +232041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -223512,41 +232057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [207203] = 5, - ACTIONS(450), 1, - anon_sym_if, + [214407] = 4, + STATE(2635), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2459), 26, + ACTIONS(2598), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -223573,22 +232090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [207269] = 6, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3603), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 24, + ACTIONS(2600), 26, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223609,17 +232117,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2455), 25, + [214471] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3241), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -223635,20 +232148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [207337] = 5, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 24, + ACTIONS(3243), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223659,6 +232165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223669,18 +232176,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2451), 26, + [214533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -223696,22 +232207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [207403] = 6, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3603), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 24, + ACTIONS(3239), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223722,6 +232224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223732,17 +232235,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 25, + [214595] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -223758,22 +232266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [207471] = 6, - ACTIONS(450), 1, - anon_sym_if, - ACTIONS(3603), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 24, + ACTIONS(3235), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223784,6 +232283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223794,48 +232294,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2443), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [207539] = 3, + [214657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3113), 26, - sym__newline, - sym__indent, + ACTIONS(3229), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -223851,13 +232325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3115), 27, - anon_sym_import, + ACTIONS(3231), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223865,10 +232339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223879,22 +232353,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207601] = 3, + [214719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 26, - sym__newline, - sym__indent, + ACTIONS(3225), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, 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, @@ -223910,13 +232384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 27, - anon_sym_import, + ACTIONS(3227), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -223924,10 +232398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -223938,11 +232412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207663] = 3, + [214781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 26, + ACTIONS(3219), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -223969,7 +232443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3189), 27, + ACTIONS(3221), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -223997,11 +232471,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207725] = 3, + [214843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 26, + ACTIONS(3215), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -224028,7 +232502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3185), 27, + ACTIONS(3217), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -224056,44 +232530,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207787] = 3, + [214905] = 6, + ACTIONS(514), 1, + anon_sym_if, + ACTIONS(3727), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3179), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_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, - ACTIONS(3181), 27, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -224104,7 +232556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -224115,22 +232566,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207849] = 3, + ACTIONS(2244), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [214973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 26, + ACTIONS(2813), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -224146,7 +232623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3177), 27, + ACTIONS(2815), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -224163,7 +232640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -224174,22 +232650,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207911] = 3, + [215034] = 4, + STATE(2737), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 26, + ACTIONS(197), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -224205,13 +232709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 27, + [215097] = 4, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -224222,7 +232731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -224233,22 +232741,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [207973] = 3, + ACTIONS(2768), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, + [215160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 26, + ACTIONS(2797), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -224264,7 +232799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3163), 27, + ACTIONS(2799), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -224281,7 +232816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -224292,23 +232826,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208035] = 3, - ACTIONS(3), 2, + [215221] = 4, + STATE(2793), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3157), 26, + ACTIONS(2392), 2, sym_string_start, + anon_sym_LF, + ACTIONS(2390), 49, + 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_EQ, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -224317,19 +232870,33 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(3159), 27, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215284] = 4, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -224340,7 +232907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -224351,17 +232917,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208097] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3129), 26, - sym__newline, - sym__indent, + ACTIONS(2768), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -224382,12 +232944,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3131), 27, - anon_sym_import, + [215347] = 11, + ACTIONS(2600), 1, + anon_sym_EQ, + ACTIONS(3803), 1, + anon_sym_LBRACE, + ACTIONS(3805), 1, + sym_isMutableFlag, + ACTIONS(3807), 1, + anon_sym_QMARK_COLON, + STATE(4306), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4797), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2598), 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(1536), 14, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 18, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + 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, + [215424] = 4, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -224396,7 +233029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -224410,17 +233042,44 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208159] = 3, + ACTIONS(2768), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, + [215487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 26, - sym__newline, - sym__indent, + ACTIONS(2791), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -224441,13 +233100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3155), 27, - anon_sym_import, + ACTIONS(2793), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -224455,7 +233114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -224469,23 +233127,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208221] = 3, - ACTIONS(3), 2, + [215548] = 5, + ACTIONS(3809), 1, + anon_sym_EQ, + STATE(2739), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3157), 26, - sym__newline, - sym__indent, + ACTIONS(2554), 2, sym_string_start, - anon_sym_COLON, + anon_sym_LF, + ACTIONS(2556), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -224494,47 +233172,87 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(3159), 27, - anon_sym_import, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215613] = 4, + STATE(2747), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2300), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2298), 49, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, + 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, + anon_sym_AMP, + 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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [208283] = 3, + [215676] = 4, + ACTIONS(3793), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 26, - sym__newline, - sym__indent, + ACTIONS(2554), 24, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, @@ -224542,8 +233260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, 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, @@ -224559,12 +233277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3173), 27, - anon_sym_import, + ACTIONS(2556), 27, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -224573,10 +233290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -224587,23 +233305,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208345] = 3, - ACTIONS(3), 2, + [215739] = 5, + STATE(2747), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 26, - sym__newline, - sym__indent, + ACTIONS(2007), 2, sym_string_start, - anon_sym_COLON, + anon_sym_LF, + ACTIONS(3811), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 47, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -224612,62 +233350,118 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(3177), 27, - anon_sym_import, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215804] = 18, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3826), 1, + anon_sym_PIPE, + ACTIONS(3828), 1, + anon_sym_AMP, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2458), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2312), 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(2386), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, anon_sym_else, anon_sym_lambda, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [208407] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, + [215895] = 6, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3836), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, - anon_sym_import, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -224680,17 +233474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(2244), 24, sym__newline, - sym__indent, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -224707,23 +233499,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [208473] = 3, - ACTIONS(3), 2, + [215962] = 4, + STATE(2745), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 26, - sym__newline, - sym__indent, + ACTIONS(2598), 2, sym_string_start, - anon_sym_COLON, + anon_sym_LF, + ACTIONS(2600), 49, + 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_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -224732,18 +233543,32 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(3185), 27, - anon_sym_import, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [216025] = 4, + STATE(2865), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -224752,7 +233577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -224766,17 +233590,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208535] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3187), 26, - sym__newline, - sym__indent, + ACTIONS(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -224797,51 +233617,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3189), 27, - anon_sym_import, + [216088] = 5, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2441), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3838), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2752), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 46, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, + anon_sym_STAR_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, - [208597] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3191), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -224850,18 +233662,34 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(3193), 27, - anon_sym_import, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [216153] = 5, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -224870,7 +233698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -224884,15 +233711,10 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208659] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3179), 26, + ACTIONS(2238), 25, sym__newline, - sym__indent, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -224915,12 +233737,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3181), 27, - anon_sym_import, + [216218] = 17, + ACTIONS(3841), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3849), 1, + anon_sym_QMARK_DOT, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_AMP, + ACTIONS(3859), 1, + anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 11, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -224928,12 +233797,9 @@ 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -224943,18 +233809,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208721] = 4, - ACTIONS(3169), 1, - anon_sym_else, + [216307] = 4, + STATE(3349), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 26, - anon_sym_import, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -224962,7 +233828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, @@ -224976,13 +233841,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym__newline, - sym__indent, + ACTIONS(201), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -225003,18 +233868,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [208785] = 3, - ACTIONS(3), 2, + [216370] = 19, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3826), 1, + anon_sym_PIPE, + ACTIONS(3828), 1, + anon_sym_AMP, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3867), 1, + anon_sym_not, + ACTIONS(3869), 1, + anon_sym_is, + STATE(3168), 1, + sym_argument_list, + STATE(3410), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 26, + ACTIONS(2356), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3865), 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(2310), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_and, + anon_sym_or, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [216463] = 5, + ACTIONS(3871), 1, + anon_sym_in, + ACTIONS(3873), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 24, + sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, @@ -225034,7 +233975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3155), 27, + ACTIONS(197), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -225042,16 +233983,15 @@ static const uint16_t ts_small_parse_table[] = { 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_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225062,103 +234002,95 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208847] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3129), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [216528] = 20, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3814), 1, anon_sym_LPAREN, + ACTIONS(3816), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3820), 1, anon_sym_STAR_STAR, + ACTIONS(3822), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3826), 1, anon_sym_PIPE, + ACTIONS(3828), 1, anon_sym_AMP, + ACTIONS(3830), 1, anon_sym_CARET, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2306), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 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, - ACTIONS(3131), 27, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_and, + anon_sym_or, + ACTIONS(2312), 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(2308), 18, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [208909] = 3, + [216623] = 5, + ACTIONS(586), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_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, - ACTIONS(3131), 27, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -225169,7 +234101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225180,22 +234111,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [208971] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3113), 26, + ACTIONS(2254), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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, @@ -225211,52 +234137,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3115), 27, + [216688] = 6, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(3875), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2244), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 46, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [209033] = 8, - ACTIONS(3315), 1, - anon_sym_QMARK_COLON, - ACTIONS(3595), 1, - sym_isMutableFlag, - STATE(2433), 1, - sym_dict_expr, - STATE(3185), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [216755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 23, + ACTIONS(2772), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -225277,13 +234229,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 25, + ACTIONS(2774), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -225303,23 +234256,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [209105] = 3, + [216816] = 4, + ACTIONS(3877), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 26, + ACTIONS(2154), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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, @@ -225334,7 +234287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3285), 27, + ACTIONS(2156), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -225351,7 +234304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225362,22 +234315,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209167] = 3, + [216879] = 5, + ACTIONS(586), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 26, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(2254), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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, @@ -225393,7 +234375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2881), 27, + [216944] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2776), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -225410,7 +234396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225421,22 +234406,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209229] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3057), 26, + ACTIONS(2778), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -225452,13 +234433,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3059), 27, + [217005] = 9, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3836), 1, + anon_sym_PLUS, + ACTIONS(3879), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_or, + ACTIONS(2276), 20, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -225467,9 +234463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225480,22 +234473,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209291] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3045), 26, + ACTIONS(2278), 23, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -225511,54 +234497,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 27, + [217078] = 20, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3826), 1, + anon_sym_PIPE, + ACTIONS(3828), 1, + anon_sym_AMP, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2394), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_and, + anon_sym_or, + ACTIONS(2312), 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(2396), 18, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [209353] = 3, + [217173] = 5, + ACTIONS(3881), 1, + anon_sym_PIPE, + STATE(2767), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 26, + ACTIONS(1954), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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, @@ -225570,7 +234605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3047), 27, + ACTIONS(1956), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -225587,7 +234622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225598,82 +234632,97 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209415] = 4, - STATE(2531), 1, + [217238] = 20, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3826), 1, + anon_sym_PIPE, + ACTIONS(3828), 1, + anon_sym_AMP, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 26, - anon_sym_import, + ACTIONS(2382), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_lambda, + anon_sym_and, + anon_sym_or, + ACTIONS(2312), 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(2384), 18, + anon_sym_COMMA, + anon_sym_else, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [209479] = 3, + [217333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3069), 26, + ACTIONS(2817), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -225689,7 +234738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3071), 27, + ACTIONS(2819), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -225706,7 +234755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225717,23 +234765,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209541] = 3, - ACTIONS(3), 2, + [217394] = 4, + STATE(2739), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 26, + ACTIONS(1954), 2, sym_string_start, + anon_sym_LF, + ACTIONS(1956), 49, + 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_EQ, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -225742,58 +234809,35 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(3075), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [209603] = 8, - ACTIONS(3315), 1, - anon_sym_QMARK_COLON, - ACTIONS(3595), 1, - sym_isMutableFlag, - STATE(2433), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [217457] = 5, + ACTIONS(586), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 23, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -225814,13 +234858,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1588), 25, + ACTIONS(2402), 25, + sym__newline, 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, @@ -225840,23 +234884,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [209675] = 3, + [217522] = 4, + ACTIONS(3884), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 26, + ACTIONS(1973), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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, @@ -225871,7 +234915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3097), 27, + ACTIONS(1975), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -225888,7 +234932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225899,23 +234943,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209737] = 3, - ACTIONS(3), 2, + [217585] = 5, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 26, + ACTIONS(2266), 2, sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 47, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -225924,19 +234988,37 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(2885), 27, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [217650] = 6, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3836), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -225947,7 +235029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -225958,24 +235039,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209799] = 4, - ACTIONS(3716), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 25, + ACTIONS(2258), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -225990,13 +235064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 27, + [217717] = 5, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -226007,7 +235088,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, @@ -226018,22 +235098,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209863] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3109), 26, + ACTIONS(2266), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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, @@ -226049,7 +235124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3111), 27, + [217782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2801), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -226066,7 +235145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -226077,27 +235155,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [209925] = 10, - ACTIONS(482), 1, - anon_sym_if, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, + ACTIONS(2803), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - ACTIONS(3653), 1, - anon_sym_and, - ACTIONS(3655), 1, anon_sym_PLUS, - ACTIONS(3718), 1, - anon_sym_or, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [217843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 22, + ACTIONS(2805), 26, + anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -226108,7 +235201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_then, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -226119,15 +235213,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2357), 23, + ACTIONS(2807), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -226143,122 +235240,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [210001] = 22, - ACTIONS(3673), 1, + [217904] = 16, + ACTIONS(3814), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3816), 1, anon_sym_LBRACK, - ACTIONS(3679), 1, + ACTIONS(3820), 1, anon_sym_STAR_STAR, - ACTIONS(3681), 1, + ACTIONS(3822), 1, anon_sym_QMARK_DOT, - ACTIONS(3683), 1, - anon_sym_PLUS, - ACTIONS(3685), 1, - anon_sym_DASH, - ACTIONS(3689), 1, + ACTIONS(3826), 1, anon_sym_PIPE, - ACTIONS(3691), 1, + ACTIONS(3828), 1, anon_sym_AMP, - ACTIONS(3693), 1, + ACTIONS(3830), 1, anon_sym_CARET, - ACTIONS(3697), 1, + ACTIONS(3834), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3705), 1, - anon_sym_not, - ACTIONS(3709), 1, - anon_sym_is, - STATE(2520), 1, + STATE(3168), 1, sym_argument_list, - STATE(2697), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 2, + ACTIONS(2458), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3687), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3695), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3703), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3707), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_TILDE, - sym_float, - ACTIONS(2365), 19, + ACTIONS(2386), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_then, + anon_sym_DQUOTE, + 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, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [210101] = 3, + [217991] = 4, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3125), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - 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_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, - ACTIONS(3127), 27, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -226269,7 +235333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -226280,22 +235343,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [210163] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3137), 26, + ACTIONS(2768), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -226311,13 +235370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(3139), 27, + [218054] = 5, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -226328,7 +235394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -226339,100 +235404,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [210225] = 21, - ACTIONS(3605), 1, + ACTIONS(133), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3607), 1, anon_sym_LBRACK, - ACTIONS(3611), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_QMARK_DOT, - ACTIONS(3619), 1, - anon_sym_PIPE, - ACTIONS(3621), 1, - anon_sym_AMP, - ACTIONS(3623), 1, - anon_sym_CARET, - ACTIONS(3627), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3647), 1, - anon_sym_not, - ACTIONS(3651), 1, - anon_sym_is, - STATE(2702), 1, - aux_sym_comparison_operator_repeat1, - STATE(2875), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3609), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3615), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3617), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3625), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3645), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3649), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 8, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 18, - anon_sym_DOT, - anon_sym_as, + [218119] = 7, + ACTIONS(618), 1, anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + ACTIONS(3875), 1, + anon_sym_PLUS, + ACTIONS(3886), 1, anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [210323] = 3, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3145), 26, + ACTIONS(2542), 2, sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 45, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_or, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -226441,92 +235477,59 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(3147), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [210385] = 10, - ACTIONS(450), 1, + [218188] = 6, + ACTIONS(618), 1, anon_sym_if, - ACTIONS(606), 1, - anon_sym_DOT, - ACTIONS(608), 1, - anon_sym_QMARK_DOT, - ACTIONS(3601), 1, - anon_sym_and, - ACTIONS(3603), 1, + ACTIONS(3875), 1, anon_sym_PLUS, - ACTIONS(3720), 1, - anon_sym_or, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, + ACTIONS(2258), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2355), 21, + ACTIONS(2256), 46, + anon_sym_DOT, anon_sym_as, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2357), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -226535,22 +235538,31 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [210461] = 4, - STATE(2756), 1, - aux_sym_union_type_repeat1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [218255] = 4, + ACTIONS(3888), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 2, + ACTIONS(2154), 2, sym_string_start, anon_sym_LF, - ACTIONS(2483), 49, + ACTIONS(2156), 49, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -226600,25 +235612,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [210524] = 5, - ACTIONS(556), 1, - anon_sym_if, + [218318] = 4, + STATE(2739), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 2, + ACTIONS(2154), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 47, + ACTIONS(2156), 49, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -226660,39 +235671,47 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [210589] = 4, - STATE(4733), 1, + [218381] = 8, + ACTIONS(3893), 1, + anon_sym_not, + ACTIONS(3899), 1, + anon_sym_is, + STATE(2785), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(3890), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3896), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2841), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, 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(221), 26, + ACTIONS(2839), 22, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -226713,127 +235732,112 @@ 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, - [210652] = 19, - ACTIONS(3722), 1, + [218452] = 4, + STATE(2696), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2760), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(2758), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3724), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3732), 1, anon_sym_QMARK_DOT, - ACTIONS(3734), 1, - anon_sym_not, - ACTIONS(3738), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(3740), 1, anon_sym_AMP, - ACTIONS(3742), 1, anon_sym_CARET, - ACTIONS(3746), 1, - anon_sym_is, - ACTIONS(3748), 1, - anon_sym_QMARK_LBRACK, - STATE(2796), 1, - aux_sym_comparison_operator_repeat1, - STATE(3070), 1, - sym_argument_list, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2367), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3726), 7, - anon_sym_in, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(2365), 23, + anon_sym_QMARK_LBRACK, + sym_float, + [218515] = 4, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2556), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_DQUOTE, - anon_sym_TILDE, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [210745] = 9, - ACTIONS(556), 1, - anon_sym_if, - ACTIONS(3750), 1, - anon_sym_and, - ACTIONS(3752), 1, - anon_sym_or, - ACTIONS(3754), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(610), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2357), 2, + ACTIONS(2554), 26, sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 42, - anon_sym_as, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_not, + 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, @@ -226842,33 +235846,51 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [210818] = 4, - STATE(2703), 1, - aux_sym_comparison_operator_repeat1, + [218578] = 4, + STATE(2796), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(2598), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(2600), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -226889,19 +235911,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + [218641] = 5, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2254), 2, sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 47, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -226910,29 +235956,38 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [210881] = 4, - STATE(2699), 1, - aux_sym_comparison_operator_repeat1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [218706] = 4, + ACTIONS(3902), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 24, + ACTIONS(2033), 24, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -226947,10 +236002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 27, + ACTIONS(2035), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -226963,8 +236019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -226975,27 +236030,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [210944] = 6, - ACTIONS(556), 1, - anon_sym_if, - ACTIONS(3754), 1, - anon_sym_PLUS, + [218769] = 10, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2443), 2, + ACTIONS(2069), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 46, + ACTIONS(2067), 43, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -227005,11 +236066,10 @@ static const uint16_t ts_small_parse_table[] = { 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_SLASH, @@ -227028,7 +236088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, sym_float, sym_identifier, @@ -227036,21 +236095,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211011] = 6, - ACTIONS(556), 1, + [218844] = 5, + ACTIONS(618), 1, anon_sym_if, - ACTIONS(3754), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 2, + ACTIONS(2254), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 46, + ACTIONS(2252), 47, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -227071,6 +236128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_SLASH, @@ -227097,25 +236155,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211078] = 5, - ACTIONS(556), 1, - anon_sym_if, + [218909] = 5, + ACTIONS(3904), 1, + anon_sym_PIPE, + STATE(2793), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2451), 2, + ACTIONS(1954), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 47, + ACTIONS(1956), 48, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -227136,7 +236195,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, @@ -227157,44 +236215,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211143] = 6, - ACTIONS(556), 1, - anon_sym_if, - ACTIONS(3754), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [218974] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 2, + ACTIONS(2007), 26, sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 46, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -227203,34 +236240,56 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [211210] = 5, - ACTIONS(556), 1, + [219035] = 7, + ACTIONS(618), 1, anon_sym_if, + ACTIONS(3875), 1, + anon_sym_PLUS, + ACTIONS(3886), 1, + anon_sym_and, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 2, + ACTIONS(2244), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 47, + ACTIONS(2242), 45, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -227249,9 +236308,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_DQUOTE, anon_sym_DASH, anon_sym_SLASH, @@ -227278,42 +236335,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211275] = 4, - ACTIONS(3756), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + [219104] = 4, + STATE(2829), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 2, + ACTIONS(2300), 25, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(2526), 49, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -227322,40 +236361,57 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + ACTIONS(2298), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [211338] = 5, - ACTIONS(556), 1, - anon_sym_if, + [219167] = 4, + STATE(2739), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 2, + ACTIONS(2220), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 47, + ACTIONS(2222), 49, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -227397,25 +236453,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211403] = 5, - ACTIONS(556), 1, - anon_sym_if, + [219230] = 4, + ACTIONS(3907), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(189), 2, + ACTIONS(1973), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 47, + ACTIONS(1975), 49, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -227457,43 +236512,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211468] = 5, - ACTIONS(556), 1, - anon_sym_if, - ACTIONS(5), 2, + [219293] = 4, + STATE(2837), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2439), 2, + ACTIONS(2192), 25, + sym__newline, sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 47, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -227502,42 +236538,27 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [211533] = 5, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3758), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, - anon_sym_import, + ACTIONS(2194), 26, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -227550,52 +236571,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [211598] = 7, - ACTIONS(556), 1, + [219356] = 8, + ACTIONS(618), 1, anon_sym_if, - ACTIONS(3750), 1, - anon_sym_and, - ACTIONS(3754), 1, + ACTIONS(3875), 1, anon_sym_PLUS, + ACTIONS(3886), 1, + anon_sym_and, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 2, + ACTIONS(2278), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 45, + ACTIONS(2242), 4, anon_sym_DOT, anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 41, anon_sym_COMMA, anon_sym_else, anon_sym_LPAREN, @@ -227610,9 +236607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_or, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_SLASH, @@ -227639,44 +236634,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211667] = 11, - ACTIONS(2475), 1, - anon_sym_EQ, - ACTIONS(3760), 1, - anon_sym_LBRACE, - ACTIONS(3762), 1, - sym_isMutableFlag, - ACTIONS(3764), 1, - anon_sym_QMARK_COLON, - STATE(4379), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4699), 1, - aux_sym_comparison_operator_repeat1, + [219427] = 5, + ACTIONS(3871), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 13, + ACTIONS(201), 24, + sym_string_start, 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(1586), 14, - anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_PLUS, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -227684,124 +236660,55 @@ 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(1588), 18, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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, - [211744] = 20, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LBRACK, - ACTIONS(3730), 1, - anon_sym_STAR_STAR, - ACTIONS(3732), 1, - anon_sym_QMARK_DOT, - ACTIONS(3738), 1, - anon_sym_PIPE, - ACTIONS(3740), 1, - anon_sym_AMP, - ACTIONS(3742), 1, - anon_sym_CARET, - ACTIONS(3748), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2524), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 5, + sym_float, + ACTIONS(197), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2493), 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(2522), 18, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_STAR, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [211839] = 8, - ACTIONS(556), 1, + [219492] = 5, + ACTIONS(618), 1, anon_sym_if, - ACTIONS(3750), 1, - anon_sym_and, - ACTIONS(3754), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 2, + ACTIONS(2238), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, + ACTIONS(2236), 47, anon_sym_DOT, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 41, anon_sym_COMMA, anon_sym_else, anon_sym_LPAREN, @@ -227816,7 +236723,11 @@ static const uint16_t ts_small_parse_table[] = { 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_SLASH, @@ -227843,86 +236754,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [211910] = 8, - ACTIONS(556), 1, - anon_sym_if, - ACTIONS(3750), 1, - anon_sym_and, - ACTIONS(3754), 1, - anon_sym_PLUS, + [219557] = 4, + STATE(2739), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 2, + ACTIONS(2192), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 19, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - ACTIONS(2449), 26, + ACTIONS(2194), 49, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [211981] = 4, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 24, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -227931,50 +236798,32 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(2857), 27, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [212044] = 4, - STATE(2756), 1, - aux_sym_union_type_repeat1, + [219620] = 4, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 2, + ACTIONS(2290), 2, sym_string_start, anon_sym_LF, - ACTIONS(2532), 49, + STATE(2752), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -227982,7 +236831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -228024,22 +236872,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [212107] = 4, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, + [219683] = 4, + STATE(2837), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 24, + ACTIONS(2220), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -228055,10 +236904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + ACTIONS(2222), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -228071,8 +236921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -228083,22 +236931,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [212170] = 4, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, + [219746] = 7, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3836), 1, + anon_sym_PLUS, + ACTIONS(3879), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 24, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + 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_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, + ACTIONS(2244), 24, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -228114,51 +236993,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 27, + [219815] = 9, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(3875), 1, + anon_sym_PLUS, + ACTIONS(3886), 1, + anon_sym_and, + ACTIONS(3911), 1, + anon_sym_or, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(732), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2057), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 42, anon_sym_as, - anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, + 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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [212233] = 4, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [219888] = 5, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 24, + ACTIONS(133), 2, sym_string_start, - anon_sym_COLON, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 47, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -228167,50 +237102,100 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(2857), 27, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [219953] = 8, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(3875), 1, + anon_sym_PLUS, + ACTIONS(3886), 1, + anon_sym_and, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2244), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 19, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + ACTIONS(2242), 26, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [212296] = 4, - STATE(2729), 1, - aux_sym_comparison_operator_repeat1, + [220024] = 7, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(3836), 1, + anon_sym_PLUS, + ACTIONS(3879), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 25, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, anon_sym_lambda, @@ -228221,7 +237206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -228233,17 +237217,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 26, + ACTIONS(2542), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -228260,45 +237242,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [212359] = 4, - STATE(2729), 1, + [220093] = 12, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 25, + ACTIONS(1940), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 37, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + 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, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2859), 26, + [220172] = 4, + STATE(2837), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -228319,18 +237341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [212422] = 4, - STATE(2729), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 25, + ACTIONS(2156), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -228351,19 +237368,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 26, + [220235] = 5, + ACTIONS(618), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2402), 2, sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 47, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -228372,110 +237413,187 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [212485] = 4, - STATE(2729), 1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [220300] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3841), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3849), 1, + anon_sym_QMARK_DOT, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_AMP, + ACTIONS(3859), 1, + anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 25, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 13, anon_sym_for, 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_not, - anon_sym_and, - anon_sym_or, - 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(2859), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [220399] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3841), 1, anon_sym_LPAREN, + ACTIONS(3843), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3847), 1, anon_sym_STAR_STAR, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_AMP, + ACTIONS(3859), 1, + anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3853), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [212548] = 4, - STATE(3322), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 13, anon_sym_for, 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_not, - anon_sym_and, - anon_sym_or, - 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(221), 26, + [220498] = 4, + STATE(2837), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -228496,18 +237614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [212611] = 4, - STATE(2876), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(1956), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -228528,55 +237641,109 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [220561] = 13, + ACTIONS(3814), 1, anon_sym_LPAREN, + ACTIONS(3816), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3820), 1, anon_sym_STAR_STAR, + ACTIONS(3822), 1, anon_sym_QMARK_DOT, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1942), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DQUOTE, anon_sym_PIPE, anon_sym_AMP, 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_QMARK_LBRACK, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_float, - [212674] = 10, - ACTIONS(3722), 1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [220642] = 14, + ACTIONS(3814), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3816), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + ACTIONS(3820), 1, anon_sym_STAR_STAR, - ACTIONS(3732), 1, + ACTIONS(3822), 1, anon_sym_QMARK_DOT, - ACTIONS(3748), 1, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, + STATE(3168), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(1940), 2, sym_string_start, anon_sym_LF, - ACTIONS(2518), 43, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 34, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -228590,21 +237757,12 @@ 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_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_TILDE, anon_sym_LT, anon_sym_LT_EQ, @@ -228620,28 +237778,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [212749] = 10, - ACTIONS(3722), 1, + [220725] = 15, + ACTIONS(3814), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3816), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + ACTIONS(3820), 1, anon_sym_STAR_STAR, - ACTIONS(3732), 1, + ACTIONS(3822), 1, anon_sym_QMARK_DOT, - ACTIONS(3748), 1, + ACTIONS(3828), 1, + anon_sym_AMP, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, + STATE(3168), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(1940), 2, sym_string_start, anon_sym_LF, - ACTIONS(2518), 43, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -228655,21 +237828,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_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_TILDE, anon_sym_LT, anon_sym_LT_EQ, @@ -228685,28 +237848,65 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [212824] = 3, + [220810] = 13, + ACTIONS(3841), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3849), 1, + anon_sym_QMARK_DOT, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 26, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 16, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + 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(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -228716,68 +237916,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2952), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [220891] = 14, + ACTIONS(3841), 1, anon_sym_LPAREN, + ACTIONS(3843), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3847), 1, anon_sym_STAR_STAR, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3853), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + 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, - [212885] = 11, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LBRACK, - ACTIONS(3730), 1, - anon_sym_STAR_STAR, - ACTIONS(3732), 1, - anon_sym_QMARK_DOT, - ACTIONS(3748), 1, - anon_sym_QMARK_LBRACK, - STATE(3070), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 39, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, @@ -228786,74 +237976,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [212962] = 15, - ACTIONS(3722), 1, + [220974] = 15, + ACTIONS(3841), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + ACTIONS(3847), 1, anon_sym_STAR_STAR, - ACTIONS(3732), 1, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, - ACTIONS(3740), 1, - anon_sym_AMP, - ACTIONS(3742), 1, + ACTIONS(3859), 1, anon_sym_CARET, - ACTIONS(3748), 1, + ACTIONS(3863), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, + STATE(3051), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3728), 4, + ACTIONS(3845), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 33, + ACTIONS(3861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 13, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + 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(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, @@ -228862,66 +238046,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DQUOTE, - anon_sym_PIPE, - 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, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [213047] = 14, - ACTIONS(3722), 1, + [221059] = 16, + ACTIONS(3841), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + ACTIONS(3847), 1, anon_sym_STAR_STAR, - ACTIONS(3732), 1, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, - ACTIONS(3742), 1, + ACTIONS(3857), 1, + anon_sym_AMP, + ACTIONS(3859), 1, anon_sym_CARET, - ACTIONS(3748), 1, + ACTIONS(3863), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, + STATE(3051), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3728), 4, + ACTIONS(3845), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 34, + ACTIONS(3861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 12, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + 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(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, @@ -228930,65 +238117,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - 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, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [213130] = 13, - ACTIONS(3722), 1, + [221146] = 12, + ACTIONS(3841), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + ACTIONS(3847), 1, anon_sym_STAR_STAR, - ACTIONS(3732), 1, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, - ACTIONS(3748), 1, + ACTIONS(3863), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, + STATE(3051), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3744), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 35, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, @@ -228997,103 +238184,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - 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, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [213211] = 12, - ACTIONS(3722), 1, + [221225] = 10, + ACTIONS(3841), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3730), 1, + ACTIONS(3847), 1, anon_sym_STAR_STAR, - ACTIONS(3732), 1, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, - ACTIONS(3748), 1, + ACTIONS(3863), 1, anon_sym_QMARK_LBRACK, - STATE(3070), 1, + STATE(3051), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(1940), 20, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DQUOTE, anon_sym_PIPE, anon_sym_AMP, 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, - sym_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [213290] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2946), 26, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -229114,16 +238258,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2948), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [221300] = 10, + ACTIONS(3841), 1, anon_sym_LPAREN, + ACTIONS(3843), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3847), 1, anon_sym_STAR_STAR, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 20, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -229139,19 +238296,49 @@ 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, - [213351] = 3, + ACTIONS(1942), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [221375] = 6, + ACTIONS(3913), 1, + anon_sym_DOT, + ACTIONS(3916), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 26, - anon_sym_DOT, + STATE(2827), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 24, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -229172,16 +238359,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2944), 26, + ACTIONS(2441), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -229199,24 +238384,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [213412] = 4, - STATE(2756), 1, - aux_sym_union_type_repeat1, + [221442] = 11, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 2, + ACTIONS(1940), 2, sym_string_start, anon_sym_LF, - ACTIONS(2536), 49, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 39, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -229225,18 +238424,12 @@ static const uint16_t ts_small_parse_table[] = { 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_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, @@ -229250,7 +238443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, sym_float, sym_identifier, @@ -229258,47 +238450,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [213475] = 3, + [221519] = 6, + ACTIONS(3919), 1, + anon_sym_DOT, + ACTIONS(3922), 1, + anon_sym_QMARK_DOT, + STATE(2829), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2940), 26, + ACTIONS(2007), 24, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -229316,12 +238485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [213536] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2934), 26, - anon_sym_DOT, + ACTIONS(2009), 25, anon_sym_as, anon_sym_if, anon_sym_for, @@ -229347,51 +238511,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2936), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [221586] = 10, + ACTIONS(3814), 1, anon_sym_LPAREN, + ACTIONS(3816), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3820), 1, anon_sym_STAR_STAR, + ACTIONS(3822), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3834), 1, anon_sym_QMARK_LBRACK, - sym_float, - [213597] = 4, - STATE(2759), 1, - aux_sym_dotted_name_repeat1, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + ACTIONS(1940), 2, sym_string_start, anon_sym_LF, - ACTIONS(2471), 49, + ACTIONS(1942), 43, 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_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -229401,8 +238547,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -229425,7 +238569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, sym_float, sym_identifier, @@ -229433,18 +238576,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [213660] = 3, - ACTIONS(3), 2, + [221661] = 10, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + STATE(3168), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 26, + ACTIONS(1940), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(1942), 43, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, @@ -229454,29 +238615,10 @@ 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2930), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, @@ -229485,48 +238627,37 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_float, - [213721] = 4, - STATE(2721), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [221736] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 2, + ACTIONS(2825), 26, sym_string_start, - anon_sym_LF, - ACTIONS(2475), 49, - 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_EQ, - anon_sym_lambda, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -229535,26 +238666,13 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [213784] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2922), 26, + ACTIONS(2827), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -229581,7 +238699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2924), 26, + [221797] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -229608,11 +238730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [213845] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2550), 26, + ACTIONS(2823), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -229639,13 +238757,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2555), 26, + [221858] = 5, + ACTIONS(3925), 1, + anon_sym_EQ, + STATE(2837), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2554), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -229666,109 +238791,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [213906] = 4, - ACTIONS(3766), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2512), 49, + ACTIONS(2556), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [221923] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3841), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3849), 1, + anon_sym_QMARK_DOT, + ACTIONS(3855), 1, anon_sym_PIPE, + ACTIONS(3857), 1, anon_sym_AMP, + ACTIONS(3859), 1, anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, 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_integer, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, + ACTIONS(2308), 13, + anon_sym_for, + anon_sym_else, + 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, - [213969] = 4, - STATE(2522), 1, - aux_sym_union_type_repeat1, + [222022] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, + ACTIONS(3778), 5, + sym_string_start, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(3057), 12, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(197), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_EQ, + anon_sym_in, anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, 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(2914), 26, - sym_string_start, - anon_sym_COMMA, + ACTIONS(201), 19, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, 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, @@ -229777,29 +238949,29 @@ 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, - [214032] = 4, - ACTIONS(3768), 1, - anon_sym_DASH_GT, + [222087] = 4, + STATE(2767), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 23, + ACTIONS(2392), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -229814,10 +238986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 28, + ACTIONS(2390), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -229830,9 +239003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -229843,47 +239013,85 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [214095] = 8, - ACTIONS(3773), 1, + [222150] = 19, + ACTIONS(3814), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_STAR_STAR, + ACTIONS(3822), 1, + anon_sym_QMARK_DOT, + ACTIONS(3826), 1, + anon_sym_PIPE, + ACTIONS(3828), 1, + anon_sym_AMP, + ACTIONS(3830), 1, + anon_sym_CARET, + ACTIONS(3834), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3867), 1, anon_sym_not, - ACTIONS(3779), 1, + ACTIONS(3869), 1, anon_sym_is, - STATE(2729), 1, + STATE(2907), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + STATE(3168), 1, + sym_argument_list, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3770), 3, + ACTIONS(2356), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3824), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3832), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3818), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3865), 7, anon_sym_in, anon_sym_LT, - anon_sym_GT, - ACTIONS(3776), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2861), 20, + anon_sym_GT, + ACTIONS(2310), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_DQUOTE, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2863), 22, + [222243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2809), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -229904,75 +239112,47 @@ 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, - [214166] = 5, - ACTIONS(3782), 1, - anon_sym_PIPE, - STATE(2730), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2505), 48, + ACTIONS(2811), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [214231] = 4, - ACTIONS(3641), 1, - anon_sym_EQ, + [222304] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 25, + STATE(2827), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -229998,13 +239178,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 26, + ACTIONS(2290), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -230025,47 +239204,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [214294] = 3, + [222367] = 10, + ACTIONS(3841), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3849), 1, + anon_sym_QMARK_DOT, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2896), 26, + ACTIONS(2069), 20, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -230081,169 +239242,45 @@ 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, - [214355] = 20, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LBRACK, - ACTIONS(3730), 1, - anon_sym_STAR_STAR, - ACTIONS(3732), 1, - anon_sym_QMARK_DOT, - ACTIONS(3738), 1, - anon_sym_PIPE, - ACTIONS(3740), 1, - anon_sym_AMP, - ACTIONS(3742), 1, - anon_sym_CARET, - ACTIONS(3748), 1, - anon_sym_QMARK_LBRACK, - STATE(3070), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2503), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 5, + ACTIONS(2067), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2493), 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(2501), 18, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [214450] = 20, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LBRACK, - ACTIONS(3730), 1, - anon_sym_STAR_STAR, - ACTIONS(3732), 1, - anon_sym_QMARK_DOT, - ACTIONS(3738), 1, - anon_sym_PIPE, - ACTIONS(3740), 1, - anon_sym_AMP, - ACTIONS(3742), 1, - anon_sym_CARET, - ACTIONS(3748), 1, - anon_sym_QMARK_LBRACK, - STATE(3070), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2491), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3728), 4, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2493), 7, - anon_sym_in, + anon_sym_SLASH, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2489), 18, - anon_sym_COMMA, - anon_sym_else, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_is, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [214545] = 3, + [222442] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 26, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -230264,7 +239301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2887), 26, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -230291,50 +239328,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [214606] = 3, - ACTIONS(3), 2, + [222505] = 4, + ACTIONS(3927), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 26, + ACTIONS(2033), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2035), 49, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2883), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, @@ -230343,23 +239372,44 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [214667] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [222568] = 10, + ACTIONS(586), 1, + anon_sym_if, + ACTIONS(748), 1, + anon_sym_DOT, + ACTIONS(750), 1, + anon_sym_QMARK_DOT, + ACTIONS(3836), 1, + anon_sym_PLUS, + ACTIONS(3879), 1, + anon_sym_and, + ACTIONS(3929), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 26, - anon_sym_DOT, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 21, anon_sym_as, - anon_sym_if, anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -230368,8 +239418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -230380,17 +239428,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2900), 26, + ACTIONS(2057), 23, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -230407,82 +239452,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [214728] = 4, - STATE(3304), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 24, - sym_string_start, - anon_sym_COLON, + [222643] = 21, + ACTIONS(3841), 1, anon_sym_LPAREN, + ACTIONS(3843), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3847), 1, anon_sym_STAR_STAR, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3855), 1, anon_sym_PIPE, + ACTIONS(3857), 1, anon_sym_AMP, + ACTIONS(3859), 1, anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3933), 1, + anon_sym_not, + ACTIONS(3937), 1, + anon_sym_is, + STATE(3009), 1, + aux_sym_comparison_operator_repeat1, + STATE(3051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(3931), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2356), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(217), 27, + ACTIONS(2310), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [214791] = 5, + [222740] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3714), 7, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(217), 12, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, + 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_not, anon_sym_and, @@ -230491,57 +239554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(3169), 14, - anon_sym_import, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(221), 19, + ACTIONS(201), 25, sym__newline, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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_QMARK_LBRACK, - [214856] = 4, - STATE(2747), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2568), 24, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -230557,12 +239586,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2566), 27, + [222802] = 9, + ACTIONS(676), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(3939), 1, + anon_sym_and, + ACTIONS(3941), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_or, + ACTIONS(2276), 19, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -230571,10 +239615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -230585,24 +239625,45 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [214919] = 5, - ACTIONS(3785), 1, - anon_sym_EQ, - STATE(2740), 1, - aux_sym_union_type_repeat1, + ACTIONS(2278), 23, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [222874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 24, + ACTIONS(2791), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -230618,11 +239679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 26, + ACTIONS(2793), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -230633,8 +239696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -230645,22 +239706,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [214984] = 4, - STATE(2740), 1, - aux_sym_union_type_repeat1, + [222934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 24, + ACTIONS(2797), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -230676,10 +239736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2912), 27, + ACTIONS(2799), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -230692,8 +239753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -230704,27 +239763,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215047] = 5, - ACTIONS(3657), 1, - anon_sym_in, - ACTIONS(3787), 1, - anon_sym_not, + [222994] = 4, + STATE(3052), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, - anon_sym_import, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_for, + 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -230737,11 +239795,10 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(201), 25, sym__newline, - sym__indent, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -230764,22 +239821,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [215112] = 4, - STATE(2740), 1, - aux_sym_union_type_repeat1, + [223056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 24, + ACTIONS(2809), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -230795,10 +239851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 27, + ACTIONS(2811), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -230811,8 +239868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -230823,22 +239878,96 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215175] = 4, - STATE(2740), 1, - aux_sym_union_type_repeat1, + [223116] = 21, + ACTIONS(3841), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3847), 1, + anon_sym_STAR_STAR, + ACTIONS(3849), 1, + anon_sym_QMARK_DOT, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(3857), 1, + anon_sym_AMP, + ACTIONS(3859), 1, + anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3933), 1, + anon_sym_not, + ACTIONS(3937), 1, + anon_sym_is, + STATE(3051), 1, + sym_argument_list, + STATE(3415), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3931), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 17, + anon_sym_DOT, + anon_sym_as, + 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, + [223212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 24, + ACTIONS(2813), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -230854,10 +239983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 27, + ACTIONS(2815), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -230870,8 +240000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -230882,56 +240010,65 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215238] = 4, - STATE(2740), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2538), 24, - sym_string_start, - anon_sym_COLON, + [223272] = 14, + ACTIONS(3943), 1, anon_sym_LPAREN, + ACTIONS(3945), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3949), 1, anon_sym_STAR_STAR, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3953), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(3957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + 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(2536), 27, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -230941,27 +240078,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215301] = 5, - ACTIONS(3789), 1, - anon_sym_PIPE, - STATE(2747), 1, - aux_sym_union_type_repeat1, + [223354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 23, + ACTIONS(3053), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(3055), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -230973,24 +240135,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 27, + [223414] = 21, + ACTIONS(3943), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LBRACK, + ACTIONS(3949), 1, + anon_sym_STAR_STAR, + ACTIONS(3951), 1, + anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3963), 1, + anon_sym_not, + ACTIONS(3965), 1, + anon_sym_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP, + ACTIONS(3969), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_is, + STATE(3071), 1, + aux_sym_comparison_operator_repeat1, + STATE(3271), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3955), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3961), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3971), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 17, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [223510] = 10, + ACTIONS(676), 1, + anon_sym_if, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(3939), 1, + anon_sym_and, + ACTIONS(3941), 1, anon_sym_PLUS, - anon_sym_then, + ACTIONS(3975), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 20, + anon_sym_as, + 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_not, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -231001,22 +240250,45 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215366] = 4, - STATE(2740), 1, - aux_sym_union_type_repeat1, + ACTIONS(2057), 23, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [223584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 24, + ACTIONS(2817), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -231032,10 +240304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 27, + ACTIONS(2819), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -231048,8 +240321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -231060,42 +240331,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215429] = 4, - ACTIONS(3792), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + [223644] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2483), 49, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -231104,31 +240382,20 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [215492] = 4, - STATE(2756), 1, - aux_sym_union_type_repeat1, + [223704] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 2, + ACTIONS(2821), 2, sym_string_start, anon_sym_LF, - ACTIONS(2505), 49, + ACTIONS(2823), 49, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -231178,101 +240445,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215555] = 19, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LBRACK, - ACTIONS(3730), 1, - anon_sym_STAR_STAR, - ACTIONS(3732), 1, - anon_sym_QMARK_DOT, - ACTIONS(3734), 1, - anon_sym_not, - ACTIONS(3738), 1, - anon_sym_PIPE, - ACTIONS(3740), 1, - anon_sym_AMP, - ACTIONS(3742), 1, - anon_sym_CARET, - ACTIONS(3746), 1, - anon_sym_is, - ACTIONS(3748), 1, - anon_sym_QMARK_LBRACK, - STATE(3070), 1, - sym_argument_list, - STATE(3341), 1, + [223764] = 4, + STATE(4829), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 2, + ACTIONS(201), 2, sym_string_start, anon_sym_LF, - ACTIONS(3736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3728), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3726), 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(2365), 23, + ACTIONS(197), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_and, - anon_sym_or, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [215648] = 7, - ACTIONS(556), 1, - anon_sym_if, - ACTIONS(3750), 1, - anon_sym_and, - ACTIONS(3754), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2481), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 45, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_lambda, @@ -231287,7 +240474,9 @@ 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_DQUOTE, anon_sym_DASH, anon_sym_SLASH, @@ -231314,36 +240503,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215717] = 10, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LBRACK, - ACTIONS(3730), 1, - anon_sym_STAR_STAR, - ACTIONS(3732), 1, - anon_sym_QMARK_DOT, - ACTIONS(3748), 1, - anon_sym_QMARK_LBRACK, - STATE(3070), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [223826] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2574), 43, + ACTIONS(3073), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, @@ -231353,10 +240523,29 @@ 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3075), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -231365,56 +240554,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_integer, + anon_sym_QMARK_LBRACK, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [215792] = 4, - ACTIONS(5), 2, + [223886] = 9, + ACTIONS(371), 1, + anon_sym_if, + ACTIONS(3598), 1, + anon_sym_and, + ACTIONS(3977), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 2, - sym_string_start, - anon_sym_LF, - STATE(2761), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2570), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, + sym_string_start, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -231422,38 +240601,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, 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, + ACTIONS(2242), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_or, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [215855] = 4, - ACTIONS(3794), 1, - anon_sym_DASH_GT, + [223958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 23, + ACTIONS(2825), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -231468,10 +240653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 28, + ACTIONS(2827), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -231484,9 +240670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -231497,42 +240680,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [215918] = 4, - STATE(2730), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [224018] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2566), 49, + ACTIONS(3077), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3079), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -231541,37 +240731,28 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [215981] = 4, - ACTIONS(3796), 1, - anon_sym_DASH_GT, + [224078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 23, + ACTIONS(2007), 25, + sym__newline, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -231586,10 +240767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 28, + ACTIONS(2009), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -231602,9 +240784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -231615,43 +240794,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [216044] = 5, - ACTIONS(3798), 1, + [224138] = 4, + ACTIONS(3925), 1, anon_sym_EQ, - STATE(2756), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 2, + ACTIONS(2554), 25, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(2560), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -231660,58 +240820,81 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + ACTIONS(2556), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [216109] = 5, - STATE(2759), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [224200] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3800), 2, + ACTIONS(3081), 25, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2550), 47, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_STAR_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(3083), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -231720,50 +240903,54 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [216174] = 8, - ACTIONS(3806), 1, - anon_sym_not, - ACTIONS(3812), 1, - anon_sym_is, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, + [224260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3803), 3, + ACTIONS(3087), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3809), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 20, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3089), 26, sym_string_start, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -231773,68 +240960,55 @@ 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(2861), 22, + [224320] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3091), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [216245] = 5, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2545), 2, + ACTIONS(3093), 26, sym_string_start, - anon_sym_LF, - ACTIONS(3815), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2761), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 46, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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, @@ -231843,42 +241017,30 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [216310] = 6, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, + [224380] = 4, + STATE(2837), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 23, + ACTIONS(2758), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -231893,9 +241055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2457), 24, + ACTIONS(2760), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -231907,7 +241071,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, @@ -231918,41 +241081,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [216376] = 4, - STATE(2810), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [224442] = 4, + STATE(2908), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2857), 48, + ACTIONS(2298), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2300), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -231961,39 +241133,41 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [216438] = 4, - STATE(2961), 1, - aux_sym_union_type_repeat1, + [224504] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3778), 5, + sym_string_start, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(3057), 12, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(197), 13, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_in, anon_sym_STAR, anon_sym_not, anon_sym_and, @@ -232002,23 +241176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2507), 25, - sym_string_start, + ACTIONS(201), 21, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -232027,61 +241193,61 @@ 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, - [216500] = 10, - ACTIONS(630), 1, - anon_sym_if, - ACTIONS(740), 1, - anon_sym_DOT, - ACTIONS(742), 1, - anon_sym_QMARK_DOT, - ACTIONS(3820), 1, - anon_sym_and, - ACTIONS(3822), 1, - anon_sym_or, - ACTIONS(3824), 1, - anon_sym_PLUS, + [224568] = 8, + ACTIONS(3982), 1, + anon_sym_not, + ACTIONS(3988), 1, + anon_sym_is, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 20, + ACTIONS(3979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3985), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2841), 20, + anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, 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_not, + anon_sym_and, + anon_sym_or, 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(2357), 23, + ACTIONS(2839), 21, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -232092,96 +241258,70 @@ 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, - [216574] = 21, - ACTIONS(3826), 1, + [224638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2807), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3828), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3836), 1, anon_sym_QMARK_DOT, - ACTIONS(3838), 1, - anon_sym_not, - ACTIONS(3844), 1, - anon_sym_PIPE, - ACTIONS(3846), 1, - anon_sym_AMP, - ACTIONS(3848), 1, - anon_sym_CARET, - ACTIONS(3854), 1, - anon_sym_is, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3033), 1, - aux_sym_comparison_operator_repeat1, - STATE(3178), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3840), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3842), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3830), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3852), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 17, + ACTIONS(2805), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [216670] = 5, - ACTIONS(3858), 1, - anon_sym_PIPE, - STATE(2767), 1, - aux_sym_union_type_repeat1, + [224698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 24, + ACTIONS(2803), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -232195,6 +241335,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, @@ -232206,10 +241347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 25, + ACTIONS(2801), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -232232,103 +241374,80 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [216734] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3861), 1, + [224758] = 4, + STATE(3165), 1, + sym_dictionary, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(197), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(3863), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3869), 1, anon_sym_QMARK_DOT, - ACTIONS(3875), 1, - anon_sym_PIPE, - ACTIONS(3877), 1, - anon_sym_AMP, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3873), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 12, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [216832] = 6, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, + [224820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 23, + ACTIONS(2778), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -232343,10 +241462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 24, + ACTIONS(2776), 26, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -232357,7 +241479,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, @@ -232368,18 +241489,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [216898] = 4, - STATE(2961), 1, - aux_sym_union_type_repeat1, + [224880] = 4, + STATE(3005), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 25, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -232400,11 +241521,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2485), 25, + ACTIONS(201), 25, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -232426,13 +241547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [216960] = 4, - ACTIONS(3885), 1, - anon_sym_DASH_GT, + [224942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 24, + ACTIONS(2774), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -232443,6 +241562,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, @@ -232457,10 +241577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 26, + ACTIONS(2772), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_EQ, anon_sym_lambda, @@ -232473,7 +241594,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, @@ -232484,22 +241604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [217022] = 7, - ACTIONS(630), 1, - anon_sym_if, - ACTIONS(3820), 1, - anon_sym_and, - ACTIONS(3824), 1, - anon_sym_PLUS, + [225002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 22, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -232509,6 +241622,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, @@ -232520,15 +241634,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 24, + ACTIONS(3045), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -232545,22 +241661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [217090] = 7, - ACTIONS(630), 1, - anon_sym_if, - ACTIONS(3820), 1, - anon_sym_and, - ACTIONS(3824), 1, - anon_sym_PLUS, + [225062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 22, + ACTIONS(3095), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -232570,6 +241679,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, @@ -232581,15 +241691,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 24, + ACTIONS(3097), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -232606,41 +241718,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [217158] = 4, - STATE(2756), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [225122] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2912), 48, + ACTIONS(3099), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3101), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -232649,31 +241769,22 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [217220] = 4, - ACTIONS(3798), 1, - anon_sym_EQ, + [225182] = 4, + STATE(2912), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 2, + ACTIONS(201), 2, sym_string_start, anon_sym_LF, - ACTIONS(2560), 48, + ACTIONS(197), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -232722,31 +241833,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [217282] = 7, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(3887), 1, - anon_sym_and, - ACTIONS(3889), 1, - anon_sym_PLUS, + [225244] = 5, + ACTIONS(3991), 1, + anon_sym_in, + ACTIONS(3993), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 22, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, 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_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -232758,15 +241865,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 24, - sym__newline, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -232783,85 +241892,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [217350] = 16, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3846), 1, - anon_sym_AMP, - ACTIONS(3848), 1, - anon_sym_CARET, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3840), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3842), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - 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(2518), 22, - anon_sym_DOT, - anon_sym_as, + [225308] = 7, + ACTIONS(676), 1, 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_not, + ACTIONS(3939), 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, - [217436] = 3, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 25, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -232871,7 +241917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -232883,17 +241928,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3051), 26, + ACTIONS(2244), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -232910,14 +241953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [217496] = 3, + [225376] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 2, + ACTIONS(2774), 2, sym_string_start, anon_sym_LF, - ACTIONS(2550), 49, + ACTIONS(2772), 49, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -232967,17 +242010,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [217556] = 4, - ACTIONS(3891), 1, + [225436] = 4, + ACTIONS(3995), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 24, - sym__newline, + ACTIONS(2033), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -232998,7 +242041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 26, + ACTIONS(2035), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -233025,134 +242068,129 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [217618] = 15, - ACTIONS(3826), 1, + [225498] = 21, + ACTIONS(3943), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3949), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - ACTIONS(3848), 1, - anon_sym_CARET, - ACTIONS(3856), 1, + ACTIONS(3959), 1, anon_sym_QMARK_LBRACK, - STATE(3178), 1, + ACTIONS(3963), 1, + anon_sym_not, + ACTIONS(3965), 1, + anon_sym_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP, + ACTIONS(3969), 1, + anon_sym_CARET, + ACTIONS(3973), 1, + anon_sym_is, + STATE(3271), 1, sym_argument_list, - STATE(4730), 1, + STATE(3443), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, + ACTIONS(3947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3840), 2, + ACTIONS(3953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3842), 2, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 13, - sym__newline, + ACTIONS(3961), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3971), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 7, sym_string_start, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACE, 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(2518), 22, + ACTIONS(2310), 17, anon_sym_DOT, anon_sym_as, 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_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, - [217702] = 14, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [225594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3840), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3842), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(2821), 25, sym__newline, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, - ACTIONS(2518), 22, + ACTIONS(2823), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -233162,40 +242200,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [217784] = 3, - ACTIONS(5), 2, + [225654] = 10, + ACTIONS(3943), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LBRACK, + ACTIONS(3949), 1, + anon_sym_STAR_STAR, + ACTIONS(3951), 1, + anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 2, + ACTIONS(2069), 20, sym_string_start, - anon_sym_LF, - ACTIONS(2922), 49, - 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_lambda, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -233204,90 +242234,48 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [217844] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2900), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2898), 49, + ACTIONS(2067), 24, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [217904] = 4, - STATE(2767), 1, - aux_sym_union_type_repeat1, + [225728] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 25, + STATE(2911), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -233308,11 +242296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2568), 25, - sym__newline, + ACTIONS(2290), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -233334,117 +242322,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [217966] = 13, - ACTIONS(3861), 1, + [225790] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2817), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2819), 49, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(3863), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3869), 1, anon_sym_QMARK_DOT, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3873), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 16, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 22, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [218046] = 4, - STATE(2961), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [225850] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 25, + ACTIONS(2813), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2815), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2534), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -233453,224 +242421,86 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - [218108] = 14, - ACTIONS(3861), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3873), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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(2518), 22, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [218190] = 15, - ACTIONS(3861), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [225910] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3873), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(2809), 2, sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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(2518), 22, + anon_sym_LF, + ACTIONS(2811), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [218274] = 13, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3840), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3842), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 16, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 22, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [218354] = 3, + [225970] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2930), 2, + ACTIONS(2797), 2, sym_string_start, anon_sym_LF, - ACTIONS(2928), 49, + ACTIONS(2799), 49, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -233720,57 +242550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [218414] = 16, - ACTIONS(3861), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3877), 1, - anon_sym_AMP, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [226030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3873), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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(2518), 22, + ACTIONS(3107), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -233778,9 +242566,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, @@ -233790,115 +242580,77 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [218500] = 21, - ACTIONS(3861), 1, + ACTIONS(3109), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3863), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3869), 1, anon_sym_QMARK_DOT, - ACTIONS(3875), 1, - anon_sym_PIPE, - ACTIONS(3877), 1, - anon_sym_AMP, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3895), 1, - anon_sym_not, - ACTIONS(3899), 1, - anon_sym_is, - STATE(3048), 1, - aux_sym_comparison_operator_repeat1, - STATE(3201), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3873), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3893), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3897), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 17, + [226090] = 4, + STATE(2927), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2390), 25, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [218596] = 9, - ACTIONS(386), 1, - anon_sym_if, - ACTIONS(3453), 1, - anon_sym_and, - ACTIONS(3901), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 12, + ACTIONS(2392), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, 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(2469), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -233906,68 +242658,20 @@ 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(2449), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [218668] = 9, - ACTIONS(630), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3820), 1, - anon_sym_and, - ACTIONS(3824), 1, - anon_sym_PLUS, + sym_float, + [226152] = 4, + STATE(2872), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, - anon_sym_DOT, - anon_sym_as, - anon_sym_or, - ACTIONS(2467), 19, - 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_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, - ACTIONS(2469), 23, + ACTIONS(2598), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -233975,6 +242679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -233991,74 +242697,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [218740] = 4, - STATE(2810), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2857), 48, + ACTIONS(2600), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [218802] = 4, - STATE(2810), 1, - aux_sym_comparison_operator_repeat1, + [226214] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, + ACTIONS(2791), 2, sym_string_start, anon_sym_LF, - ACTIONS(2857), 48, + ACTIONS(2793), 49, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -234066,6 +242738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234107,35 +242780,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [218864] = 5, + [226274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3714), 5, - sym_string_start, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(3169), 12, + ACTIONS(3115), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(217), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_in, anon_sym_STAR, anon_sym_not, anon_sym_and, @@ -234144,48 +242804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(221), 21, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3117), 26, + sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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_QMARK_LBRACK, - [218928] = 5, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 24, - sym_string_start, - 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -234200,75 +242837,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2453), 24, - anon_sym_DOT, - anon_sym_as, - 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_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, - [218992] = 4, - STATE(2785), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [226334] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 25, + ACTIONS(2778), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2776), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2507), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -234277,76 +242879,85 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [219054] = 22, - ACTIONS(2495), 1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [226394] = 22, + ACTIONS(2316), 1, anon_sym_not, - ACTIONS(2499), 1, + ACTIONS(2332), 1, anon_sym_is, - ACTIONS(3826), 1, + ACTIONS(3943), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3949), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - ACTIONS(3844), 1, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3965), 1, anon_sym_PIPE, - ACTIONS(3846), 1, + ACTIONS(3967), 1, anon_sym_AMP, - ACTIONS(3848), 1, + ACTIONS(3969), 1, anon_sym_CARET, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, + STATE(3271), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, + ACTIONS(3947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3840), 2, + ACTIONS(3953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3842), 2, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2503), 7, - sym__newline, + ACTIONS(2306), 7, sym_string_start, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(2501), 12, + ACTIONS(2308), 12, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -234359,94 +242970,133 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [219152] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3844), 1, - anon_sym_PIPE, - ACTIONS(3846), 1, - anon_sym_AMP, - ACTIONS(3848), 1, - anon_sym_CARET, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, + [226492] = 4, + STATE(3408), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, + ACTIONS(201), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(197), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3840), 2, + 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, - ACTIONS(3842), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [226554] = 5, + ACTIONS(3997), 1, + anon_sym_EQ, + STATE(2898), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2556), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 7, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 12, 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [219250] = 4, - STATE(2830), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2554), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [226618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 25, + ACTIONS(3121), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -234467,12 +243117,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2473), 25, + ACTIONS(3123), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -234493,16 +243144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [219312] = 4, - STATE(4733), 1, + [226678] = 4, + STATE(3007), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, + ACTIONS(2768), 2, sym_string_start, anon_sym_LF, - ACTIONS(217), 48, + ACTIONS(2770), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -234551,41 +243202,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [219374] = 4, - STATE(2810), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [226740] = 6, + ACTIONS(3999), 1, + anon_sym_DOT, + ACTIONS(4002), 1, + anon_sym_QMARK_DOT, + STATE(2908), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, + ACTIONS(2007), 24, sym_string_start, - anon_sym_LF, - ACTIONS(2857), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACK, + 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_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -234594,41 +243231,46 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + ACTIONS(2009), 24, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [219436] = 9, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3887), 1, - anon_sym_and, - ACTIONS(3889), 1, - anon_sym_PLUS, + [226806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(3125), 25, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 19, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -234638,6 +243280,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, @@ -234648,14 +243292,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2469), 23, - sym__newline, + ACTIONS(3127), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -234672,18 +243319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [219508] = 4, - STATE(2803), 1, - aux_sym_dotted_name_repeat1, + [226866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 25, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -234704,12 +243349,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2477), 25, + ACTIONS(3045), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -234730,18 +243376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [219570] = 4, - STATE(2785), 1, - aux_sym_union_type_repeat1, + [226926] = 6, + ACTIONS(4005), 1, + anon_sym_DOT, + ACTIONS(4008), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 25, - anon_sym_DOT, + STATE(2911), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 23, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -234762,15 +243411,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2485), 25, - sym__newline, + ACTIONS(2441), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -234788,14 +243436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [219632] = 3, + [226992] = 4, + STATE(3007), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2936), 2, + ACTIONS(2768), 2, sym_string_start, anon_sym_LF, - ACTIONS(2934), 49, + ACTIONS(2770), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -234803,7 +243453,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234845,28 +243494,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [219692] = 7, - ACTIONS(3906), 1, - anon_sym_not, - ACTIONS(3909), 1, - anon_sym_is, - STATE(2810), 1, + [227054] = 4, + STATE(3007), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2863), 2, + ACTIONS(2768), 2, sym_string_start, anon_sym_LF, - ACTIONS(3903), 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(2861), 39, + ACTIONS(2770), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -234877,6 +243514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -234884,6 +243522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -234898,6 +243537,13 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, @@ -234906,14 +243552,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [219760] = 3, + [227116] = 4, + STATE(3007), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 2, + ACTIONS(2768), 2, sym_string_start, anon_sym_LF, - ACTIONS(2938), 49, + ACTIONS(2770), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -234921,7 +243569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234963,40 +243610,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [219820] = 3, - ACTIONS(5), 2, + [227178] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2944), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2942), 49, + ACTIONS(3103), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3105), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -235005,46 +243661,88 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + [227238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [219880] = 12, - ACTIONS(3861), 1, + ACTIONS(3143), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3863), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3869), 1, anon_sym_QMARK_DOT, - ACTIONS(3883), 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, + [227298] = 10, + ACTIONS(3943), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LBRACK, + ACTIONS(3949), 1, + anon_sym_STAR_STAR, + ACTIONS(3951), 1, + anon_sym_QMARK_DOT, + ACTIONS(3959), 1, anon_sym_QMARK_LBRACK, - STATE(3201), 1, + STATE(3271), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3873), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, + ACTIONS(1940), 20, sym_string_start, anon_sym_COMMA, anon_sym_RPAREN, @@ -235052,6 +243750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -235063,7 +243763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 22, + ACTIONS(1942), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -235074,9 +243774,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, @@ -235086,40 +243788,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [219958] = 3, - ACTIONS(5), 2, + [227372] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2946), 49, + ACTIONS(3147), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3149), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -235128,32 +243839,21 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [220018] = 4, + [227432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2828), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2570), 24, + ACTIONS(3151), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -235175,12 +243875,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2572), 25, + ACTIONS(3153), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -235201,25 +243902,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [220080] = 10, - ACTIONS(3861), 1, + [227492] = 10, + ACTIONS(3943), 1, anon_sym_LPAREN, - ACTIONS(3863), 1, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + ACTIONS(3949), 1, anon_sym_STAR_STAR, - ACTIONS(3869), 1, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - ACTIONS(3883), 1, + ACTIONS(3959), 1, anon_sym_QMARK_LBRACK, - STATE(3201), 1, + STATE(3271), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 20, + ACTIONS(1940), 20, sym_string_start, anon_sym_COMMA, anon_sym_RPAREN, @@ -235240,7 +243941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 24, + ACTIONS(1942), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -235265,18 +243966,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [220154] = 4, - STATE(2833), 1, - aux_sym_dotted_name_repeat1, + [227566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 25, + ACTIONS(3155), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -235297,12 +243996,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2477), 25, - sym__newline, + ACTIONS(3157), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -235323,40 +244023,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [220216] = 3, - ACTIONS(5), 2, + [227626] = 4, + ACTIONS(4011), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 2, + ACTIONS(1973), 24, sym_string_start, - anon_sym_LF, - ACTIONS(2950), 49, - 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_EQ, - anon_sym_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -235365,31 +244048,18 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [220276] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(1975), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -235400,6 +244070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -235410,21 +244081,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [227688] = 12, + ACTIONS(3943), 1, anon_sym_LPAREN, + ACTIONS(3945), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3949), 1, anon_sym_STAR_STAR, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3955), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -235435,17 +244123,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, - [220336] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2365), 25, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -235453,11 +244135,9 @@ 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, @@ -235467,112 +244147,126 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2367), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [227766] = 16, + ACTIONS(3943), 1, anon_sym_LPAREN, + ACTIONS(3945), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3949), 1, anon_sym_STAR_STAR, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3967), 1, anon_sym_AMP, + ACTIONS(3969), 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, - [220396] = 9, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(3887), 1, - anon_sym_and, - ACTIONS(3889), 1, - anon_sym_PLUS, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, + ACTIONS(3947), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 11, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, + ACTIONS(3953), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + 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, - ACTIONS(2449), 16, + sym_float, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, + 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_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, - [220468] = 7, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(3887), 1, - anon_sym_and, - ACTIONS(3889), 1, - anon_sym_PLUS, + [227852] = 15, + ACTIONS(3943), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LBRACK, + ACTIONS(3949), 1, + anon_sym_STAR_STAR, + ACTIONS(3951), 1, + anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3969), 1, + anon_sym_CARET, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 22, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3955), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + 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(1942), 22, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -235580,10 +244274,9 @@ 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, @@ -235593,158 +244286,149 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 24, - sym__newline, - sym_string_start, - anon_sym_COMMA, + [227936] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3841), 1, anon_sym_LPAREN, + ACTIONS(3843), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3847), 1, anon_sym_STAR_STAR, + ACTIONS(3849), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(3855), 1, anon_sym_PIPE, + ACTIONS(3857), 1, anon_sym_AMP, + ACTIONS(3859), 1, anon_sym_CARET, + ACTIONS(3863), 1, + anon_sym_QMARK_LBRACK, + STATE(3051), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3851), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3853), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3861), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [220536] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2896), 2, + ACTIONS(2458), 7, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(2894), 49, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2386), 18, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [228030] = 5, + ACTIONS(4013), 1, + anon_sym_PIPE, + STATE(2927), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, anon_sym_AMP, 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [220596] = 4, - STATE(3348), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(217), 48, + ACTIONS(1956), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [220658] = 4, - STATE(2785), 1, - aux_sym_union_type_repeat1, + [228094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 25, + ACTIONS(3165), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -235765,12 +244449,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2538), 25, - sym__newline, + ACTIONS(3163), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -235791,11 +244476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [220720] = 3, + [228154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -235821,7 +244506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(3167), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -235848,34 +244533,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [220780] = 10, - ACTIONS(3861), 1, + [228214] = 13, + ACTIONS(3943), 1, anon_sym_LPAREN, - ACTIONS(3863), 1, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + ACTIONS(3949), 1, anon_sym_STAR_STAR, - ACTIONS(3869), 1, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - ACTIONS(3883), 1, + ACTIONS(3959), 1, anon_sym_QMARK_LBRACK, - STATE(3201), 1, + STATE(3271), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 20, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3955), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 16, sym_string_start, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -235887,7 +244577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 24, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -235898,11 +244588,9 @@ 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, @@ -235912,20 +244600,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [220854] = 6, - ACTIONS(3912), 1, - anon_sym_DOT, - ACTIONS(3915), 1, - anon_sym_QMARK_DOT, + [228294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2828), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 23, + ACTIONS(3173), 25, + anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -235947,14 +244630,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2545), 24, + ACTIONS(3171), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -235972,48 +244657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [220920] = 10, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [228354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 19, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - 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, - sym_float, - ACTIONS(2574), 25, + ACTIONS(3177), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -236025,7 +244677,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, @@ -236036,21 +244687,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [220994] = 6, - ACTIONS(3920), 1, - anon_sym_DOT, - ACTIONS(3923), 1, + ACTIONS(3175), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - STATE(2830), 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, + [228414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 24, + ACTIONS(3181), 25, + anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -236071,14 +244744,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2555), 24, + ACTIONS(3179), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -236096,23 +244771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221060] = 4, - STATE(2857), 1, + [228474] = 4, + STATE(2898), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 24, + ACTIONS(1954), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -236127,7 +244803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2536), 26, + ACTIONS(1956), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -236143,7 +244819,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, @@ -236154,11 +244829,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [221122] = 3, + [228536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 25, + ACTIONS(3185), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -236184,7 +244859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3201), 26, + ACTIONS(3183), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -236211,50 +244886,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221182] = 4, - STATE(2931), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + [228596] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 25, + ACTIONS(2803), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2801), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2473), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -236263,156 +244928,267 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [221244] = 4, - STATE(2785), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [228656] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 25, + ACTIONS(2807), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2805), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2534), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, + [228716] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3943), 1, anon_sym_LPAREN, + ACTIONS(3945), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3949), 1, anon_sym_STAR_STAR, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3965), 1, + anon_sym_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP, + ACTIONS(3969), 1, + anon_sym_CARET, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3953), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - [221306] = 22, - ACTIONS(3673), 1, + ACTIONS(2396), 12, + anon_sym_else, + 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, + [228814] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3943), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, + ACTIONS(3949), 1, + anon_sym_STAR_STAR, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - ACTIONS(3697), 1, + ACTIONS(3959), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - ACTIONS(3930), 1, - anon_sym_not, - ACTIONS(3932), 1, - anon_sym_PLUS, - ACTIONS(3934), 1, - anon_sym_DASH, - ACTIONS(3938), 1, + ACTIONS(3965), 1, anon_sym_PIPE, - ACTIONS(3940), 1, + ACTIONS(3967), 1, anon_sym_AMP, - ACTIONS(3942), 1, + ACTIONS(3969), 1, anon_sym_CARET, - ACTIONS(3948), 1, - anon_sym_is, - STATE(2520), 1, + STATE(3271), 1, sym_argument_list, - STATE(3396), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, + ACTIONS(3947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3936), 2, + ACTIONS(3953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3926), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3946), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 7, sym_string_start, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(2365), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2384), 12, 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, - [221404] = 3, + [228912] = 4, + ACTIONS(4016), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 25, + ACTIONS(2154), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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(2156), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -236423,6 +245199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -236433,22 +245210,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + [228974] = 5, + ACTIONS(4018), 1, + anon_sym_PIPE, + STATE(2941), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 23, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -236460,84 +245242,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221464] = 4, - STATE(2797), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(217), 48, + ACTIONS(1956), 26, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [221526] = 5, - ACTIONS(3950), 1, - anon_sym_in, - ACTIONS(3952), 1, - anon_sym_not, + [229038] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 23, + ACTIONS(3193), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -236550,7 +245299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(3191), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -236577,26 +245326,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221590] = 5, - ACTIONS(3950), 1, + [229098] = 4, + STATE(2898), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(2156), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - ACTIONS(3954), 1, + 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, + [229160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 23, + ACTIONS(3197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -236609,7 +245414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(3195), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -236636,98 +245441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221654] = 21, - ACTIONS(3861), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3875), 1, - anon_sym_PIPE, - ACTIONS(3877), 1, - anon_sym_AMP, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3895), 1, - anon_sym_not, - ACTIONS(3899), 1, - anon_sym_is, - STATE(3201), 1, - sym_argument_list, - STATE(3403), 1, - aux_sym_comparison_operator_repeat1, + [229220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3873), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3893), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3897), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2365), 17, + ACTIONS(3201), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [221750] = 4, - STATE(2857), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2534), 24, + ACTIONS(3199), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -236742,38 +245498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2532), 26, - anon_sym_DOT, - anon_sym_as, - 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_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, - [221812] = 3, + [229280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 25, + ACTIONS(3205), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -236799,7 +245528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3233), 26, + ACTIONS(3203), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -236826,11 +245555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221872] = 3, + [229340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 25, + ACTIONS(3205), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -236856,7 +245585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3237), 26, + ACTIONS(3203), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -236883,40 +245612,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [221932] = 3, - ACTIONS(5), 2, + [229400] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2881), 49, + ACTIONS(3209), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3207), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, @@ -236925,30 +245663,28 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [221992] = 3, + [229460] = 7, + ACTIONS(676), 1, + anon_sym_if, + ACTIONS(3939), 1, + anon_sym_and, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 25, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -236958,7 +245694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -236970,17 +245705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3079), 26, + ACTIONS(2542), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -236997,22 +245730,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [222052] = 4, - ACTIONS(3785), 1, - anon_sym_EQ, + [229528] = 4, + STATE(2898), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 24, + ACTIONS(2220), 25, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, 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, @@ -237028,11 +245762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2560), 26, + ACTIONS(2222), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -237043,8 +245778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -237055,11 +245788,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222114] = 3, + [229590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 25, + ACTIONS(3213), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -237085,7 +245818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3257), 26, + ACTIONS(3211), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -237112,27 +245845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [222174] = 10, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, - ACTIONS(3956), 1, - anon_sym_and, - ACTIONS(3958), 1, - anon_sym_or, + [229650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 21, + ACTIONS(3217), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -237142,7 +245863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -237153,47 +245875,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2357), 22, + ACTIONS(3215), 26, sym_string_start, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - 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, - [222248] = 5, - ACTIONS(3960), 1, - anon_sym_in, - ACTIONS(3962), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 24, - sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -237209,22 +245902,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 25, + [229710] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3217), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -237235,94 +245932,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222312] = 22, - ACTIONS(3673), 1, + ACTIONS(3215), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3930), 1, - anon_sym_not, - ACTIONS(3932), 1, + anon_sym_QMARK_DOT, anon_sym_PLUS, - ACTIONS(3934), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3938), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(3940), 1, anon_sym_AMP, - ACTIONS(3942), 1, anon_sym_CARET, - ACTIONS(3948), 1, - anon_sym_is, - STATE(2520), 1, - sym_argument_list, - STATE(3004), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3936), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3926), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3946), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2365), 17, - anon_sym_DOT, - anon_sym_as, - 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, - [222410] = 5, - ACTIONS(3964), 1, - anon_sym_EQ, - STATE(2961), 1, - aux_sym_union_type_repeat1, + [229770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 24, + ACTIONS(3221), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -237344,12 +245989,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 25, + ACTIONS(3219), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -237370,20 +246016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [222474] = 7, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, - ACTIONS(3956), 1, - anon_sym_and, + [229830] = 4, + STATE(2941), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 23, + ACTIONS(2392), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -237392,6 +246031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -237407,10 +246047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2449), 23, + ACTIONS(2390), 26, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -237419,6 +246061,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_DASH, anon_sym_SLASH, @@ -237431,32 +246074,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222542] = 10, - ACTIONS(3861), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [229892] = 5, + ACTIONS(4021), 1, + anon_sym_EQ, + STATE(2955), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 20, + ACTIONS(2554), 24, sym_string_start, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, + 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, @@ -237469,8 +246105,9 @@ 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(2574), 24, + ACTIONS(2556), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -237485,6 +246122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -237495,32 +246133,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222616] = 10, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [229956] = 4, + STATE(2955), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 20, - sym__newline, + ACTIONS(1954), 24, sym_string_start, 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_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -237533,12 +246162,14 @@ 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(2518), 24, + ACTIONS(1956), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -237549,6 +246180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -237559,52 +246191,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222690] = 6, - ACTIONS(666), 1, + [230018] = 9, + ACTIONS(586), 1, anon_sym_if, - ACTIONS(3889), 1, + ACTIONS(3836), 1, anon_sym_PLUS, + ACTIONS(3879), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2445), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - anon_sym_lambda, + ACTIONS(2276), 6, 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(2443), 24, + ACTIONS(2244), 11, sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -237612,32 +246232,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_QMARK_LBRACK, - sym_float, - [222756] = 5, - ACTIONS(3960), 1, - anon_sym_in, - ACTIONS(3966), 1, + ACTIONS(2242), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [230090] = 4, + STATE(2955), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 24, + ACTIONS(2154), 24, sym_string_start, - anon_sym_COLON, + 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_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -237652,22 +246285,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 25, + ACTIONS(2156), 26, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -237678,13 +246312,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222820] = 4, - STATE(2898), 1, + [230152] = 4, + STATE(2955), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 24, + ACTIONS(2220), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -237709,7 +246343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2566), 26, + ACTIONS(2222), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -237736,78 +246370,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [222882] = 6, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(3889), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 23, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2447), 24, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [222948] = 6, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, + [230214] = 4, + STATE(2955), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 23, + ACTIONS(2192), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -237816,6 +246385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -237831,10 +246401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2445), 24, + ACTIONS(2194), 26, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -237856,99 +246428,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223014] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3861), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, - anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3875), 1, - anon_sym_PIPE, - ACTIONS(3877), 1, - anon_sym_AMP, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3873), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 12, - anon_sym_else, - 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, - [223112] = 4, - STATE(2857), 1, + [230276] = 4, + STATE(2898), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 24, + ACTIONS(2192), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -237963,7 +246460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 26, + ACTIONS(2194), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -237979,7 +246476,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, @@ -237990,18 +246486,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223174] = 4, - STATE(2961), 1, - aux_sym_union_type_repeat1, + [230338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 25, + ACTIONS(3227), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -238022,12 +246516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2538), 25, + ACTIONS(3225), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -238048,43 +246543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [223236] = 5, - ACTIONS(614), 1, - anon_sym_if, + [230398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 24, - sym_string_start, - 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_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(2461), 24, + ACTIONS(3231), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238096,7 +246563,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, @@ -238107,16 +246573,45 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223300] = 5, - ACTIONS(614), 1, + ACTIONS(3229), 26, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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, + [230458] = 6, + ACTIONS(664), 1, anon_sym_if, + ACTIONS(4023), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 24, + ACTIONS(2244), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -238125,7 +246620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -238141,7 +246635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2461), 24, + ACTIONS(2242), 24, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -238166,26 +246660,49 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223364] = 5, - ACTIONS(614), 1, - anon_sym_if, + [230524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 24, + ACTIONS(3235), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(3233), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -238200,7 +246717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2465), 24, + [230584] = 5, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 24, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -238225,16 +246751,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223428] = 5, - ACTIONS(614), 1, + ACTIONS(2266), 24, + sym_string_start, + 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_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, + [230648] = 6, + ACTIONS(664), 1, anon_sym_if, + ACTIONS(4023), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 24, + ACTIONS(2258), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -238243,7 +246796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -238259,7 +246811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(191), 24, + ACTIONS(2256), 24, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -238284,16 +246836,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223492] = 5, - ACTIONS(614), 1, + [230714] = 5, + ACTIONS(664), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 24, + ACTIONS(2252), 24, + anon_sym_DOT, + anon_sym_as, + 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_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, + ACTIONS(2254), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -238318,7 +246895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2441), 24, + [230778] = 5, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 24, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -238343,32 +246929,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [223556] = 10, - ACTIONS(3826), 1, + ACTIONS(2254), 24, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3828), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3836), 1, anon_sym_QMARK_DOT, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 20, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -238381,42 +246952,18 @@ 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(2518), 24, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [223630] = 5, - ACTIONS(666), 1, + [230842] = 5, + ACTIONS(664), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(191), 23, + ACTIONS(2236), 24, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -238430,6 +246977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -238440,18 +246988,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(189), 25, - sym__newline, + ACTIONS(2238), 24, sym_string_start, 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_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -238466,41 +247013,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [223694] = 4, - STATE(3074), 1, - sym_dictionary, - ACTIONS(5), 2, + [230906] = 5, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(217), 48, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_PLUS, - anon_sym_DQUOTE, 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(133), 24, + sym_string_start, + 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_PLUS, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -238509,32 +247066,24 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [223756] = 4, + [230970] = 5, + ACTIONS(664), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2895), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2570), 24, + ACTIONS(2400), 24, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238546,6 +247095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -238556,18 +247106,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2572), 25, - sym__newline, + ACTIONS(2402), 24, sym_string_start, 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_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -238582,18 +247131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [223818] = 5, - ACTIONS(666), 1, - anon_sym_if, + [231034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 23, + ACTIONS(3239), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238615,12 +247161,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2451), 25, - sym__newline, + ACTIONS(3237), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -238641,26 +247188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [223882] = 9, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(2447), 1, - anon_sym_QMARK_DOT, - ACTIONS(3818), 1, - anon_sym_PLUS, - ACTIONS(3956), 1, - anon_sym_and, + [231094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(3243), 25, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 20, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238670,7 +247206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -238681,15 +247218,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2469), 22, + ACTIONS(3241), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, 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, @@ -238704,20 +247245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [223954] = 6, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(3889), 1, - anon_sym_PLUS, + [231154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 23, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238739,15 +247275,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2455), 24, - sym__newline, + ACTIONS(3245), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -238764,11 +247302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224020] = 3, + [231214] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 25, + ACTIONS(3251), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -238794,7 +247332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3305), 26, + ACTIONS(3249), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -238821,15 +247359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224080] = 3, + [231274] = 5, + ACTIONS(676), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 25, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238851,13 +247392,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3299), 26, + ACTIONS(2402), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -238878,18 +247418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224140] = 5, - ACTIONS(666), 1, - anon_sym_if, + [231338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 23, + ACTIONS(3189), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -238911,12 +247448,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2439), 25, - sym__newline, + ACTIONS(3187), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -238937,140 +247475,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224204] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, + [231398] = 20, + ACTIONS(2332), 1, anon_sym_is, - ACTIONS(3826), 1, + ACTIONS(3943), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3945), 1, anon_sym_LBRACK, - ACTIONS(3834), 1, + ACTIONS(3949), 1, anon_sym_STAR_STAR, - ACTIONS(3836), 1, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, - ACTIONS(3844), 1, - anon_sym_PIPE, - ACTIONS(3846), 1, - anon_sym_AMP, - ACTIONS(3848), 1, - anon_sym_CARET, - ACTIONS(3856), 1, + ACTIONS(3959), 1, anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3840), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3842), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 7, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 12, - anon_sym_else, - 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, - [224302] = 21, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3838), 1, - anon_sym_not, - ACTIONS(3844), 1, + ACTIONS(3965), 1, anon_sym_PIPE, - ACTIONS(3846), 1, + ACTIONS(3967), 1, anon_sym_AMP, - ACTIONS(3848), 1, + ACTIONS(3969), 1, anon_sym_CARET, - ACTIONS(3854), 1, - anon_sym_is, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, + STATE(3271), 1, sym_argument_list, - STATE(3380), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, + ACTIONS(3947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3840), 2, + ACTIONS(3953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3842), 2, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3850), 2, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3830), 3, + ACTIONS(2312), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3852), 4, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym__newline, + ACTIONS(2458), 7, sym_string_start, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(2365), 17, + ACTIONS(2386), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -239080,6 +247540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, sym_integer, @@ -239088,18 +247549,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [224398] = 5, - ACTIONS(666), 1, - anon_sym_if, + [231492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 23, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239121,12 +247579,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 25, - sym__newline, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -239147,77 +247606,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224462] = 5, - ACTIONS(666), 1, - anon_sym_if, + [231552] = 21, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, + anon_sym_PLUS, + ACTIONS(4031), 1, + anon_sym_DASH, + ACTIONS(4035), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_CARET, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 23, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2386), 18, anon_sym_DOT, anon_sym_as, + 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_not, anon_sym_and, anon_sym_or, - 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(2459), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [224526] = 5, - ACTIONS(666), 1, - anon_sym_if, + [231648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 23, + ACTIONS(2310), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239239,12 +247711,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2463), 25, - sym__newline, + ACTIONS(2356), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -239265,18 +247738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224590] = 6, - ACTIONS(630), 1, + [231708] = 5, + ACTIONS(676), 1, anon_sym_if, - ACTIONS(3824), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2445), 23, + ACTIONS(129), 23, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -239300,7 +247771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2443), 24, + ACTIONS(133), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -239309,6 +247780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -239325,63 +247797,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224656] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3673), 1, + [231772] = 22, + ACTIONS(3618), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - ACTIONS(3697), 1, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, + ACTIONS(4027), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4029), 1, anon_sym_PLUS, - ACTIONS(3934), 1, + ACTIONS(4031), 1, anon_sym_DASH, - ACTIONS(3938), 1, + ACTIONS(4035), 1, anon_sym_PIPE, - ACTIONS(3940), 1, + ACTIONS(4037), 1, anon_sym_AMP, - ACTIONS(3942), 1, + ACTIONS(4039), 1, anon_sym_CARET, - STATE(2520), 1, + ACTIONS(4045), 1, + anon_sym_not, + ACTIONS(4049), 1, + anon_sym_is, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(3421), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, + ACTIONS(4025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3936), 2, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, + ACTIONS(4043), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 4, + ACTIONS(4047), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 7, + ACTIONS(2356), 7, sym_string_start, anon_sym_COMMA, anon_sym_DASH_GT, @@ -239389,33 +247855,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(2522), 12, + ACTIONS(2310), 17, + anon_sym_DOT, + anon_sym_as, + 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, - [224756] = 6, - ACTIONS(630), 1, - anon_sym_if, - ACTIONS(3824), 1, - anon_sym_PLUS, + [231870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 23, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239437,15 +247903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 24, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -239462,15 +247930,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [224822] = 3, + [231930] = 10, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 25, + ACTIONS(1940), 19, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + 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, + sym_float, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239482,6 +247983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -239492,19 +247994,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3295), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [232004] = 10, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 19, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -239517,17 +248031,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, - [224882] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3193), 25, + ACTIONS(1942), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239539,6 +248047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -239549,21 +248058,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3191), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [232078] = 12, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1940), 17, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -239574,17 +248099,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, - [224942] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3189), 25, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239592,11 +248111,10 @@ 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_DASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -239606,42 +248124,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3187), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [232156] = 17, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4031), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(4037), 1, anon_sym_AMP, + ACTIONS(4039), 1, anon_sym_CARET, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + 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, - [225002] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3289), 25, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239649,11 +248183,9 @@ 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, @@ -239663,42 +248195,57 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3291), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [232244] = 16, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4031), 1, anon_sym_DASH, + ACTIONS(4039), 1, + anon_sym_CARET, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + 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, - [225062] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3185), 25, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239706,11 +248253,9 @@ 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, @@ -239720,42 +248265,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3183), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [232330] = 15, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4031), 1, anon_sym_DASH, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4041), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + 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, - [225122] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3181), 25, + ACTIONS(1942), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239763,11 +248322,9 @@ 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, @@ -239777,21 +248334,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3179), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [232414] = 14, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4031), 1, anon_sym_DASH, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1940), 16, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -239802,17 +248378,46 @@ 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, - [225182] = 3, + ACTIONS(1942), 22, + anon_sym_DOT, + anon_sym_as, + 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_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, + [232496] = 7, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(4023), 1, + anon_sym_PLUS, + ACTIONS(4051), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 25, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -239822,8 +248427,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_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -239834,19 +248439,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3175), 26, + ACTIONS(2542), 23, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -239861,11 +248463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225242] = 3, + [232564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 25, + ACTIONS(3289), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -239891,7 +248493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3171), 26, + ACTIONS(3287), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -239918,49 +248520,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225302] = 3, + [232624] = 9, + ACTIONS(676), 1, + anon_sym_if, + ACTIONS(3939), 1, + anon_sym_and, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_lambda, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, 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(3287), 26, + ACTIONS(2244), 11, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -239968,36 +248561,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, - [225362] = 6, - ACTIONS(3968), 1, + ACTIONS(2242), 16, anon_sym_DOT, - ACTIONS(3971), 1, - anon_sym_QMARK_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [232696] = 5, + ACTIONS(3991), 1, + anon_sym_in, + ACTIONS(4053), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2895), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 23, + ACTIONS(197), 23, + anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -240010,14 +248615,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2545), 24, - sym__newline, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -240035,52 +248642,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225428] = 5, + [232760] = 6, + ACTIONS(676), 1, + anon_sym_if, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3714), 5, - sym_string_start, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(3169), 12, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 23, + anon_sym_DOT, + anon_sym_as, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(217), 15, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_in, anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(221), 19, - anon_sym_COLON, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2244), 24, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -240089,43 +248695,33 @@ 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, - [225492] = 12, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, + sym_float, + [232826] = 4, + STATE(2874), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3842), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, + ACTIONS(2768), 25, sym__newline, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, @@ -240136,11 +248732,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(2518), 22, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -240148,9 +248746,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, @@ -240160,56 +248760,132 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [225570] = 5, - ACTIONS(3974), 1, - anon_sym_PIPE, - STATE(2898), 1, - aux_sym_union_type_repeat1, + [232888] = 9, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(4023), 1, + anon_sym_PLUS, + ACTIONS(4051), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 23, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 10, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2278), 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, + ACTIONS(2242), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_or, + anon_sym_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [232960] = 18, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, + anon_sym_PLUS, + ACTIONS(4031), 1, + anon_sym_DASH, + ACTIONS(4035), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_CARET, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(2505), 26, + ACTIONS(2386), 22, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -240219,15 +248895,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [225634] = 3, + [233050] = 9, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(4023), 1, + anon_sym_PLUS, + ACTIONS(4051), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 25, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, + anon_sym_or, + ACTIONS(2276), 20, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -240237,8 +248924,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_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -240249,19 +248935,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3157), 26, + ACTIONS(2278), 22, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -240276,15 +248958,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225694] = 3, + [233122] = 7, + ACTIONS(664), 1, + anon_sym_if, + ACTIONS(4023), 1, + anon_sym_PLUS, + ACTIONS(4051), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 25, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -240294,8 +248983,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_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -240306,19 +248995,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3153), 26, + ACTIONS(2244), 23, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -240333,43 +249019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225754] = 3, + [233190] = 4, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_not, - anon_sym_and, - anon_sym_or, - 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(3129), 26, + ACTIONS(2768), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -240390,11 +249051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225814] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3131), 25, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -240420,13 +249077,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3129), 26, + [233252] = 4, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -240447,11 +249109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [225874] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3115), 25, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -240477,166 +249135,163 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3113), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [233314] = 22, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4031), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4035), 1, anon_sym_PIPE, + ACTIONS(4037), 1, anon_sym_AMP, + ACTIONS(4039), 1, anon_sym_CARET, + ACTIONS(4045), 1, + anon_sym_not, + ACTIONS(4049), 1, + anon_sym_is, + STATE(2462), 1, + sym_argument_list, + STATE(3058), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(4043), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4047), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [225934] = 4, - STATE(2857), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 24, + ACTIONS(2356), 7, sym_string_start, 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_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(2483), 26, + ACTIONS(2310), 17, anon_sym_DOT, anon_sym_as, 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_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, - [225996] = 10, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, + [233412] = 7, + ACTIONS(4058), 1, + anon_sym_not, + ACTIONS(4061), 1, + anon_sym_is, + STATE(3007), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 19, + ACTIONS(2839), 2, sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - 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_LF, + ACTIONS(4055), 7, + anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 25, + anon_sym_GT, + ACTIONS(2841), 39, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_not, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PERCENT, + anon_sym_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [226070] = 5, - ACTIONS(630), 1, + [233480] = 10, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(664), 1, anon_sym_if, + ACTIONS(4023), 1, + anon_sym_PLUS, + ACTIONS(4051), 1, + anon_sym_and, + ACTIONS(4064), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2453), 23, - anon_sym_DOT, + ACTIONS(2059), 21, anon_sym_as, anon_sym_else, anon_sym_lambda, @@ -240647,8 +249302,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_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -240659,11 +249313,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2451), 25, + ACTIONS(2057), 22, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + 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, + [233554] = 4, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 25, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -240685,29 +249368,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226134] = 6, - ACTIONS(630), 1, + ACTIONS(2770), 25, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(3824), 1, - anon_sym_PLUS, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [233616] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 23, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -240720,15 +249426,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2455), 24, + ACTIONS(201), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -240745,16 +249453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226200] = 5, - ACTIONS(630), 1, + [233680] = 5, + ACTIONS(676), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 23, + ACTIONS(2236), 23, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -240778,7 +249486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 25, + ACTIONS(2238), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -240804,25 +249512,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226264] = 5, - ACTIONS(3977), 1, - anon_sym_EQ, - STATE(2857), 1, + [233744] = 4, + STATE(2739), 1, aux_sym_union_type_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 24, + ACTIONS(2758), 2, sym_string_start, + anon_sym_LF, + ACTIONS(2760), 48, + 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_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -240831,16 +249555,33 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - ACTIONS(2560), 25, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [233806] = 5, + ACTIONS(676), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -240852,7 +249593,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, @@ -240863,31 +249603,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [226328] = 10, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 19, + ACTIONS(2254), 25, sym_string_start, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, @@ -240900,42 +249627,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(2518), 25, - anon_sym_DOT, - anon_sym_as, + [233870] = 5, + ACTIONS(676), 1, 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_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, - [226402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 25, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -240957,13 +249662,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3057), 26, + ACTIONS(2254), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -240984,15 +249688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226462] = 3, + [233934] = 5, + ACTIONS(676), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 25, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -241014,13 +249721,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3045), 26, + ACTIONS(2266), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -241041,49 +249747,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226522] = 3, - ACTIONS(3), 2, + [233998] = 4, + ACTIONS(3809), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 25, + ACTIONS(2554), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2556), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(3045), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - 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, @@ -241092,22 +249790,33 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [226582] = 5, - ACTIONS(630), 1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [234060] = 6, + ACTIONS(676), 1, anon_sym_if, + ACTIONS(3941), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 23, + ACTIONS(2256), 23, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -241131,7 +249840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 25, + ACTIONS(2258), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -241140,7 +249849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -241157,15 +249865,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226646] = 3, + [234126] = 10, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3620), 1, + anon_sym_LBRACK, + ACTIONS(3628), 1, + anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 25, + ACTIONS(2069), 19, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + 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, + sym_float, + ACTIONS(2067), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -241177,6 +249918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -241187,168 +249929,240 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3069), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [234200] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3618), 1, anon_sym_LPAREN, + ACTIONS(3620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, + ACTIONS(3650), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4027), 1, + anon_sym_STAR_STAR, + ACTIONS(4029), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4031), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4035), 1, anon_sym_PIPE, + ACTIONS(4037), 1, anon_sym_AMP, + ACTIONS(4039), 1, anon_sym_CARET, + STATE(2462), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4025), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4033), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [226706] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3075), 25, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 12, 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_not, - anon_sym_and, - anon_sym_or, - 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(3073), 26, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + [234300] = 17, + ACTIONS(3943), 1, anon_sym_LPAREN, + ACTIONS(3945), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3949), 1, anon_sym_STAR_STAR, + ACTIONS(3951), 1, anon_sym_QMARK_DOT, + ACTIONS(3959), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3965), 1, + anon_sym_PIPE, + ACTIONS(3967), 1, + anon_sym_AMP, + ACTIONS(3969), 1, + anon_sym_CARET, + STATE(3271), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3953), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(3955), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3957), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2458), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - [226766] = 12, - ACTIONS(3673), 1, + ACTIONS(2386), 22, + anon_sym_DOT, + anon_sym_as, + 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_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, + [234388] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3618), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - ACTIONS(3697), 1, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, + ACTIONS(4027), 1, anon_sym_STAR_STAR, - STATE(2520), 1, + ACTIONS(4029), 1, + anon_sym_PLUS, + ACTIONS(4031), 1, + anon_sym_DASH, + ACTIONS(4035), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, + anon_sym_AMP, + ACTIONS(4039), 1, + anon_sym_CARET, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, + ACTIONS(4025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3936), 2, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 23, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 12, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [226844] = 5, - ACTIONS(3979), 1, - anon_sym_EQ, - STATE(2785), 1, - aux_sym_union_type_repeat1, + [234488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 24, + ACTIONS(3033), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -241370,12 +250184,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 25, - sym__newline, + ACTIONS(3035), 26, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -241396,152 +250211,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [226908] = 17, - ACTIONS(3673), 1, + [234548] = 23, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3618), 1, anon_sym_LPAREN, - ACTIONS(3675), 1, + ACTIONS(3620), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, + ACTIONS(3628), 1, anon_sym_QMARK_DOT, - ACTIONS(3697), 1, + ACTIONS(3650), 1, anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, + ACTIONS(4027), 1, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + ACTIONS(4029), 1, anon_sym_PLUS, - ACTIONS(3934), 1, + ACTIONS(4031), 1, anon_sym_DASH, - ACTIONS(3940), 1, + ACTIONS(4035), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, anon_sym_AMP, - ACTIONS(3942), 1, + ACTIONS(4039), 1, anon_sym_CARET, - STATE(2520), 1, + STATE(2462), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, + ACTIONS(4025), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3936), 2, + ACTIONS(4033), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, + ACTIONS(4041), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 22, + ACTIONS(2386), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2384), 12, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [226996] = 16, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_PLUS, - ACTIONS(3934), 1, - anon_sym_DASH, - ACTIONS(3942), 1, - anon_sym_CARET, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [234648] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3936), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(2007), 2, sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - 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(2518), 22, + anon_sym_LF, + ACTIONS(2009), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [227082] = 3, + [234708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 25, + ACTIONS(3037), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -241567,7 +250375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3283), 26, + ACTIONS(3039), 26, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -241594,51 +250402,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227142] = 5, - ACTIONS(630), 1, - anon_sym_if, - ACTIONS(3), 2, + [234768] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 23, + ACTIONS(2825), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2827), 49, 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2463), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -241647,17 +250444,26 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [227206] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [234828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 25, + ACTIONS(3147), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -241683,13 +250489,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3095), 26, + ACTIONS(3149), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -241710,11 +250515,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227266] = 3, + [234887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 25, + ACTIONS(3241), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(3243), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -241740,19 +250571,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3279), 26, + [234946] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1973), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -241767,18 +250600,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227326] = 4, - ACTIONS(3981), 1, - anon_sym_DASH_GT, + ACTIONS(1975), 26, + anon_sym_DOT, + anon_sym_as, + 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_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, + [235005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 24, + ACTIONS(2154), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -241798,7 +250656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 26, + ACTIONS(2156), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -241825,18 +250683,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [227388] = 4, - ACTIONS(3983), 1, - anon_sym_DASH_GT, + [235064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 24, + ACTIONS(2033), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -241856,7 +250712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 26, + ACTIONS(2035), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -241883,28 +250739,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [227450] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, + [235123] = 10, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4068), 1, + anon_sym_and, + ACTIONS(4070), 1, + anon_sym_or, + ACTIONS(4072), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 23, - anon_sym_DOT, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 19, anon_sym_as, - anon_sym_if, - anon_sym_for, - 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_and, - anon_sym_or, + anon_sym_not, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -241915,17 +250778,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 26, + ACTIONS(2057), 23, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -241942,16 +250802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227514] = 3, + [235196] = 7, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4068), 1, + anon_sym_and, + ACTIONS(4072), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 25, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 21, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -241960,7 +250826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -241972,17 +250837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3275), 26, + ACTIONS(2244), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -241999,66 +250862,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227574] = 15, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_PLUS, - ACTIONS(3934), 1, - anon_sym_DASH, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, + [235263] = 4, + STATE(3070), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, + ACTIONS(197), 24, + anon_sym_DOT, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, - ACTIONS(3936), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + 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, - ACTIONS(2518), 22, + [235324] = 9, + ACTIONS(2244), 1, + anon_sym_QMARK_DOT, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4068), 1, + anon_sym_and, + ACTIONS(4072), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 3, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_or, + ACTIONS(2276), 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_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -242068,105 +250957,108 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [227658] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3861), 1, + ACTIONS(2278), 23, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3863), 1, anon_sym_LBRACK, - ACTIONS(3867), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(3869), 1, - anon_sym_QMARK_DOT, - ACTIONS(3875), 1, - anon_sym_PIPE, - ACTIONS(3877), 1, - anon_sym_AMP, - ACTIONS(3879), 1, - anon_sym_CARET, - ACTIONS(3883), 1, - anon_sym_QMARK_LBRACK, - STATE(3201), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3871), 2, - anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3873), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3881), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2522), 12, + [235395] = 5, + ACTIONS(201), 1, + anon_sym_LF, + ACTIONS(3778), 1, + sym_string_start, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 16, anon_sym_else, anon_sym_lambda, + anon_sym_LBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [227756] = 6, - ACTIONS(3985), 1, + ACTIONS(197), 32, anon_sym_DOT, - ACTIONS(3988), 1, + 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, - STATE(2931), 1, - aux_sym_dotted_name_repeat1, + 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, + [235458] = 5, + ACTIONS(4074), 1, + anon_sym_in, + ACTIONS(4076), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 24, + ACTIONS(197), 23, + anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -242179,7 +251071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2555), 24, + ACTIONS(201), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -242187,6 +251079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -242204,11 +251097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227822] = 3, + [235521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 25, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -242234,13 +251127,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3109), 26, + ACTIONS(201), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -242261,15 +251153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227882] = 3, + [235580] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 25, + ACTIONS(197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -242291,13 +251184,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3125), 26, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -242318,79 +251210,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [227942] = 14, - ACTIONS(3673), 1, + [235641] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(197), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - ACTIONS(3934), 1, + anon_sym_DQUOTE, anon_sym_DASH, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3936), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 16, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 22, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [228024] = 3, + [235700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 25, + ACTIONS(2310), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -242416,13 +251296,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3137), 26, + ACTIONS(2356), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -242443,15 +251322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228084] = 3, + [235759] = 4, + STATE(3441), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 25, + ACTIONS(197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -242473,13 +251353,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3145), 26, + ACTIONS(201), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -242500,15 +251379,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228144] = 3, + [235820] = 4, + ACTIONS(4021), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 25, + ACTIONS(2554), 24, + sym_string_start, + 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_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(2556), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -242520,6 +251425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -242530,19 +251436,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3149), 26, + [235881] = 4, + STATE(3444), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 24, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -242557,95 +251467,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228204] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3673), 1, - anon_sym_LPAREN, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, - anon_sym_STAR_STAR, - ACTIONS(3932), 1, - anon_sym_PLUS, - ACTIONS(3934), 1, - anon_sym_DASH, - ACTIONS(3938), 1, - anon_sym_PIPE, - ACTIONS(3940), 1, - anon_sym_AMP, - ACTIONS(3942), 1, - anon_sym_CARET, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3936), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 12, 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_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, - [228304] = 5, - ACTIONS(630), 1, - anon_sym_if, + [235942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 23, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -242667,11 +251523,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(189), 25, + ACTIONS(201), 25, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -242693,88 +251549,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228368] = 23, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3673), 1, + [236001] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3681), 1, - anon_sym_QMARK_DOT, - ACTIONS(3697), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(3918), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(3932), 1, + anon_sym_QMARK_DOT, anon_sym_PLUS, - ACTIONS(3934), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(3938), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(3940), 1, anon_sym_AMP, - ACTIONS(3942), 1, anon_sym_CARET, - STATE(2520), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3936), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3944), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3289), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 12, + anon_sym_for, 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [228468] = 3, + [236060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 25, + ACTIONS(3033), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -242800,13 +251635,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3255), 26, + ACTIONS(3035), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -242827,29 +251661,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228528] = 10, - ACTIONS(3826), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3834), 1, - anon_sym_STAR_STAR, - ACTIONS(3836), 1, - anon_sym_QMARK_DOT, - ACTIONS(3856), 1, - anon_sym_QMARK_LBRACK, - STATE(3178), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [236119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 20, + ACTIONS(3037), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(3039), 25, sym__newline, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -242865,11 +251715,17 @@ 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(2574), 24, + [236178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -242891,39 +251747,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [228602] = 9, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, - ACTIONS(3956), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(2447), 10, + ACTIONS(3045), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -242931,45 +251766,80 @@ 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(2449), 17, + sym_float, + [236237] = 5, + ACTIONS(4078), 1, + anon_sym_in, + ACTIONS(4080), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(197), 46, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + 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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [228674] = 7, - ACTIONS(614), 1, - anon_sym_if, - ACTIONS(3818), 1, - anon_sym_PLUS, - ACTIONS(3956), 1, - anon_sym_and, + [236300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 23, + ACTIONS(3073), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -242979,8 +251849,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_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -242991,16 +251861,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 23, + ACTIONS(3075), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -243015,27 +251887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228742] = 10, - ACTIONS(666), 1, - anon_sym_if, - ACTIONS(736), 1, - anon_sym_DOT, - ACTIONS(738), 1, - anon_sym_QMARK_DOT, - ACTIONS(3887), 1, - anon_sym_and, - ACTIONS(3889), 1, - anon_sym_PLUS, - ACTIONS(3991), 1, - anon_sym_or, + [236359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 20, + ACTIONS(3077), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -243045,6 +251905,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, @@ -243055,7 +251917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2357), 23, + ACTIONS(3079), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -243063,6 +251925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -243079,11 +251943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228816] = 3, + [236418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 25, + ACTIONS(3081), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243109,13 +251973,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3043), 26, + ACTIONS(3083), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243136,51 +251999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228876] = 5, - ACTIONS(630), 1, - anon_sym_if, + [236477] = 4, + STATE(3067), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 23, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2439), 25, + ACTIONS(201), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -243195,40 +252030,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [228940] = 9, - ACTIONS(630), 1, + ACTIONS(197), 25, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(3820), 1, + 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_not, anon_sym_and, - ACTIONS(3824), 1, - anon_sym_PLUS, + 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, + [236538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, + ACTIONS(3087), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(2447), 11, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3089), 25, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -243236,33 +252105,18 @@ 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(2449), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [229012] = 3, + sym_float, + [236597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 25, + ACTIONS(3091), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243288,13 +252142,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3161), 26, + ACTIONS(3093), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243315,11 +252168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229072] = 3, + [236656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 25, + ACTIONS(3095), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243345,13 +252198,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3141), 26, + ACTIONS(3097), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243372,28 +252224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229132] = 5, - ACTIONS(3993), 1, - anon_sym_PIPE, - STATE(2951), 1, - aux_sym_union_type_repeat1, + [236715] = 4, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 24, + ACTIONS(2768), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -243405,12 +252255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2505), 25, + ACTIONS(2770), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -243421,6 +252270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -243431,11 +252281,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [229196] = 3, + [236776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 25, + ACTIONS(3099), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243461,13 +252311,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3079), 26, + ACTIONS(3101), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243488,11 +252337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229256] = 3, + [236835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 25, + ACTIONS(3107), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243518,13 +252367,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3135), 26, + ACTIONS(3109), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243545,69 +252393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229316] = 4, - ACTIONS(3996), 1, - anon_sym_DASH_GT, + [236894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(2512), 26, - anon_sym_DOT, - anon_sym_as, - 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_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, - [229378] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3065), 25, + ACTIONS(3115), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243633,13 +252423,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3067), 26, + ACTIONS(3117), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243660,11 +252449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229438] = 3, + [236953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 25, + ACTIONS(3121), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243690,13 +252479,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3167), 26, + ACTIONS(3123), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243717,13 +252505,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229498] = 4, - ACTIONS(3998), 1, - anon_sym_DASH_GT, + [237012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 24, + ACTIONS(3125), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + 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(3127), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -243734,6 +252546,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, @@ -243748,12 +252561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 26, + [237071] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -243764,7 +252581,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, @@ -243775,11 +252591,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [229560] = 3, + ACTIONS(3045), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [237130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 25, + ACTIONS(3103), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -243805,13 +252647,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3063), 26, + ACTIONS(3105), 25, + sym__newline, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243832,40 +252673,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229620] = 3, - ACTIONS(5), 2, + [237189] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(2885), 49, + ACTIONS(3141), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3143), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -243874,30 +252723,79 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + [237248] = 4, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 24, + sym_string_start, + 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_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(2770), 25, + anon_sym_DOT, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [229680] = 3, + [237309] = 4, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 25, + ACTIONS(2770), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -243919,13 +252817,12 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3055), 26, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -243946,18 +252843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229740] = 4, - STATE(2951), 1, - aux_sym_union_type_repeat1, + [237370] = 4, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 25, + ACTIONS(2770), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -243978,7 +252874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2568), 25, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -244004,39 +252900,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229802] = 3, - ACTIONS(5), 2, + [237431] = 4, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3137), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3139), 48, + ACTIONS(2770), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2768), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -244045,28 +252951,19 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [229861] = 4, - STATE(2785), 1, - aux_sym_union_type_repeat1, + [237492] = 4, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 24, + ACTIONS(2770), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -244091,11 +252988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2914), 25, - sym__newline, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -244117,16 +253014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229922] = 4, - ACTIONS(3979), 1, - anon_sym_EQ, + [237553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 24, + ACTIONS(3151), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -244148,7 +253044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2562), 25, + ACTIONS(3153), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -244174,16 +253070,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [229983] = 3, + [237612] = 4, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 24, + sym_string_start, + 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_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(2770), 25, + anon_sym_DOT, + anon_sym_as, + 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_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, + [237673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 25, + ACTIONS(3155), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244204,7 +253157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2948), 25, + ACTIONS(3157), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -244230,39 +253183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230042] = 3, - ACTIONS(5), 2, + [237732] = 4, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3125), 2, + ACTIONS(2768), 24, sym_string_start, - anon_sym_LF, - ACTIONS(3127), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -244271,54 +253208,54 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + ACTIONS(2770), 25, + anon_sym_DOT, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [230101] = 3, - ACTIONS(5), 2, + [237793] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3109), 2, + ACTIONS(3163), 25, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(3111), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -244327,31 +253264,18 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [230160] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2928), 25, + ACTIONS(3165), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244372,11 +253296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2930), 25, + [237852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 25, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -244398,16 +253326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230219] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2922), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244428,11 +253352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2924), 25, + [237911] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 25, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -244454,16 +253382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2550), 25, + ACTIONS(3173), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244484,18 +253408,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2555), 25, + [237970] = 9, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4068), 1, + anon_sym_and, + ACTIONS(4072), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2244), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, 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(2278), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -244503,44 +253449,32 @@ 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, - [230337] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2942), 25, + ACTIONS(2242), 15, anon_sym_DOT, anon_sym_as, - 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_not, - anon_sym_and, anon_sym_or, - 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(2944), 25, + [238041] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -244566,16 +253500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230396] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2934), 25, + ACTIONS(3177), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244596,7 +253526,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2936), 25, + [238100] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3179), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -244622,22 +253556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230455] = 7, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4002), 1, - anon_sym_and, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 21, + ACTIONS(3181), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244646,6 +253570,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, @@ -244657,15 +253582,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2481), 24, + [238159] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 25, + sym__newline, 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, @@ -244682,23 +253612,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230522] = 4, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3185), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [238218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 24, + ACTIONS(3187), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -244713,10 +253668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 25, + ACTIONS(3189), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -244728,7 +253684,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, @@ -244739,18 +253694,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [230583] = 5, - ACTIONS(4000), 1, - anon_sym_if, + [238277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 22, + ACTIONS(3191), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(3193), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244771,13 +253750,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2463), 25, + [238336] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3195), 25, + sym__newline, 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, @@ -244797,20 +253780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230646] = 6, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 22, + ACTIONS(3197), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244831,15 +253806,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2443), 24, + [238395] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3199), 25, + sym__newline, 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, @@ -244853,23 +253833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [230711] = 6, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 22, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3201), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244890,15 +253862,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 24, + [238454] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 25, + sym__newline, 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, @@ -244915,18 +253892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230776] = 5, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 22, + ACTIONS(3205), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -244947,13 +253918,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2451), 25, + [238513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 25, + sym__newline, 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, @@ -244973,23 +253948,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [230839] = 4, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3205), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [238572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 24, + ACTIONS(3207), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245004,10 +254004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 25, + ACTIONS(3209), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -245019,7 +254020,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, @@ -245030,14 +254030,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [230900] = 3, + [238631] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3095), 2, + ACTIONS(201), 2, sym_string_start, anon_sym_LF, - ACTIONS(3097), 48, + ACTIONS(197), 46, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -245048,7 +254052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -245056,7 +254059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -245086,82 +254088,78 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [230959] = 8, - ACTIONS(4009), 1, - anon_sym_not, - ACTIONS(4015), 1, - anon_sym_is, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, + [238694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4006), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4012), 4, + ACTIONS(3211), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, - ACTIONS(2861), 19, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3213), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, 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(2863), 21, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [231028] = 3, + [238753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 24, + ACTIONS(3215), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245176,12 +254174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2526), 26, + ACTIONS(3217), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245192,7 +254190,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, @@ -245203,23 +254200,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [231087] = 4, - STATE(2857), 1, - aux_sym_union_type_repeat1, + [238812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 24, + ACTIONS(3215), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245234,10 +254230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2912), 25, + ACTIONS(3217), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -245249,7 +254246,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, @@ -245260,21 +254256,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [231148] = 3, + [238871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 24, + ACTIONS(3219), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245289,12 +254286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2512), 26, + ACTIONS(3221), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245305,7 +254302,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, @@ -245316,21 +254312,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [231207] = 3, + [238930] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 24, + ACTIONS(3225), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245345,12 +254342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2483), 26, + ACTIONS(3227), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245361,7 +254358,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, @@ -245372,39 +254368,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [231266] = 3, - ACTIONS(5), 2, + [238989] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3073), 2, + ACTIONS(3229), 25, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(3075), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245413,35 +254392,18 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [231325] = 6, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 22, + ACTIONS(3231), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245462,15 +254424,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2455), 24, + [239048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 25, + sym__newline, 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, @@ -245487,18 +254454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [231390] = 5, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 22, + ACTIONS(3235), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245519,13 +254480,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 25, + [239107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 25, + sym__newline, 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, @@ -245545,41 +254510,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [231453] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(221), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(217), 46, + ACTIONS(3239), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [239166] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3245), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -245588,31 +254560,18 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [231516] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2950), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245633,7 +254592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2952), 25, + [239225] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3249), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -245659,93 +254622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [231575] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - ACTIONS(4026), 1, - anon_sym_PIPE, - ACTIONS(4028), 1, - anon_sym_AMP, - ACTIONS(4030), 1, - anon_sym_CARET, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(3251), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2489), 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, - [231672] = 5, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 22, - anon_sym_DOT, - anon_sym_as, + anon_sym_for, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -245766,18 +254648,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2459), 25, + [239284] = 5, + ACTIONS(4078), 1, + anon_sym_in, + ACTIONS(4082), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(201), 2, sym_string_start, + anon_sym_LF, + ACTIONS(197), 46, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_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, @@ -245786,19 +254691,28 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [231735] = 4, - STATE(3177), 1, - sym_dictionary, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [239347] = 4, + STATE(3442), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -245823,11 +254737,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, - sym__newline, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -245849,14 +254763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [231796] = 3, + [239408] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3043), 2, + ACTIONS(3249), 2, sym_string_start, anon_sym_LF, - ACTIONS(3041), 48, + ACTIONS(3251), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -245905,50 +254819,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [231855] = 5, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(3), 2, + [239467] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 22, + ACTIONS(3245), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3247), 48, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(189), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -245957,63 +254860,54 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [231918] = 8, - ACTIONS(4037), 1, - anon_sym_not, - ACTIONS(4043), 1, - anon_sym_is, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [239526] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4034), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4040), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2861), 20, + ACTIONS(3241), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3243), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2863), 20, - sym_string_start, - 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_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, @@ -246022,16 +254916,29 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [231987] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [239585] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3069), 2, + ACTIONS(3237), 2, sym_string_start, anon_sym_LF, - ACTIONS(3071), 48, + ACTIONS(3239), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -246080,50 +254987,95 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [232046] = 5, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(3), 2, + [239644] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 22, + ACTIONS(3233), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3235), 48, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2439), 25, + [239703] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3229), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3231), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -246132,56 +255084,110 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [232109] = 5, - ACTIONS(4046), 1, - anon_sym_EQ, - STATE(2403), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [239762] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 23, + ACTIONS(3225), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3227), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2562), 25, + [239821] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3219), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3221), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -246190,20 +255196,29 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [232172] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [239880] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, + ACTIONS(3215), 2, sym_string_start, anon_sym_LF, - ACTIONS(217), 48, + ACTIONS(3217), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -246252,98 +255267,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [232231] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - ACTIONS(4026), 1, - anon_sym_PIPE, - ACTIONS(4028), 1, - anon_sym_AMP, - ACTIONS(4030), 1, - anon_sym_CARET, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [239939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2365), 5, + ACTIONS(3053), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2503), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2501), 11, + anon_sym_for, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [232328] = 4, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 24, + ACTIONS(3055), 25, + sym__newline, sym_string_start, 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -246358,40 +255323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2857), 25, - anon_sym_DOT, - anon_sym_as, - 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_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, - [232389] = 3, + [239998] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 2, + ACTIONS(3215), 2, sym_string_start, anon_sym_LF, - ACTIONS(3047), 48, + ACTIONS(3217), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -246440,23 +255379,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [232448] = 4, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [240057] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 24, + ACTIONS(3211), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3213), 48, + 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_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -246465,45 +255420,28 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(2857), 25, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [232509] = 4, - STATE(3379), 1, - aux_sym_comparison_operator_repeat1, + [240116] = 4, + STATE(3244), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -246528,11 +255466,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, - sym__newline, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -246554,32 +255492,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [232570] = 10, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [240177] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 20, + ACTIONS(3207), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3209), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -246588,196 +255533,85 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_float, - ACTIONS(2574), 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, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [232643] = 21, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - ACTIONS(4026), 1, - anon_sym_PIPE, - ACTIONS(4028), 1, - anon_sym_AMP, - ACTIONS(4030), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_not, - ACTIONS(4054), 1, - anon_sym_is, - STATE(2429), 1, - sym_argument_list, - STATE(3422), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [240236] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4048), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4052), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 7, + ACTIONS(3203), 2, sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2365), 16, + anon_sym_LF, + ACTIONS(3205), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [232738] = 22, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - ACTIONS(4026), 1, - anon_sym_PIPE, - ACTIONS(4028), 1, - anon_sym_AMP, - ACTIONS(4030), 1, - anon_sym_CARET, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4024), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2493), 3, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2524), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2522), 11, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [232835] = 5, - ACTIONS(4056), 1, - anon_sym_in, - ACTIONS(4058), 1, - anon_sym_not, + [240295] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, + ACTIONS(3203), 2, sym_string_start, anon_sym_LF, - ACTIONS(217), 46, + ACTIONS(3205), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -246788,6 +255622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -246795,6 +255630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -246824,90 +255660,76 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [232898] = 21, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - ACTIONS(4026), 1, - anon_sym_PIPE, - ACTIONS(4028), 1, - anon_sym_AMP, - ACTIONS(4030), 1, - anon_sym_CARET, - ACTIONS(4050), 1, - anon_sym_not, - ACTIONS(4054), 1, - anon_sym_is, - STATE(2429), 1, - sym_argument_list, - STATE(3209), 1, - aux_sym_comparison_operator_repeat1, + [240354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, + ACTIONS(2791), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4024), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4048), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4052), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 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(2365), 16, + ACTIONS(2793), 25, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [232993] = 3, + [240413] = 6, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4072), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 25, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -246928,16 +255750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2936), 25, + ACTIONS(2244), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, 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, @@ -246954,48 +255775,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [233052] = 3, - ACTIONS(3), 2, + [240478] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 25, + ACTIONS(3199), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3201), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2940), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -247004,55 +255816,54 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [233111] = 4, - ACTIONS(3964), 1, - anon_sym_EQ, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [240537] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 24, + ACTIONS(3195), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3197), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2562), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -247061,22 +255872,33 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [233172] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [240596] = 5, + ACTIONS(4066), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 25, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247097,13 +255919,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2944), 25, + ACTIONS(2266), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -247123,16 +255945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [233231] = 3, + [240659] = 6, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4072), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 25, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247153,16 +255979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2948), 25, + ACTIONS(2258), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, 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, @@ -247179,16 +256004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [233290] = 3, + [240724] = 5, + ACTIONS(4066), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 25, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247209,13 +256036,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2930), 25, - sym__newline, + ACTIONS(2254), 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, @@ -247235,23 +256062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [233349] = 4, - STATE(3002), 1, - aux_sym_comparison_operator_repeat1, + [240787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 24, + ACTIONS(2797), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -247266,11 +256092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(217), 25, + ACTIONS(2799), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247281,7 +256108,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, @@ -247292,39 +256118,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [233410] = 3, - ACTIONS(5), 2, + [240846] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3045), 2, + ACTIONS(2809), 25, sym_string_start, - anon_sym_LF, - ACTIONS(3047), 48, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -247333,100 +256142,51 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [233469] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3057), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3059), 48, + ACTIONS(2811), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [233528] = 10, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [240905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 20, + ACTIONS(2813), 25, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, @@ -247442,11 +256202,14 @@ 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(2518), 23, + ACTIONS(2815), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247467,37 +256230,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [233601] = 3, + [240964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 25, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - 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(2896), 25, + ACTIONS(2817), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -247523,79 +256260,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [233660] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3145), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3147), 48, + ACTIONS(2819), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [233719] = 4, - STATE(3395), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [241023] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 24, + ACTIONS(3191), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3193), 48, + 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_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -247604,46 +256327,29 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, - sym_float, - ACTIONS(217), 25, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, anon_sym_is, + anon_sym_QMARK_LBRACK, sym_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [233780] = 3, + [241082] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3149), 2, + ACTIONS(3187), 2, sym_string_start, anon_sym_LF, - ACTIONS(3151), 48, + ACTIONS(3189), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -247692,14 +256398,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [233839] = 3, + [241141] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3157), 2, + ACTIONS(3183), 2, sym_string_start, anon_sym_LF, - ACTIONS(3159), 48, + ACTIONS(3185), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -247748,16 +256454,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [233898] = 3, + [241200] = 5, + ACTIONS(4066), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 25, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247778,13 +256486,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2952), 25, + ACTIONS(2254), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -247804,17 +256512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [233957] = 4, - STATE(3200), 1, - sym_dictionary, + [241263] = 5, + ACTIONS(4066), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -247835,13 +256544,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, + ACTIONS(2238), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -247861,49 +256570,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [234018] = 4, - STATE(3399), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [241326] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(3179), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3181), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(221), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -247912,20 +256611,29 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [234079] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [241385] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3113), 2, + ACTIONS(3175), 2, sym_string_start, anon_sym_LF, - ACTIONS(3115), 48, + ACTIONS(3177), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -247974,49 +256682,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [234138] = 4, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [241444] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(3171), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3173), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2859), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -248025,23 +256723,33 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [234199] = 4, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [241503] = 5, + ACTIONS(4066), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -248062,13 +256770,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 25, - sym__newline, + ACTIONS(133), 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, @@ -248088,49 +256796,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [234260] = 4, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [241566] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(3167), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3169), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2859), 25, - sym__newline, + [241625] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3165), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -248139,31 +256893,41 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [234321] = 4, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [241684] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -248176,7 +256940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 25, + ACTIONS(201), 25, sym__newline, sym_string_start, anon_sym_COMMA, @@ -248202,14 +256966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [234382] = 3, + [241747] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3161), 2, + ACTIONS(3157), 2, sym_string_start, anon_sym_LF, - ACTIONS(3163), 48, + ACTIONS(3155), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -248258,14 +257022,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [234441] = 3, + [241806] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 2, + ACTIONS(3153), 2, sym_string_start, anon_sym_LF, - ACTIONS(3143), 48, + ACTIONS(3151), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -248314,39 +257078,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [234500] = 3, - ACTIONS(5), 2, + [241865] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3191), 2, + ACTIONS(2821), 25, sym_string_start, - anon_sym_LF, - ACTIONS(3193), 48, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -248355,32 +257102,18 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [234559] = 4, - STATE(2961), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2912), 24, + ACTIONS(2823), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -248401,7 +257134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2914), 25, + [241924] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2825), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -248427,64 +257164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [234620] = 14, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 14, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(2518), 21, + ACTIONS(2827), 25, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -248494,14 +257190,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [234701] = 3, + [241983] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 2, + ACTIONS(3149), 2, sym_string_start, anon_sym_LF, - ACTIONS(3189), 48, + ACTIONS(3147), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -248550,17 +257246,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [234760] = 4, - STATE(3047), 1, - aux_sym_comparison_operator_repeat1, + [242042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2007), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + ACTIONS(2009), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -248581,18 +257302,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, + [242101] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3141), 48, + 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_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -248601,63 +257343,54 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [234821] = 8, - ACTIONS(4063), 1, - anon_sym_not, - ACTIONS(4069), 1, - anon_sym_is, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [242160] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4060), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4066), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2861), 19, + ACTIONS(3045), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3043), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, 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(2863), 21, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - 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_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -248666,15 +257399,28 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [234890] = 4, - STATE(3032), 1, - aux_sym_comparison_operator_repeat1, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [242219] = 4, + ACTIONS(3997), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2556), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -248699,11 +257445,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, - sym__newline, + ACTIONS(2554), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -248725,48 +257471,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [234951] = 3, - ACTIONS(3), 2, + [242280] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 25, + ACTIONS(3127), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3125), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2883), 25, - sym__newline, + [242339] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3123), 2, sym_string_start, + anon_sym_LF, + ACTIONS(3121), 48, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, anon_sym_LBRACE, + anon_sym_RBRACE, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -248775,19 +257568,41 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [235010] = 4, - ACTIONS(3977), 1, - anon_sym_EQ, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [242398] = 8, + ACTIONS(4087), 1, + anon_sym_not, + ACTIONS(4093), 1, + anon_sym_is, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 24, + ACTIONS(4084), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4090), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 20, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -248806,45 +257621,36 @@ 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(2560), 25, + ACTIONS(2841), 20, anon_sym_DOT, anon_sym_as, 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_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, - [235071] = 4, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, + [242467] = 4, + STATE(2898), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(2760), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -248869,7 +257675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2859), 25, + ACTIONS(2758), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -248895,49 +257701,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [235132] = 4, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [242528] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(3117), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3115), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2859), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -248946,55 +257742,54 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [235193] = 4, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [242587] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(3109), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3107), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2859), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -249003,55 +257798,54 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [235254] = 4, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [242646] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 24, + ACTIONS(3101), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3099), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2859), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, @@ -249060,20 +257854,29 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - [235315] = 3, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [242705] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 2, + ACTIONS(3097), 2, sym_string_start, anon_sym_LF, - ACTIONS(3131), 48, + ACTIONS(3095), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249122,14 +257925,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235374] = 3, + [242764] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3129), 2, + ACTIONS(3093), 2, sym_string_start, anon_sym_LF, - ACTIONS(3131), 48, + ACTIONS(3091), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249178,14 +257981,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235433] = 3, + [242823] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, + ACTIONS(3089), 2, sym_string_start, anon_sym_LF, - ACTIONS(217), 48, + ACTIONS(3087), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249234,29 +258037,54 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235492] = 10, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, + [242882] = 8, + ACTIONS(4099), 1, + anon_sym_not, + ACTIONS(4105), 1, + anon_sym_is, + STATE(3161), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 20, + ACTIONS(4096), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4102), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2841), 19, + anon_sym_DOT, + anon_sym_as, + 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_and, + anon_sym_or, + anon_sym_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2839), 21, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, @@ -249268,15 +258096,20 @@ 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(2518), 23, + [242951] = 5, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 22, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -249297,38 +258130,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235565] = 12, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 18, + ACTIONS(2402), 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, @@ -249339,63 +258154,54 @@ 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(2518), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [243014] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3778), 5, + sym_string_start, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(3057), 12, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [235642] = 9, - ACTIONS(4000), 1, + ACTIONS(197), 13, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(4002), 1, - anon_sym_and, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 6, + anon_sym_for, anon_sym_in, anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(2447), 12, - sym_string_start, + ACTIONS(201), 20, + sym__newline, 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_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2469), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -249408,30 +258214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, - ACTIONS(2449), 15, - anon_sym_DOT, - anon_sym_as, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [235713] = 3, + [243077] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, + ACTIONS(3083), 2, sym_string_start, anon_sym_LF, - ACTIONS(217), 48, + ACTIONS(3081), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249480,14 +258270,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235772] = 3, + [243136] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 2, + ACTIONS(3079), 2, sym_string_start, anon_sym_LF, - ACTIONS(3203), 48, + ACTIONS(3077), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249536,41 +258326,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235831] = 5, - ACTIONS(4056), 1, - anon_sym_in, - ACTIONS(4072), 1, - anon_sym_not, - ACTIONS(5), 2, + [243195] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(221), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(217), 46, + ACTIONS(2805), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2807), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -249579,29 +258376,95 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + [243254] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, anon_sym_is, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - sym_integer, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2386), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2382), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, + ACTIONS(2384), 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, - [235894] = 3, + [243351] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3233), 2, + ACTIONS(3075), 2, sym_string_start, anon_sym_LF, - ACTIONS(3235), 48, + ACTIONS(3073), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249650,37 +258513,95 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [235953] = 3, - ACTIONS(5), 2, + [243410] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3239), 48, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 7, + sym_string_start, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_in, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2396), 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, + [243507] = 5, + STATE(3170), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4124), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 15, + anon_sym_EQ, 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, @@ -249690,55 +258611,83 @@ 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(2007), 32, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + 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_GT, 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, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [236012] = 3, - ACTIONS(5), 2, + [243570] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3079), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3077), 48, + ACTIONS(2801), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2803), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -249747,69 +258696,185 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + [243629] = 5, + ACTIONS(4127), 1, + anon_sym_EQ, + STATE(2567), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2556), 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, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [236071] = 16, - ACTIONS(3383), 1, + ACTIONS(2554), 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, + [243692] = 22, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3546), 1, anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - ACTIONS(3391), 1, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(3399), 1, + ACTIONS(3570), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, + ACTIONS(4110), 1, anon_sym_STAR_STAR, - ACTIONS(4028), 1, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, anon_sym_AMP, - ACTIONS(4030), 1, + ACTIONS(4120), 1, anon_sym_CARET, - STATE(2429), 1, + STATE(2626), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4018), 2, + ACTIONS(4108), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4022), 2, + ACTIONS(4112), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4024), 2, + ACTIONS(4114), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, + ACTIONS(4122), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 12, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2306), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2308), 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, + [243789] = 10, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2069), 20, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 21, + ACTIONS(2067), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249819,9 +258884,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, @@ -249831,14 +258898,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [236156] = 3, + [243862] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3153), 2, + ACTIONS(3055), 2, sym_string_start, anon_sym_LF, - ACTIONS(3155), 48, + ACTIONS(3053), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249887,39 +258954,122 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [236215] = 3, - ACTIONS(5), 2, + [243921] = 21, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + ACTIONS(4131), 1, + anon_sym_not, + ACTIONS(4135), 1, + anon_sym_is, + STATE(2626), 1, + sym_argument_list, + STATE(3425), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 2, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4129), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4133), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 7, sym_string_start, - anon_sym_LF, - ACTIONS(2365), 48, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 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, + [244016] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2776), 25, 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_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2778), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -249928,26 +259078,17 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [236274] = 3, + [244075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 25, + ACTIONS(2772), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -249973,11 +259114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2887), 25, - sym__newline, + ACTIONS(2774), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -249999,39 +259140,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [236333] = 3, - ACTIONS(5), 2, + [244134] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3259), 48, + ACTIONS(197), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_for, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -250040,54 +259190,91 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_LBRACK, + sym_float, + [244193] = 7, + ACTIONS(4066), 1, + anon_sym_if, + ACTIONS(4068), 1, + anon_sym_and, + ACTIONS(4072), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 21, + anon_sym_DOT, + anon_sym_as, + 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_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [236392] = 13, - ACTIONS(3383), 1, + ACTIONS(2542), 24, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3385), 1, anon_sym_LBRACK, - ACTIONS(3391), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - ACTIONS(3399), 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(4020), 1, - anon_sym_STAR_STAR, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + sym_float, + [244260] = 4, + STATE(2955), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 16, + ACTIONS(2758), 24, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, 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, @@ -250098,20 +259285,25 @@ 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(2518), 21, + ACTIONS(2760), 25, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -250121,45 +259313,85 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [236471] = 3, - ACTIONS(3), 2, + [244321] = 3, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 25, + ACTIONS(3045), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3043), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_else, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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_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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(2896), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, + [244380] = 10, + ACTIONS(3546), 1, anon_sym_LPAREN, + ACTIONS(3548), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 20, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -250175,42 +259407,117 @@ 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, - [236530] = 5, - ACTIONS(221), 1, - anon_sym_LF, - ACTIONS(3714), 1, - sym_string_start, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3169), 16, - anon_sym_else, + ACTIONS(1942), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_lambda, - anon_sym_LBRACE, + 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, + [244453] = 10, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 20, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - sym_integer, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, + ACTIONS(1942), 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(217), 32, + [244526] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3037), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -250218,6 +259525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -250227,6 +259535,7 @@ 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, @@ -250235,27 +259544,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [236593] = 3, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [244585] = 12, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 25, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 18, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1942), 21, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -250265,40 +259616,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2900), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [236652] = 3, + [244662] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 2, + ACTIONS(3035), 2, sym_string_start, anon_sym_LF, - ACTIONS(3303), 48, + ACTIONS(3033), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -250347,35 +259672,66 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [236711] = 9, - ACTIONS(2447), 1, + [244721] = 16, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4002), 1, - anon_sym_and, - ACTIONS(4004), 1, - anon_sym_PLUS, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 3, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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(1942), 21, anon_sym_DOT, anon_sym_as, - anon_sym_or, - ACTIONS(2467), 18, + 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_SLASH, + anon_sym_and, + anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -250385,56 +259741,65 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2469), 23, - sym_string_start, - anon_sym_COMMA, + [244806] = 15, + ACTIONS(3546), 1, anon_sym_LPAREN, + ACTIONS(3548), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, anon_sym_STAR_STAR, - anon_sym_DQUOTE, + ACTIONS(4120), 1, + anon_sym_CARET, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4114), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4122), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1940), 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, - [236782] = 7, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4002), 1, - anon_sym_and, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 21, + ACTIONS(1942), 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, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -250444,53 +259809,64 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2447), 24, - sym_string_start, - anon_sym_COMMA, + [244889] = 14, + ACTIONS(3546), 1, anon_sym_LPAREN, + ACTIONS(3548), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4114), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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, - [236849] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(1942), 21, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -250500,20 +259876,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, - sym_string_start, - anon_sym_COMMA, + [244970] = 13, + ACTIONS(3546), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3548), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, + ACTIONS(3554), 1, anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(4114), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1940), 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, @@ -250524,128 +259919,180 @@ 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, - [236910] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3299), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3297), 48, + ACTIONS(1942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [236969] = 3, - ACTIONS(5), 2, + [245049] = 20, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 2, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2312), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 7, sym_string_start, - anon_sym_LF, - ACTIONS(3293), 48, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2386), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [245142] = 17, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + STATE(2626), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4114), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4122), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2458), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, anon_sym_TILDE, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + sym_float, + ACTIONS(2386), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, sym_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [237028] = 3, + [245229] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 2, + ACTIONS(201), 2, sym_string_start, anon_sym_LF, - ACTIONS(3289), 48, + ACTIONS(197), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -250694,14 +260141,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [237087] = 3, + [245288] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 2, + ACTIONS(201), 2, sym_string_start, anon_sym_LF, - ACTIONS(3285), 48, + ACTIONS(197), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -250750,70 +260197,88 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [237146] = 3, + [245347] = 21, + ACTIONS(3546), 1, + anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_LBRACK, + ACTIONS(3554), 1, + anon_sym_QMARK_DOT, + ACTIONS(3570), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4110), 1, + anon_sym_STAR_STAR, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_AMP, + ACTIONS(4120), 1, + anon_sym_CARET, + ACTIONS(4131), 1, + anon_sym_not, + ACTIONS(4135), 1, + anon_sym_is, + STATE(2626), 1, + sym_argument_list, + STATE(3223), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 25, + ACTIONS(4108), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4122), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4129), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4133), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2310), 16, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, - 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(2555), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [237205] = 3, + [245442] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, + ACTIONS(2356), 2, sym_string_start, anon_sym_LF, - ACTIONS(3281), 48, + ACTIONS(2310), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -250862,77 +260327,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [237264] = 10, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(4000), 1, - anon_sym_if, - ACTIONS(4002), 1, - anon_sym_and, - ACTIONS(4004), 1, - anon_sym_PLUS, - ACTIONS(4074), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 19, - anon_sym_as, - 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, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(2357), 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_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [237337] = 3, + [245501] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3171), 2, + ACTIONS(3287), 2, sym_string_start, anon_sym_LF, - ACTIONS(3173), 48, + ACTIONS(3289), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -250981,14 +260383,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [237396] = 3, + [245560] = 3, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, + ACTIONS(3105), 2, sym_string_start, anon_sym_LF, - ACTIONS(3277), 48, + ACTIONS(3103), 48, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -251037,16 +260439,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [237455] = 3, + [245619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 25, + ACTIONS(3177), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -251067,7 +260468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2900), 25, + ACTIONS(3175), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -251093,16 +260494,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [237514] = 3, + [245677] = 7, + ACTIONS(2364), 1, + anon_sym_is, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 25, + ACTIONS(2358), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, + 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(2770), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [245743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3189), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -251123,7 +260582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2883), 25, + ACTIONS(3187), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -251149,151 +260608,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [237573] = 3, - ACTIONS(5), 2, + [245801] = 7, + ACTIONS(2372), 1, + anon_sym_is, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 2, + ACTIONS(2366), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, sym_string_start, - anon_sym_LF, - ACTIONS(3273), 48, + 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(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, 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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [237632] = 3, - ACTIONS(5), 2, + [245867] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3253), 48, + ACTIONS(197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [237691] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3067), 2, + ACTIONS(201), 25, sym_string_start, - anon_sym_LF, - ACTIONS(3065), 48, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -251302,122 +260716,172 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, + [245925] = 7, + ACTIONS(2372), 1, + anon_sym_is, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2366), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, + 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(2770), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [237750] = 15, - ACTIONS(3383), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(3391), 1, - anon_sym_QMARK_DOT, - ACTIONS(3399), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4020), 1, - anon_sym_STAR_STAR, - ACTIONS(4030), 1, - anon_sym_CARET, - STATE(2429), 1, - sym_argument_list, - STATE(4730), 1, + [245991] = 7, + ACTIONS(2372), 1, + anon_sym_is, + STATE(944), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4018), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4024), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 13, + ACTIONS(2366), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, sym_string_start, + ts_builtin_sym_end, 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_PIPE, - anon_sym_AMP, + anon_sym_DASH, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, sym_float, - ACTIONS(2518), 21, + ACTIONS(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_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, - [237833] = 3, - ACTIONS(5), 2, + [246057] = 4, + ACTIONS(3057), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3177), 48, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -251426,54 +260890,55 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [237892] = 3, - ACTIONS(5), 2, + [246117] = 5, + ACTIONS(4137), 1, + anon_sym_in, + ACTIONS(4139), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3179), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3181), 48, + ACTIONS(197), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -251482,54 +260947,57 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [237951] = 3, - ACTIONS(5), 2, + [246179] = 5, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3063), 2, + ACTIONS(3778), 5, sym_string_start, - anon_sym_LF, - ACTIONS(3061), 48, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(197), 12, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_in, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(3057), 12, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 20, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, 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, @@ -251537,32 +261005,20 @@ 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [238010] = 3, + [246241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 25, + ACTIONS(3091), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -251583,7 +261039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2887), 25, + ACTIONS(3093), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -251609,39 +261065,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238069] = 3, - ACTIONS(5), 2, + [246299] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3055), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3053), 48, + ACTIONS(3193), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3191), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -251650,32 +261114,22 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [238128] = 4, - STATE(4733), 1, + [246357] = 4, + STATE(3461), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -251696,13 +261150,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, - sym__newline, + ACTIONS(201), 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, @@ -251722,39 +261176,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238189] = 3, - ACTIONS(5), 2, + [246417] = 5, + ACTIONS(4074), 1, + anon_sym_in, + ACTIONS(4141), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3183), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3185), 48, + ACTIONS(197), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 25, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, @@ -251763,31 +261227,81 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, + [246479] = 7, + ACTIONS(2372), 1, + anon_sym_is, + STATE(944), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2366), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, + 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(2770), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [238248] = 3, + [246545] = 4, + STATE(3224), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 25, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -251808,13 +261322,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2924), 25, - sym__newline, + ACTIONS(201), 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, @@ -251834,16 +261348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238307] = 3, + [246605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 25, + ACTIONS(3095), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -251864,11 +261377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(2940), 25, - sym__newline, + ACTIONS(3097), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -251890,95 +261403,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238366] = 3, - ACTIONS(5), 2, + [246663] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3049), 48, + ACTIONS(3197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, 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_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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [238425] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3167), 2, + ACTIONS(3195), 25, sym_string_start, - anon_sym_LF, - ACTIONS(3165), 48, - 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -251987,207 +261452,152 @@ static const uint16_t ts_small_parse_table[] = { 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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [238484] = 3, - ACTIONS(5), 2, + [246721] = 7, + ACTIONS(2364), 1, + anon_sym_is, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3135), 2, + ACTIONS(2358), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, + sym__dedent, sym_string_start, - anon_sym_LF, - ACTIONS(3133), 48, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_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_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_integer, sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [238543] = 3, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3079), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3077), 48, + ACTIONS(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, 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_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_integer, - sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [238602] = 3, + [246787] = 7, + ACTIONS(2364), 1, + anon_sym_is, + STATE(955), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 24, + ACTIONS(2358), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, + 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(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3279), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [238660] = 3, + [246853] = 5, + ACTIONS(3871), 1, + anon_sym_in, + ACTIONS(4143), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 24, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -252198,18 +261608,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3175), 25, - sym__newline, + ACTIONS(201), 24, sym_string_start, 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_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -252224,27 +261633,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238718] = 7, - ACTIONS(2435), 1, + [246915] = 7, + ACTIONS(2364), 1, anon_sym_is, - STATE(1713), 1, + STATE(955), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 3, + ACTIONS(2358), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2433), 4, + ACTIONS(2362), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 14, + ACTIONS(2768), 14, sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -252256,7 +261665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2770), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -252283,11 +261692,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [238784] = 3, + [246981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 24, + ACTIONS(3115), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252312,7 +261721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3073), 25, + ACTIONS(3117), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -252338,15 +261747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238842] = 3, + [247039] = 4, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 24, + ACTIONS(2770), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -252367,13 +261777,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3109), 25, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -252393,15 +261803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238900] = 3, + [247099] = 4, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 24, + ACTIONS(2770), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -252422,13 +261833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3125), 25, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -252448,15 +261859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [238958] = 3, + [247159] = 4, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 24, + ACTIONS(2770), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -252477,13 +261889,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3137), 25, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -252503,15 +261915,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239016] = 3, + [247219] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 24, + ACTIONS(3778), 4, + sym_string_start, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(3057), 12, + anon_sym_else, + 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, + ACTIONS(197), 13, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(201), 20, + 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_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_QMARK_LBRACK, + [247281] = 4, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2770), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -252532,13 +262002,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3145), 25, + ACTIONS(2768), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -252558,11 +262028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239074] = 3, + [247341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 24, + ACTIONS(197), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252587,7 +262057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3149), 25, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -252613,23 +262083,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239132] = 3, + [247399] = 5, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 24, + ACTIONS(197), 22, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -252642,11 +262114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3283), 25, - sym__newline, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -252668,11 +262140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239190] = 3, + [247461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 24, + ACTIONS(3201), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252697,11 +262169,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3279), 25, - sym__newline, + ACTIONS(3199), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -252723,70 +262195,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239248] = 7, - ACTIONS(2435), 1, + [247519] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3205), 24, + anon_sym_DOT, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - STATE(1713), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3203), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [247577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 3, + ACTIONS(197), 24, + anon_sym_DOT, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2433), 4, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(201), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, - ACTIONS(2859), 14, - sym__newline, + anon_sym_QMARK_LBRACK, + sym_float, + [247635] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3205), 24, + anon_sym_DOT, + anon_sym_as, + 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_not, + anon_sym_and, + anon_sym_or, + 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(3203), 25, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, + 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, - ACTIONS(2857), 26, - anon_sym_import, + [247693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, 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_check, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [239314] = 3, + ACTIONS(3207), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [247751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(3099), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252811,7 +262444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, + ACTIONS(3101), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -252837,11 +262470,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239372] = 3, + [247809] = 5, + ACTIONS(4137), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 24, + ACTIONS(197), 22, + anon_sym_DOT, + anon_sym_as, + 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_and, + anon_sym_or, + 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(201), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [247871] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3213), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252866,11 +262556,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3287), 25, - sym__newline, + ACTIONS(3211), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -252892,11 +262582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239430] = 3, + [247929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 24, + ACTIONS(3033), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252921,7 +262611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3045), 25, + ACTIONS(3035), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -252947,11 +262637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239488] = 3, + [247987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 24, + ACTIONS(3037), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -252976,11 +262666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3079), 25, - sym__newline, + ACTIONS(3039), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -253002,11 +262692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239546] = 3, + [248045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 24, + ACTIONS(3043), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253031,11 +262721,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3043), 25, - sym__newline, + ACTIONS(3045), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -253057,11 +262747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239604] = 3, + [248103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 24, + ACTIONS(3053), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253086,7 +262776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3161), 25, + ACTIONS(3055), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253112,11 +262802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239662] = 3, + [248161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 24, + ACTIONS(3289), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253141,7 +262831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3141), 25, + ACTIONS(3287), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253167,11 +262857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239720] = 3, + [248219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 24, + ACTIONS(3217), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253196,7 +262886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3045), 25, + ACTIONS(3215), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253222,11 +262912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239778] = 3, + [248277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 24, + ACTIONS(3077), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253251,7 +262941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3095), 25, + ACTIONS(3079), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253277,11 +262967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239836] = 3, + [248335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 24, + ACTIONS(3181), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253306,7 +262996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3069), 25, + ACTIONS(3179), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253332,68 +263022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [239894] = 5, - ACTIONS(3960), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_not, + [248393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 23, - anon_sym_DOT, - anon_sym_as, - 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_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, - ACTIONS(221), 24, - sym_string_start, - 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_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, - [239956] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3289), 24, + ACTIONS(2310), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253418,62 +263051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3291), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [240014] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3065), 24, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - 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(3067), 25, + ACTIONS(2356), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253499,11 +263077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240072] = 3, + [248451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 24, + ACTIONS(3217), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253528,7 +263106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3063), 25, + ACTIONS(3215), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253554,11 +263132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240130] = 3, + [248509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 24, + ACTIONS(3221), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253583,7 +263161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3055), 25, + ACTIONS(3219), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253609,11 +263187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240188] = 3, + [248567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 24, + ACTIONS(3173), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253638,7 +263216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3051), 25, + ACTIONS(3171), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253664,11 +263242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240246] = 3, + [248625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 24, + ACTIONS(3227), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253693,7 +263271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3135), 25, + ACTIONS(3225), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253719,11 +263297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240304] = 3, + [248683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 24, + ACTIONS(3087), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253748,7 +263326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3113), 25, + ACTIONS(3089), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253774,11 +263352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240362] = 3, + [248741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 24, + ACTIONS(3185), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253803,11 +263381,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3275), 25, - sym__newline, + ACTIONS(3183), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -253829,11 +263407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240420] = 3, + [248799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 24, + ACTIONS(3169), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253858,7 +263436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3043), 25, + ACTIONS(3167), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253884,11 +263462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240478] = 3, + [248857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 24, + ACTIONS(3165), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -253913,7 +263491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3129), 25, + ACTIONS(3163), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -253939,15 +263517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240536] = 3, + [248915] = 4, + ACTIONS(4127), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 24, + ACTIONS(2556), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -253968,13 +263547,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3079), 25, + ACTIONS(2554), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -253994,80 +263573,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240594] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3131), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + [248975] = 5, + ACTIONS(3871), 1, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + ACTIONS(4147), 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, - ACTIONS(3129), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [240652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 24, + ACTIONS(197), 23, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -254078,18 +263605,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3153), 25, + ACTIONS(201), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, 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, @@ -254104,11 +263630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240710] = 3, + [249037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 24, + ACTIONS(3155), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254159,11 +263685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240768] = 3, + [249095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 24, + ACTIONS(3151), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254188,11 +263714,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3295), 25, - sym__newline, + ACTIONS(3153), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -254214,11 +263740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240826] = 3, + [249153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 24, + ACTIONS(3147), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254243,7 +263769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3171), 25, + ACTIONS(3149), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254269,11 +263795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240884] = 3, + [249211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 24, + ACTIONS(3107), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254298,7 +263824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3175), 25, + ACTIONS(3109), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254324,11 +263850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [240942] = 3, + [249269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 24, + ACTIONS(3081), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254353,7 +263879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3179), 25, + ACTIONS(3083), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254379,11 +263905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241000] = 3, + [249327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 24, + ACTIONS(3141), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254408,7 +263934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3183), 25, + ACTIONS(3143), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254434,68 +263960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241058] = 5, - ACTIONS(4078), 1, - anon_sym_in, - ACTIONS(4080), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 22, - anon_sym_DOT, - anon_sym_as, - 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_and, - anon_sym_or, - 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(221), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [241120] = 3, + [249385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 24, + ACTIONS(3103), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254520,11 +263989,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3051), 25, - sym__newline, + ACTIONS(3105), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -254546,11 +264015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241178] = 3, + [249443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 24, + ACTIONS(3043), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254575,7 +264044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3187), 25, + ACTIONS(3045), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254601,11 +264070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241236] = 3, + [249501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 24, + ACTIONS(3125), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254630,7 +264099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3191), 25, + ACTIONS(3127), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254656,70 +264125,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241294] = 7, - ACTIONS(2435), 1, + [249559] = 8, + ACTIONS(4152), 1, + anon_sym_not, + ACTIONS(4158), 1, anon_sym_is, - STATE(1713), 1, + STATE(3266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 3, + ACTIONS(4149), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2433), 4, + ACTIONS(4155), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, - 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(2857), 26, - anon_sym_import, + ACTIONS(2841), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, + anon_sym_STAR, anon_sym_and, anon_sym_or, + anon_sym_SLASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [241360] = 3, + ACTIONS(2839), 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, + [249627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 24, + ACTIONS(3121), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254744,11 +264214,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3055), 25, - sym__newline, + ACTIONS(3123), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -254770,11 +264240,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241418] = 3, + [249685] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2009), 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(2007), 34, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + 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, + [249743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 24, + ACTIONS(3231), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254799,11 +264324,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3063), 25, - sym__newline, + ACTIONS(3229), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -254825,11 +264350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241476] = 3, + [249801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 24, + ACTIONS(3235), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254854,11 +264379,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3067), 25, - sym__newline, + ACTIONS(3233), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -254880,11 +264405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241534] = 3, + [249859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 24, + ACTIONS(3073), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254909,11 +264434,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3141), 25, - sym__newline, + ACTIONS(3075), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -254935,11 +264460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241592] = 3, + [249917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 24, + ACTIONS(3251), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -254964,7 +264489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3167), 25, + ACTIONS(3249), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -254990,11 +264515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241650] = 3, + [249975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 24, + ACTIONS(3247), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -255019,11 +264544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3161), 25, - sym__newline, + ACTIONS(3245), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -255045,70 +264570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241708] = 7, - ACTIONS(2397), 1, - anon_sym_is, - STATE(1515), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2395), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, - 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(2857), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [241774] = 3, + [250033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 24, + ACTIONS(3243), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -255133,11 +264599,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3149), 25, - sym__newline, + ACTIONS(3241), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -255159,11 +264625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241832] = 3, + [250091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 24, + ACTIONS(3239), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -255188,11 +264654,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3255), 25, - sym__newline, + ACTIONS(3237), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -255214,25 +264680,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [241890] = 7, - ACTIONS(2397), 1, + [250149] = 7, + ACTIONS(2901), 1, anon_sym_is, - STATE(1515), 1, + STATE(1897), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 3, + ACTIONS(2895), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 4, + ACTIONS(2899), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, + ACTIONS(2768), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -255246,7 +264711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2770), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -255273,192 +264738,258 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [241956] = 3, + [250214] = 7, + ACTIONS(2754), 1, + anon_sym_is, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 24, + ACTIONS(2748), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2752), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, + sym__newline, + 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(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3145), 25, - sym__newline, + [250279] = 7, + ACTIONS(2893), 1, + anon_sym_is, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2891), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [242014] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3139), 24, + ACTIONS(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3137), 25, + [250344] = 7, + ACTIONS(2911), 1, + anon_sym_is, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2905), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym__newline, + 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, - [242072] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3127), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3125), 25, - sym__newline, + [250409] = 7, + ACTIONS(2893), 1, + anon_sym_is, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2891), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [242130] = 7, - ACTIONS(2397), 1, + ACTIONS(2770), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [250474] = 7, + ACTIONS(2893), 1, anon_sym_is, - STATE(1515), 1, + STATE(1396), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 3, + ACTIONS(2887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 4, + ACTIONS(2891), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, - sym__dedent, + ACTIONS(2768), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -255470,7 +265001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2770), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -255497,135 +265028,140 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [242196] = 3, + [250539] = 7, + ACTIONS(2901), 1, + anon_sym_is, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 24, + ACTIONS(2895), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 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(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3109), 25, + [250604] = 7, + ACTIONS(2754), 1, + anon_sym_is, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2748), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2752), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym__newline, 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, - [242254] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3714), 4, - sym_string_start, - anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(3169), 12, - anon_sym_else, + ACTIONS(2770), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(217), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [250669] = 5, + ACTIONS(3719), 1, anon_sym_in, - anon_sym_STAR, + ACTIONS(4161), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(221), 20, - 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_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_QMARK_LBRACK, - [242316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 24, + ACTIONS(197), 21, anon_sym_DOT, anon_sym_as, 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_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -255638,13 +265174,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(3095), 25, - sym__newline, + ACTIONS(201), 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, @@ -255664,27 +265200,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [242374] = 7, - ACTIONS(2397), 1, + [250730] = 7, + ACTIONS(2754), 1, anon_sym_is, - STATE(1515), 1, + STATE(2066), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 3, + ACTIONS(2748), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2395), 4, + ACTIONS(2752), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 14, + ACTIONS(2768), 14, sym__newline, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -255696,14 +265232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2770), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -255723,129 +265258,192 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [242440] = 3, + [250795] = 7, + ACTIONS(2901), 1, + anon_sym_is, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 24, + ACTIONS(2895), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 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(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3073), 25, - sym__newline, + [250860] = 7, + ACTIONS(2901), 1, + anon_sym_is, + STATE(1897), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2895), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + 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, - [242498] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3071), 24, + ACTIONS(2770), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3069), 25, - sym__newline, + [250925] = 7, + ACTIONS(2893), 1, + anon_sym_is, + STATE(1396), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2891), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [242556] = 5, - ACTIONS(4082), 1, + ACTIONS(2770), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [250990] = 5, + ACTIONS(3719), 1, anon_sym_in, - ACTIONS(4084), 1, + ACTIONS(4163), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 22, + ACTIONS(197), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -255864,13 +265462,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, + ACTIONS(201), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, @@ -255890,1981 +265488,1889 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [242618] = 3, + [251051] = 7, + ACTIONS(2754), 1, + anon_sym_is, + STATE(2066), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + ACTIONS(2748), 3, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(3045), 25, + ACTIONS(2752), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym__newline, 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, - [242676] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3047), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3045), 25, + [251116] = 7, + ACTIONS(2911), 1, + anon_sym_is, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2905), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym__newline, + 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, - [242734] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3059), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3057), 25, + [251181] = 7, + ACTIONS(2911), 1, + anon_sym_is, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2905), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym__newline, + 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, - [242792] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3115), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3113), 25, + [251246] = 7, + ACTIONS(2911), 1, + anon_sym_is, + STATE(1196), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2905), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym__newline, + 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, - [242850] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3131), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3129), 25, - sym__newline, + [251311] = 7, + ACTIONS(3283), 1, + anon_sym_is, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3281), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + 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, - [242908] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3131), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3129), 25, - sym__newline, + [251375] = 7, + ACTIONS(3283), 1, + anon_sym_is, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3281), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + 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, - [242966] = 5, - ACTIONS(4078), 1, - anon_sym_in, - ACTIONS(4086), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 22, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, - sym__newline, + [251439] = 7, + ACTIONS(3341), 1, + anon_sym_is, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3335), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [243028] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3297), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3299), 25, - sym__newline, + [251503] = 7, + ACTIONS(3341), 1, + anon_sym_is, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3335), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [243086] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3303), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3305), 25, - sym__newline, + [251567] = 7, + ACTIONS(3341), 1, + anon_sym_is, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3335), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [243144] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3133), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3135), 25, - sym__newline, + [251631] = 7, + ACTIONS(3341), 1, + anon_sym_is, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3335), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3339), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, 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, - [243202] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3259), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3257), 25, - sym__newline, + [251695] = 7, + ACTIONS(3283), 1, + anon_sym_is, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3281), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + 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, - [243260] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, - sym__newline, + [251759] = 7, + ACTIONS(3283), 1, + anon_sym_is, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3281), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + 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, - [243318] = 4, - ACTIONS(3169), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 23, + ACTIONS(2770), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, + [251823] = 7, + ACTIONS(3596), 1, + anon_sym_is, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3590), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3594), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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, - [243378] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3155), 24, + ACTIONS(2770), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(3153), 25, - sym__newline, + [251884] = 7, + ACTIONS(3596), 1, + anon_sym_is, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3590), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3594), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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, - [243436] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3159), 24, + ACTIONS(2770), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(3157), 25, + [251945] = 7, + ACTIONS(3482), 1, + anon_sym_is, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3476), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3480), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [243494] = 4, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 23, + ACTIONS(2770), 22, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(2859), 25, + [252006] = 7, + ACTIONS(3596), 1, + anon_sym_is, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3590), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3594), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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, - [243554] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3173), 24, + ACTIONS(2770), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(3171), 25, - sym__newline, + [252067] = 7, + ACTIONS(3596), 1, + anon_sym_is, + STATE(2484), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3590), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3594), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 14, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, 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, - [243612] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3253), 24, + ACTIONS(2770), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(3255), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - [243670] = 8, - ACTIONS(4091), 1, - anon_sym_not, - ACTIONS(4097), 1, + [252128] = 7, + ACTIONS(3482), 1, anon_sym_is, - STATE(3188), 1, + STATE(2345), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4088), 3, + ACTIONS(3476), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(4094), 4, + ACTIONS(3480), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2861), 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(2863), 21, + ACTIONS(2768), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, 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, - [243738] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3059), 24, + ACTIONS(2770), 22, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3057), 25, + [252189] = 7, + ACTIONS(3482), 1, + anon_sym_is, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3476), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3480), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [243796] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3273), 24, + ACTIONS(2770), 22, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3275), 25, + [252250] = 7, + ACTIONS(3482), 1, + anon_sym_is, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3476), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3480), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [243854] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3077), 24, + ACTIONS(2770), 22, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3079), 25, + [252311] = 7, + ACTIONS(3588), 1, + anon_sym_is, + STATE(2564), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3582), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3586), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [243912] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3181), 24, + ACTIONS(2770), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3179), 25, + [252371] = 7, + ACTIONS(3588), 1, + anon_sym_is, + STATE(2564), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3582), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3586), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [243970] = 4, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 23, + ACTIONS(2770), 21, + 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(2859), 25, + [252431] = 7, + ACTIONS(3588), 1, + anon_sym_is, + STATE(2564), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3582), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3586), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, 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, - [244030] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3185), 24, + ACTIONS(2770), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3183), 25, + [252491] = 7, + ACTIONS(3588), 1, + anon_sym_is, + STATE(2564), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3582), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3586), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [244088] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3281), 24, + ACTIONS(2770), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3283), 25, + [252551] = 7, + ACTIONS(3648), 1, + anon_sym_is, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3622), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 11, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [244146] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3285), 24, + ACTIONS(2770), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(3287), 25, + [252610] = 5, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 14, + sym__newline, + sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [244204] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3289), 24, + ACTIONS(2264), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3291), 25, + [252665] = 5, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 14, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [244262] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3293), 24, + ACTIONS(2236), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3295), 25, + [252720] = 5, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 14, + sym__newline, + sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [244320] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3189), 24, + ACTIONS(2400), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3187), 25, - sym__newline, + [252775] = 7, + ACTIONS(3648), 1, + anon_sym_is, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3622), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 11, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [244378] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3297), 24, + ACTIONS(2770), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(3299), 25, + [252834] = 5, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [244436] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3303), 24, + ACTIONS(2252), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3305), 25, + [252889] = 6, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(4165), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 13, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [244494] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3193), 24, + ACTIONS(2256), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3191), 25, + [252946] = 5, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 14, sym__newline, 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, - [244552] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2264), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, + [253001] = 10, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(4167), 1, + anon_sym_and, + ACTIONS(4169), 1, + anon_sym_or, + ACTIONS(4171), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 12, + sym__newline, + sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [244610] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3239), 24, - anon_sym_DOT, + ACTIONS(2059), 22, + anon_sym_import, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - 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(3237), 25, + [253066] = 6, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(4165), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 13, sym__newline, 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, - [244668] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3235), 24, + ACTIONS(2242), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3233), 25, - sym__newline, - sym_string_start, + [253123] = 9, + ACTIONS(4173), 1, + anon_sym_LBRACE, + ACTIONS(4175), 1, + sym_isMutableFlag, + ACTIONS(4177), 1, + anon_sym_QMARK_COLON, + STATE(3694), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4779), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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, @@ -257873,332 +267379,360 @@ 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, - [244726] = 5, + [253186] = 5, + ACTIONS(802), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3714), 5, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 14, + sym__newline, + 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(217), 12, + ACTIONS(2236), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(3169), 12, + anon_sym_assert, + anon_sym_rule, 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(221), 20, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + [253241] = 10, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(4165), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - [244788] = 3, + ACTIONS(4179), 1, + anon_sym_and, + ACTIONS(4181), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 24, - anon_sym_DOT, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 12, + sym__newline, + 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(2059), 22, + anon_sym_import, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - 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(2367), 25, + [253306] = 5, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [244846] = 4, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 23, + ACTIONS(2252), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(2859), 25, + [253361] = 6, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(4171), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 13, + sym__newline, + 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, - [244906] = 4, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 23, + ACTIONS(2256), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(2859), 25, + [253418] = 7, + ACTIONS(3648), 1, + anon_sym_is, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3622), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 11, sym_string_start, - anon_sym_COMMA, + anon_sym_COLON, 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, - [244966] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2770), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_PLUS, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, + [253477] = 5, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 14, + sym__newline, + sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [245024] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3203), 24, + ACTIONS(129), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3201), 25, - sym_string_start, + [253532] = 9, + ACTIONS(4173), 1, + anon_sym_LBRACE, + ACTIONS(4175), 1, + sym_isMutableFlag, + ACTIONS(4177), 1, + anon_sym_QMARK_COLON, + STATE(3643), 1, + aux_sym_comparison_operator_repeat1, + STATE(3694), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_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, @@ -258207,112 +267741,155 @@ 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, - [245082] = 5, + [253595] = 6, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(4171), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3714), 5, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 13, + sym__newline, + 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(217), 12, + ACTIONS(2242), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(3169), 12, + anon_sym_assert, + anon_sym_rule, 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(221), 20, - sym__newline, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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, + [253652] = 7, + ACTIONS(3648), 1, + anon_sym_is, + STATE(2611), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3622), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - [245144] = 5, - ACTIONS(4082), 1, - anon_sym_in, - ACTIONS(4100), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 22, + ACTIONS(2768), 11, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2770), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, 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, + anon_sym_PLUS, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(221), 25, - sym_string_start, + [253711] = 9, + ACTIONS(4173), 1, + anon_sym_LBRACE, + ACTIONS(4175), 1, + sym_isMutableFlag, + ACTIONS(4177), 1, + anon_sym_QMARK_COLON, + STATE(3694), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_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, @@ -258321,31 +267898,22 @@ 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, - [245206] = 7, - ACTIONS(2435), 1, anon_sym_is, - STATE(1713), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [253774] = 5, + ACTIONS(794), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2433), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 14, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -258360,12 +267928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2400), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, @@ -258387,493 +267954,442 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [245272] = 3, + [253829] = 5, + ACTIONS(802), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 24, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, + 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(2252), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3233), 25, + [253884] = 5, + ACTIONS(802), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, + sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [245330] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3239), 24, + ACTIONS(2252), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3237), 25, + [253939] = 5, + ACTIONS(794), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 14, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [245388] = 5, - STATE(3217), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4102), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2550), 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(2555), 31, - 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_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, - [245450] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3077), 24, + ACTIONS(129), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3079), 25, + [253994] = 5, + ACTIONS(822), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [245508] = 4, - STATE(3421), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 23, + ACTIONS(2252), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, + [254048] = 5, + ACTIONS(822), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 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, - [245568] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 22, + ACTIONS(2236), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, + [254102] = 6, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(4185), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 13, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [245630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3203), 24, + ACTIONS(2242), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(3201), 25, + [254158] = 5, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 14, sym__newline, 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, - [245688] = 5, - ACTIONS(3960), 1, - anon_sym_in, - ACTIONS(4105), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 23, + ACTIONS(2264), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, 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_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, - ACTIONS(221), 24, + [254212] = 6, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(4185), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 13, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, 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_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, - [245750] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2256), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, - sym__newline, - sym_string_start, - anon_sym_COMMA, + [254268] = 9, + ACTIONS(4187), 1, + anon_sym_LBRACE, + ACTIONS(4189), 1, + sym_isMutableFlag, + ACTIONS(4191), 1, + anon_sym_QMARK_COLON, + STATE(3558), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4776), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + 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, @@ -258882,476 +268398,480 @@ 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, - [245808] = 4, - STATE(3208), 1, - aux_sym_comparison_operator_repeat1, + [254330] = 5, + ACTIONS(4183), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 23, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, + 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(2252), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, + [254384] = 7, + ACTIONS(3768), 1, + anon_sym_is, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3766), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [245868] = 4, - ACTIONS(4046), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2560), 23, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, + 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_not, anon_sym_and, anon_sym_or, - 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(2562), 25, + [254442] = 5, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, 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, - [245928] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2365), 24, + ACTIONS(2252), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(2367), 25, + [254496] = 5, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 14, sym__newline, 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, - [245986] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 24, + ACTIONS(2236), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, - sym__newline, + [254550] = 7, + ACTIONS(3768), 1, + anon_sym_is, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3766), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - 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, - [246044] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3165), 24, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_for, 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_not, anon_sym_and, anon_sym_or, - 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(3167), 25, + [254608] = 10, + ACTIONS(131), 1, + anon_sym_DOT, + ACTIONS(135), 1, + anon_sym_QMARK_DOT, + ACTIONS(4193), 1, + anon_sym_if, + ACTIONS(4195), 1, + anon_sym_and, + ACTIONS(4197), 1, + anon_sym_or, + ACTIONS(4199), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 12, sym__newline, + sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - 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, - [246102] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3259), 24, - anon_sym_DOT, + ACTIONS(2059), 21, + anon_sym_import, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - 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(3257), 25, + [254672] = 5, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 14, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_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, - [246160] = 5, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 22, + ACTIONS(2400), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_else, + anon_sym_assert, + anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, - sym__newline, + [254726] = 7, + ACTIONS(3768), 1, + anon_sym_is, + STATE(2785), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3762), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3766), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - 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, - [246222] = 3, + ACTIONS(2770), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_for, + anon_sym_else, + 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, + [254784] = 9, + ACTIONS(4187), 1, + anon_sym_LBRACE, + ACTIONS(4189), 1, + sym_isMutableFlag, + ACTIONS(4191), 1, + anon_sym_QMARK_COLON, + STATE(3558), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 15, + ACTIONS(1536), 6, 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(2555), 33, + ACTIONS(1538), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, 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_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, - [246279] = 7, - ACTIONS(2771), 1, - anon_sym_is, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, + [254846] = 5, + ACTIONS(836), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2765), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2769), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -259363,12 +268883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2400), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, @@ -259390,80 +268909,116 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246344] = 5, - ACTIONS(3597), 1, - anon_sym_in, - ACTIONS(4107), 1, - anon_sym_not, + [254900] = 5, + ACTIONS(4183), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 21, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 14, + sym__newline, + 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(129), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, + [254954] = 5, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 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, - [246405] = 7, - ACTIONS(2771), 1, - anon_sym_is, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(129), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_rule, + 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_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [255008] = 6, + ACTIONS(822), 1, + anon_sym_if, + ACTIONS(4201), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2765), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2769), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -259472,17 +269027,15 @@ 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(2857), 26, + ACTIONS(2256), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, @@ -259504,24 +269057,69 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246470] = 7, - ACTIONS(2771), 1, - anon_sym_is, - STATE(2020), 1, + [255064] = 9, + ACTIONS(4187), 1, + anon_sym_LBRACE, + ACTIONS(4189), 1, + sym_isMutableFlag, + ACTIONS(4191), 1, + anon_sym_QMARK_COLON, + STATE(3558), 1, + sym_dict_expr, + STATE(3660), 1, aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2765), 3, - anon_sym_in, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2769), 4, + ACTIONS(1538), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 13, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [255126] = 5, + ACTIONS(822), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 13, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -259535,12 +269133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2264), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, @@ -259562,25 +269159,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246535] = 7, - ACTIONS(2789), 1, - anon_sym_is, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [255180] = 6, + ACTIONS(822), 1, + anon_sym_if, + ACTIONS(4201), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2783), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 12, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -259589,18 +269179,17 @@ 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(2857), 25, + ACTIONS(2242), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -259620,45 +269209,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246600] = 7, - ACTIONS(2789), 1, - anon_sym_is, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [255236] = 10, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(4203), 1, + anon_sym_and, + ACTIONS(4205), 1, + anon_sym_or, + ACTIONS(4207), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2783), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2059), 22, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -259670,32 +269257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [246665] = 7, - ACTIONS(2805), 1, - anon_sym_is, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, + [255300] = 5, + ACTIONS(4193), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2803), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 14, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -259709,14 +269287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2400), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -259736,27 +269312,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246730] = 7, - ACTIONS(2789), 1, - anon_sym_is, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [255354] = 5, + ACTIONS(836), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2783), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -259768,13 +269335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2236), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -259794,24 +269361,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246795] = 7, - ACTIONS(2805), 1, - anon_sym_is, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, + [255408] = 5, + ACTIONS(836), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2803), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -259825,12 +269384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2252), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_else, anon_sym_lambda, @@ -259852,24 +269410,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246860] = 7, - ACTIONS(2789), 1, - anon_sym_is, - STATE(2006), 1, - aux_sym_comparison_operator_repeat1, + [255462] = 10, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(4183), 1, + anon_sym_if, + ACTIONS(4185), 1, + anon_sym_PLUS, + ACTIONS(4209), 1, + anon_sym_and, + ACTIONS(4211), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2783), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, + STATE(699), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 12, sym__newline, sym_string_start, ts_builtin_sym_end, @@ -259878,18 +269438,14 @@ static const uint16_t ts_small_parse_table[] = { 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(2857), 25, + ACTIONS(2059), 21, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -259902,32 +269458,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [246925] = 7, - ACTIONS(2805), 1, - anon_sym_is, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, + [255526] = 5, + ACTIONS(4193), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2803), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 14, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -259941,14 +269488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2236), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -259968,24 +269513,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [246990] = 7, - ACTIONS(2805), 1, - anon_sym_is, - STATE(1982), 1, - aux_sym_comparison_operator_repeat1, + [255580] = 5, + ACTIONS(4193), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2803), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -259999,14 +269537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(2252), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260026,27 +269562,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247055] = 7, - ACTIONS(2813), 1, - anon_sym_is, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, + [255634] = 5, + ACTIONS(822), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2807), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, - sym__dedent, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -260058,13 +269585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2252), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260084,25 +269611,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247120] = 7, - ACTIONS(2813), 1, - anon_sym_is, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, + [255688] = 6, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(4207), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2807), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 12, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -260111,18 +269631,17 @@ 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(2857), 25, + ACTIONS(2242), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260142,101 +269661,92 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247185] = 5, - ACTIONS(3597), 1, - anon_sym_in, - ACTIONS(4109), 1, - anon_sym_not, + [255744] = 5, + ACTIONS(836), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 21, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 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(2264), 25, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_assert, + anon_sym_rule, + 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_check, + anon_sym_not, anon_sym_and, anon_sym_or, - 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(221), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + [255798] = 10, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, anon_sym_QMARK_DOT, + ACTIONS(822), 1, + anon_sym_if, + ACTIONS(4201), 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, - [247246] = 7, - ACTIONS(2813), 1, - anon_sym_is, - STATE(2001), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(4213), 1, + anon_sym_and, + ACTIONS(4215), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2807), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, - sym__dedent, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2059), 22, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260248,63 +269758,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [247311] = 7, - ACTIONS(2813), 1, + [255862] = 7, + ACTIONS(3768), 1, anon_sym_is, - STATE(2001), 1, + STATE(2785), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2807), 3, + ACTIONS(3762), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2811), 4, + ACTIONS(3766), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym__newline, - sym__dedent, + ACTIONS(2768), 13, sym_string_start, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(2857), 25, - anon_sym_import, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_rule, + anon_sym_for, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -260314,26 +269815,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247376] = 7, - ACTIONS(2771), 1, - anon_sym_is, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, + [255920] = 5, + ACTIONS(4193), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2765), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2769), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 14, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -260345,14 +269839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 26, + ACTIONS(129), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260372,24 +269864,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247441] = 7, - ACTIONS(3039), 1, - anon_sym_is, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [255974] = 5, + ACTIONS(822), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3033), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 13, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -260403,13 +269887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2400), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260429,26 +269913,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247505] = 7, - ACTIONS(3039), 1, - anon_sym_is, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [256028] = 5, + ACTIONS(4193), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3033), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 14, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -260460,12 +269937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2252), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -260486,24 +269962,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247569] = 7, - ACTIONS(3107), 1, - anon_sym_is, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [256082] = 6, + ACTIONS(4193), 1, + anon_sym_if, + ACTIONS(4199), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3099), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 13, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -260512,17 +269983,15 @@ 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(2857), 25, + ACTIONS(2256), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -260543,24 +270012,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247633] = 7, - ACTIONS(3107), 1, - anon_sym_is, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [256138] = 6, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(4207), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3099), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -260569,18 +270032,17 @@ 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(2857), 25, + ACTIONS(2256), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260600,26 +270062,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247697] = 7, - ACTIONS(3039), 1, - anon_sym_is, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [256194] = 5, + ACTIONS(836), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3033), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -260631,13 +270085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2252), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260657,24 +270111,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247761] = 7, - ACTIONS(3107), 1, - anon_sym_is, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [256248] = 5, + ACTIONS(4193), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3099), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 14, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -260688,12 +270135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(2264), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -260714,26 +270160,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247825] = 7, - ACTIONS(3107), 1, - anon_sym_is, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, + [256302] = 5, + ACTIONS(822), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3099), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__dedent, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -260745,13 +270183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 25, + ACTIONS(129), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -260771,43 +270209,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247889] = 7, - ACTIONS(3039), 1, - anon_sym_is, - STATE(2120), 1, - aux_sym_comparison_operator_repeat1, + [256356] = 6, + ACTIONS(4193), 1, + anon_sym_if, + ACTIONS(4199), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3033), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 13, + sym__newline, + 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(2857), 25, + ACTIONS(2242), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -260828,266 +270259,395 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [247953] = 7, - ACTIONS(3419), 1, - anon_sym_is, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [256412] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 3, - anon_sym_in, + ACTIONS(4217), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3382), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3417), 4, + ACTIONS(2441), 29, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + 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_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, - ACTIONS(2859), 14, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [256465] = 5, + ACTIONS(4220), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 13, + sym__dedent, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, 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_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, + ACTIONS(2264), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [248014] = 7, - ACTIONS(3419), 1, - anon_sym_is, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [256518] = 10, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(4222), 1, + anon_sym_if, + ACTIONS(4224), 1, + anon_sym_and, + ACTIONS(4226), 1, + anon_sym_or, + ACTIONS(4228), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3417), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_AT, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, - anon_sym_DOT, + ACTIONS(2059), 21, + anon_sym_import, anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [248075] = 7, - ACTIONS(3419), 1, - anon_sym_is, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [256581] = 6, + ACTIONS(4222), 1, + anon_sym_if, + ACTIONS(4228), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3417), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, 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_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, + ACTIONS(2242), 24, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_for, - anon_sym_else, - anon_sym_EQ, + anon_sym_assert, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [248136] = 7, - ACTIONS(3419), 1, - anon_sym_is, - STATE(2324), 1, - aux_sym_comparison_operator_repeat1, + [256636] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 3, - anon_sym_in, + STATE(3382), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3417), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 14, - sym_string_start, + ACTIONS(2290), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 21, + 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, + [256687] = 10, + ACTIONS(4230), 1, + anon_sym_COLON, + ACTIONS(4232), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_isMutableFlag, + ACTIONS(4236), 1, + anon_sym_QMARK_COLON, + STATE(4128), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4784), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_for, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [248197] = 7, - ACTIONS(3493), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, - STATE(2362), 1, + anon_sym_QMARK_LBRACK, + [256750] = 9, + ACTIONS(4232), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_isMutableFlag, + ACTIONS(4236), 1, + anon_sym_QMARK_COLON, + STATE(3917), 1, aux_sym_comparison_operator_repeat1, + STATE(4128), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 3, - anon_sym_in, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3491), 4, + ACTIONS(1538), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, - ACTIONS(2859), 13, - sym__newline, - sym__indent, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [256811] = 5, + ACTIONS(4222), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 13, sym_string_start, - anon_sym_COLON, + 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(2857), 21, + ACTIONS(2264), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_else, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -261097,50 +270657,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248257] = 7, - ACTIONS(3493), 1, - anon_sym_is, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [256864] = 6, + ACTIONS(4222), 1, + anon_sym_if, + ACTIONS(4228), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3491), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__newline, - sym__indent, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, sym_string_start, - anon_sym_COLON, + 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(2857), 21, + ACTIONS(2256), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_else, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -261150,103 +270706,98 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248317] = 7, - ACTIONS(3493), 1, - anon_sym_is, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [256919] = 10, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(4220), 1, + anon_sym_if, + ACTIONS(4238), 1, + anon_sym_and, + ACTIONS(4240), 1, + anon_sym_or, + ACTIONS(4242), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3491), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__newline, - sym__indent, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, + sym__dedent, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + anon_sym_AT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, + ACTIONS(2059), 21, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_else, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [248377] = 7, - ACTIONS(3493), 1, - anon_sym_is, - STATE(2362), 1, - aux_sym_comparison_operator_repeat1, + [256982] = 5, + ACTIONS(4220), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3491), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__newline, - sym__indent, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 13, + sym__dedent, sym_string_start, - anon_sym_COLON, + 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(2857), 21, + ACTIONS(129), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_else, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -261256,17 +270807,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248437] = 5, - ACTIONS(758), 1, + [257035] = 5, + ACTIONS(4220), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, + ACTIONS(2402), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -261280,13 +270830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 25, + ACTIONS(2400), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261306,19 +270855,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248492] = 6, - ACTIONS(766), 1, + [257088] = 5, + ACTIONS(4222), 1, anon_sym_if, - ACTIONS(4111), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 13, - sym__newline, + ACTIONS(2254), 13, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -261327,17 +270873,17 @@ 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(2445), 25, + ACTIONS(2252), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261357,19 +270903,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248549] = 6, - ACTIONS(758), 1, + [257141] = 6, + ACTIONS(4220), 1, anon_sym_if, - ACTIONS(4113), 1, + ACTIONS(4242), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 13, - sym__newline, + ACTIONS(2244), 12, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -261382,13 +270927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2449), 25, + ACTIONS(2242), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261408,37 +270952,44 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248606] = 5, - ACTIONS(766), 1, + [257196] = 12, + ACTIONS(225), 1, + anon_sym_DOT, + ACTIONS(227), 1, + anon_sym_QMARK_DOT, + ACTIONS(4222), 1, anon_sym_if, + ACTIONS(4224), 1, + anon_sym_and, + ACTIONS(4226), 1, + anon_sym_or, + ACTIONS(4228), 1, + anon_sym_PLUS, + ACTIONS(4248), 1, + anon_sym_as, + ACTIONS(4250), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 14, - sym__newline, + ACTIONS(4244), 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(191), 25, + ACTIONS(4246), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261450,27 +271001,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [248661] = 5, - ACTIONS(758), 1, + [257263] = 5, + ACTIONS(4222), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, - sym__dedent, + ACTIONS(2254), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -261482,13 +271030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 25, + ACTIONS(2252), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261508,19 +271055,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248716] = 5, - ACTIONS(758), 1, + [257316] = 9, + ACTIONS(4232), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_isMutableFlag, + ACTIONS(4236), 1, + anon_sym_QMARK_COLON, + STATE(4128), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + [257377] = 5, + ACTIONS(4222), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 14, - sym__newline, - sym__dedent, + ACTIONS(2238), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -261532,13 +271130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2441), 25, + ACTIONS(2236), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261558,37 +271155,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248771] = 5, - ACTIONS(766), 1, + [257430] = 6, + ACTIONS(4220), 1, anon_sym_if, + ACTIONS(4242), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, + ACTIONS(2258), 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(2461), 25, + ACTIONS(2256), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261608,17 +271204,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248826] = 5, - ACTIONS(766), 1, + [257485] = 5, + ACTIONS(4222), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 14, - sym__newline, + ACTIONS(133), 13, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -261632,13 +271227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2441), 25, + ACTIONS(129), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261658,19 +271252,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248881] = 5, - ACTIONS(758), 1, + [257538] = 5, + ACTIONS(4222), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 14, - sym__newline, - sym__dedent, + ACTIONS(2402), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -261682,13 +271275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(191), 25, + ACTIONS(2400), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261708,37 +271300,44 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [248936] = 5, - ACTIONS(766), 1, + [257591] = 12, + ACTIONS(229), 1, + anon_sym_DOT, + ACTIONS(231), 1, + anon_sym_QMARK_DOT, + ACTIONS(4220), 1, anon_sym_if, + ACTIONS(4238), 1, + anon_sym_and, + ACTIONS(4240), 1, + anon_sym_or, + ACTIONS(4242), 1, + anon_sym_PLUS, + ACTIONS(4252), 1, + anon_sym_as, + ACTIONS(4254), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 14, - sym__newline, + ACTIONS(4244), 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(2465), 25, + ACTIONS(4246), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261750,35 +271349,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [257658] = 6, + ACTIONS(3869), 1, + anon_sym_is, + STATE(3007), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2768), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3865), 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(2770), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + 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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [248991] = 10, - ACTIONS(197), 1, + [257713] = 9, + ACTIONS(4232), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_isMutableFlag, + ACTIONS(4236), 1, + anon_sym_QMARK_COLON, + STATE(4128), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4784), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 30, anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(758), 1, + anon_sym_as, anon_sym_if, - ACTIONS(4113), 1, - anon_sym_PLUS, - ACTIONS(4115), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, - ACTIONS(4117), 1, 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, + [257774] = 5, + ACTIONS(4220), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 12, - sym__newline, + ACTIONS(2238), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -261786,16 +271473,18 @@ static const uint16_t ts_small_parse_table[] = { 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(2355), 22, + ACTIONS(2236), 24, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261807,127 +271496,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249056] = 7, - ACTIONS(3554), 1, + [257827] = 6, + ACTIONS(3869), 1, anon_sym_is, - STATE(2549), 1, + STATE(3007), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 3, + ACTIONS(2768), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3865), 7, anon_sym_in, anon_sym_LT, - anon_sym_GT, - ACTIONS(3552), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 20, - anon_sym_import, + anon_sym_GT, + ACTIONS(2770), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, + 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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249115] = 7, - ACTIONS(3554), 1, + [257882] = 6, + ACTIONS(3869), 1, anon_sym_is, - STATE(2549), 1, + STATE(3007), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 3, + ACTIONS(2768), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3865), 7, anon_sym_in, anon_sym_LT, - anon_sym_GT, - ACTIONS(3552), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 20, - anon_sym_import, + anon_sym_GT, + ACTIONS(2770), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, + 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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249174] = 5, - ACTIONS(758), 1, + [257937] = 5, + ACTIONS(4220), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 14, - sym__newline, + ACTIONS(2254), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -261941,13 +271625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 25, + ACTIONS(2252), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -261967,101 +271650,199 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [249229] = 7, - ACTIONS(3554), 1, + [257990] = 6, + ACTIONS(3869), 1, anon_sym_is, - STATE(2549), 1, + STATE(3007), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 3, + ACTIONS(2768), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3865), 7, anon_sym_in, anon_sym_LT, - anon_sym_GT, - ACTIONS(3552), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 20, - anon_sym_import, + anon_sym_GT, + ACTIONS(2770), 29, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, + 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_integer, + sym_float, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249288] = 7, - ACTIONS(3554), 1, - anon_sym_is, - STATE(2549), 1, + [258045] = 9, + ACTIONS(4173), 1, + anon_sym_LBRACE, + ACTIONS(4175), 1, + sym_isMutableFlag, + ACTIONS(4177), 1, + anon_sym_QMARK_COLON, + STATE(3694), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4779), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 3, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 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, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [258106] = 10, + ACTIONS(4232), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_isMutableFlag, + ACTIONS(4236), 1, + anon_sym_QMARK_COLON, + ACTIONS(4256), 1, + anon_sym_COLON, + STATE(4128), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4784), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3552), 4, + ACTIONS(1538), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, - ACTIONS(2859), 13, - sym__newline, - sym__indent, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [258169] = 5, + ACTIONS(4220), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(862), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, + sym__dedent, sym_string_start, - anon_sym_COLON, + 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(2857), 20, + ACTIONS(2252), 24, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, - anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -262071,38 +271852,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [249347] = 6, - ACTIONS(766), 1, - anon_sym_if, - ACTIONS(4111), 1, - anon_sym_PLUS, + [258222] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4070), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 13, - sym__newline, + ACTIONS(4264), 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(2449), 25, + ACTIONS(4258), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262114,46 +271896,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249404] = 6, - ACTIONS(758), 1, - anon_sym_if, - ACTIONS(4113), 1, - anon_sym_PLUS, + [258280] = 7, + ACTIONS(3937), 1, + anon_sym_is, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 13, + ACTIONS(3931), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, sym__newline, - sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2770), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_else, + 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, + [258336] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4020), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4266), 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(2445), 25, + ACTIONS(4268), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262165,46 +271995,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249461] = 6, - ACTIONS(766), 1, - anon_sym_if, - ACTIONS(4111), 1, - anon_sym_PLUS, + [258394] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3429), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4044), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 13, - sym__newline, + ACTIONS(4276), 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(2457), 25, + ACTIONS(4274), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262216,132 +272045,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249518] = 9, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - sym_isMutableFlag, - ACTIONS(4123), 1, - anon_sym_QMARK_COLON, - STATE(3703), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4679), 1, + [258452] = 7, + ACTIONS(4049), 1, + anon_sym_is, + STATE(3153), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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, + ACTIONS(4047), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [249581] = 5, - ACTIONS(766), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, + ACTIONS(2768), 11, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, 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(2461), 25, - anon_sym_import, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249636] = 5, - ACTIONS(766), 1, - anon_sym_if, + [258508] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3457), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4073), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 14, - sym__newline, + ACTIONS(4280), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -262352,13 +272127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 25, + ACTIONS(4278), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262370,52 +272144,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249691] = 10, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(766), 1, - anon_sym_if, - ACTIONS(4111), 1, - anon_sym_PLUS, - ACTIONS(4125), 1, - anon_sym_and, - ACTIONS(4127), 1, - anon_sym_or, + [258566] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3451), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4021), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 12, - sym__newline, + ACTIONS(4280), 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(2355), 22, + ACTIONS(4278), 22, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262433,97 +272200,93 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [249756] = 6, - ACTIONS(758), 1, - anon_sym_if, - ACTIONS(4113), 1, - anon_sym_PLUS, + [258624] = 7, + ACTIONS(4049), 1, + anon_sym_is, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 13, - sym__newline, - sym__dedent, + ACTIONS(4043), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4047), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 11, sym_string_start, anon_sym_COMMA, 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(2457), 25, - anon_sym_import, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249813] = 9, - ACTIONS(4119), 1, + [258680] = 10, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4286), 1, sym_isMutableFlag, - ACTIONS(4123), 1, + ACTIONS(4288), 1, anon_sym_QMARK_COLON, - STATE(3536), 1, - aux_sym_comparison_operator_repeat1, - STATE(3703), 1, - sym_dict_expr, - STATE(4412), 1, + STATE(4447), 1, aux_sym_dotted_name_repeat1, + STATE(4502), 1, + sym_dict_expr, + STATE(4802), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, - anon_sym_EQ, + ACTIONS(1536), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 30, + ACTIONS(1538), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, + anon_sym_RPAREN, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -262538,140 +272301,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [249876] = 9, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - sym_isMutableFlag, - ACTIONS(4123), 1, - anon_sym_QMARK_COLON, - STATE(3703), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, + [258742] = 7, + ACTIONS(4049), 1, + anon_sym_is, + STATE(3153), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4043), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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, + ACTIONS(4047), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [249939] = 5, - ACTIONS(758), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 14, - sym__newline, - sym__dedent, + ACTIONS(2768), 11, sym_string_start, anon_sym_COMMA, 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(2453), 25, - anon_sym_import, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [249994] = 6, - ACTIONS(4129), 1, - anon_sym_if, - ACTIONS(4131), 1, - anon_sym_PLUS, + [258798] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4072), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 13, - sym__newline, + ACTIONS(4266), 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(2449), 24, + ACTIONS(4268), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -262684,51 +272394,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250050] = 7, - ACTIONS(3651), 1, + [258856] = 7, + ACTIONS(4135), 1, anon_sym_is, - STATE(2729), 1, + STATE(3266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, + ACTIONS(4129), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3649), 4, + ACTIONS(4133), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 13, + ACTIONS(2768), 13, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2857), 19, + ACTIONS(2770), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262743,19 +272449,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250108] = 5, - ACTIONS(816), 1, - anon_sym_if, + [258912] = 6, + STATE(3456), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4021), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, + ACTIONS(4290), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -262766,12 +272472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 25, + ACTIONS(4292), 24, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_elif, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -262784,44 +272491,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250162] = 5, - ACTIONS(816), 1, - anon_sym_if, + [258966] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, + ACTIONS(2356), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4294), 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(191), 25, + ACTIONS(4296), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262833,27 +272538,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250216] = 5, - ACTIONS(816), 1, - anon_sym_if, + [259018] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4019), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, + ACTIONS(4264), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -262864,13 +272571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 25, + ACTIONS(4258), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -262882,44 +272588,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250270] = 6, - ACTIONS(4129), 1, - anon_sym_if, - ACTIONS(4131), 1, - anon_sym_PLUS, + [259076] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4049), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 13, - sym__newline, + ACTIONS(4300), 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(2445), 24, + ACTIONS(4298), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -262932,96 +272638,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250326] = 7, - ACTIONS(3709), 1, - anon_sym_is, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, + [259134] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4018), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3707), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(4264), 12, sym_string_start, - anon_sym_COLON, + 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_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, + ACTIONS(4258), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250384] = 6, - ACTIONS(808), 1, - anon_sym_if, - ACTIONS(4133), 1, - anon_sym_PLUS, + [259192] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4071), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, + ACTIONS(4264), 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(2445), 25, + ACTIONS(4258), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -263033,44 +272738,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250440] = 6, - ACTIONS(808), 1, + [259250] = 4, + STATE(3433), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2600), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2598), 31, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(4133), 1, + anon_sym_COMMA, + anon_sym_COLON, + 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, + 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, + [259300] = 4, + STATE(3170), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2298), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2300), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + 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, + 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, + [259350] = 6, + STATE(3459), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4073), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, + ACTIONS(4290), 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(2449), 25, + ACTIONS(4292), 24, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_elif, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -263083,54 +272878,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250496] = 5, - ACTIONS(808), 1, - anon_sym_if, + [259404] = 7, + ACTIONS(3937), 1, + anon_sym_is, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 13, - sym__dedent, + ACTIONS(3931), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, + sym__newline, 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(2453), 25, - anon_sym_import, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263140,47 +272933,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250550] = 6, - ACTIONS(808), 1, - anon_sym_if, - ACTIONS(4133), 1, - anon_sym_PLUS, + [259460] = 7, + ACTIONS(3973), 1, + anon_sym_is, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, - sym__dedent, + ACTIONS(3961), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3971), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2457), 25, - anon_sym_import, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263190,41 +272982,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250606] = 7, - ACTIONS(3709), 1, + [259516] = 7, + ACTIONS(3973), 1, anon_sym_is, - STATE(2760), 1, + STATE(3161), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 3, + ACTIONS(3961), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3707), 4, + ACTIONS(3971), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 12, sym_string_start, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -263233,54 +273025,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250664] = 5, - ACTIONS(808), 1, - anon_sym_if, + [259572] = 7, + ACTIONS(4135), 1, + anon_sym_is, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym__dedent, + ACTIONS(4129), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4133), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym_string_start, 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(2461), 25, - anon_sym_import, + ACTIONS(2770), 17, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - anon_sym_else, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263290,46 +273080,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250718] = 5, - ACTIONS(808), 1, - anon_sym_if, + [259628] = 7, + ACTIONS(3937), 1, + anon_sym_is, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym__dedent, + ACTIONS(3931), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, + sym__newline, 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(2461), 25, - anon_sym_import, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263339,46 +273129,97 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250772] = 5, - ACTIONS(4129), 1, + [259684] = 9, + ACTIONS(3803), 1, + anon_sym_LBRACE, + ACTIONS(3805), 1, + sym_isMutableFlag, + ACTIONS(3807), 1, + anon_sym_QMARK_COLON, + STATE(4202), 1, + aux_sym_comparison_operator_repeat1, + STATE(4306), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_for, + 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, + [259744] = 7, + ACTIONS(3937), 1, + anon_sym_is, + STATE(2874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 14, + ACTIONS(3931), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, sym__newline, 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(2453), 24, - anon_sym_import, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263388,46 +273229,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250826] = 5, - ACTIONS(808), 1, - anon_sym_if, + [259800] = 7, + ACTIONS(3973), 1, + anon_sym_is, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, - sym__dedent, + ACTIONS(3961), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3971), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 25, - anon_sym_import, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263437,47 +273278,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250880] = 6, - ACTIONS(4129), 1, - anon_sym_if, - ACTIONS(4131), 1, - anon_sym_PLUS, + [259856] = 7, + ACTIONS(3973), 1, + anon_sym_is, + STATE(3161), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 13, - sym__newline, + ACTIONS(3961), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3971), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 12, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2457), 24, - anon_sym_import, + ACTIONS(2770), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -263487,93 +273327,88 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [250936] = 6, - ACTIONS(4135), 1, - anon_sym_if, - ACTIONS(4137), 1, - anon_sym_PLUS, + [259912] = 7, + ACTIONS(4049), 1, + anon_sym_is, + STATE(3153), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 13, - sym__newline, - sym__dedent, + ACTIONS(4043), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4047), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 11, sym_string_start, anon_sym_COMMA, 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(2445), 24, - anon_sym_import, + ACTIONS(2770), 19, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [250992] = 10, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - ACTIONS(808), 1, - anon_sym_if, - ACTIONS(4133), 1, - anon_sym_PLUS, - ACTIONS(4139), 1, - anon_sym_and, - ACTIONS(4141), 1, - anon_sym_or, + [259968] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4011), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, - sym__dedent, + ACTIONS(4302), 12, sym_string_start, - anon_sym_COMMA, + 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(2355), 22, + ACTIONS(4304), 22, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -263591,36 +273426,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [251056] = 6, - ACTIONS(4135), 1, - anon_sym_if, - ACTIONS(4137), 1, - anon_sym_PLUS, + [260026] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3430), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4009), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 13, - sym__newline, - sym__dedent, + ACTIONS(4306), 12, sym_string_start, - anon_sym_COMMA, + 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(2449), 24, + ACTIONS(4308), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -263633,27 +273470,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251112] = 5, - ACTIONS(808), 1, - anon_sym_if, + [260084] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3476), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(3989), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, - sym__dedent, + ACTIONS(4276), 12, sym_string_start, - anon_sym_COMMA, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -263664,13 +273503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(191), 25, + ACTIONS(4274), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -263682,28 +273520,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251166] = 5, - ACTIONS(4129), 1, - anon_sym_if, + [260142] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4007), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 14, - sym__newline, + ACTIONS(4302), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -263714,11 +273553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2441), 24, + ACTIONS(4304), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -263731,27 +273570,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251220] = 5, - ACTIONS(816), 1, - anon_sym_if, + [260200] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3416), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4010), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 13, + ACTIONS(4310), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -263762,13 +273603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2441), 25, + ACTIONS(4312), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -263780,51 +273620,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251274] = 10, - ACTIONS(193), 1, - anon_sym_DOT, - ACTIONS(195), 1, - anon_sym_QMARK_DOT, - ACTIONS(4129), 1, - anon_sym_if, - ACTIONS(4131), 1, - anon_sym_PLUS, - ACTIONS(4143), 1, - anon_sym_and, - ACTIONS(4145), 1, - anon_sym_or, + [260258] = 6, + STATE(3428), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4009), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 12, - sym__newline, + ACTIONS(4290), 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(2355), 21, + ACTIONS(4292), 24, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_elif, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -263842,85 +273674,84 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [251338] = 7, - ACTIONS(3651), 1, - anon_sym_is, - STATE(2729), 1, - aux_sym_comparison_operator_repeat1, + [260312] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4028), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3649), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + ACTIONS(4314), 12, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2857), 19, + ACTIONS(4316), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, - anon_sym_else, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251396] = 5, - ACTIONS(4135), 1, - anon_sym_if, + [260370] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 14, + ACTIONS(2356), 4, sym__newline, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4294), 10, 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(2453), 24, + ACTIONS(4296), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, anon_sym_rule, anon_sym_lambda, @@ -263934,44 +273765,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251450] = 6, - ACTIONS(4135), 1, - anon_sym_if, - ACTIONS(4137), 1, - anon_sym_PLUS, + [260422] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4097), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 13, - sym__newline, + ACTIONS(4302), 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(2457), 24, + ACTIONS(4304), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -263984,28 +273815,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251506] = 5, - ACTIONS(4129), 1, + [260480] = 9, + ACTIONS(3803), 1, + anon_sym_LBRACE, + ACTIONS(3805), 1, + sym_isMutableFlag, + ACTIONS(3807), 1, + anon_sym_QMARK_COLON, + STATE(4306), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_for, + 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, + [260540] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4008), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 14, - sym__newline, + ACTIONS(4318), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264016,11 +273899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(191), 24, + ACTIONS(4320), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -264033,28 +273916,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251560] = 5, - ACTIONS(4129), 1, - anon_sym_if, + [260598] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(4029), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, + ACTIONS(4314), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264065,11 +273949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 24, + ACTIONS(4316), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -264082,129 +273966,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251614] = 7, - ACTIONS(3651), 1, - anon_sym_is, - STATE(2729), 1, - aux_sym_comparison_operator_repeat1, + [260656] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4082), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3649), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, + ACTIONS(4314), 12, + sym__dedent, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2857), 19, + ACTIONS(4316), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_for, - anon_sym_else, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251672] = 7, - ACTIONS(3709), 1, - anon_sym_is, - STATE(2760), 1, + [260714] = 4, + STATE(4829), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 3, - anon_sym_in, + ACTIONS(197), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3707), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 11, - sym_string_start, + ACTIONS(201), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + 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_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - 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_PLUS_EQ, anon_sym_then, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [251730] = 5, - ACTIONS(808), 1, - anon_sym_if, + anon_sym_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, + [260764] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4083), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 13, + ACTIONS(4314), 12, sym__dedent, sym_string_start, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264215,13 +274095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2441), 25, + ACTIONS(4316), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264233,28 +274112,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251784] = 5, - ACTIONS(4135), 1, - anon_sym_if, + [260822] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3472), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4063), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, + ACTIONS(4324), 12, sym__dedent, sym_string_start, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264265,11 +274145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 24, + ACTIONS(4322), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -264282,54 +274162,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251838] = 5, + [260880] = 7, ACTIONS(4135), 1, - anon_sym_if, + anon_sym_is, + STATE(3266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, - sym__dedent, + ACTIONS(4129), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4133), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 13, sym_string_start, 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(2461), 24, - anon_sym_import, + ACTIONS(2770), 17, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, + 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_check, anon_sym_not, anon_sym_and, anon_sym_or, @@ -264339,71 +274217,69 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [251892] = 7, - ACTIONS(3709), 1, - anon_sym_is, - STATE(2760), 1, - aux_sym_comparison_operator_repeat1, + [260936] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3424), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4062), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3707), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(4310), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2857), 21, + ACTIONS(4312), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [251950] = 5, - ACTIONS(4135), 1, - anon_sym_if, + [260994] = 6, + STATE(3445), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(3995), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 14, - sym__newline, - sym__dedent, + ACTIONS(4290), 12, sym_string_start, - anon_sym_COMMA, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264414,12 +274290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 24, + ACTIONS(4292), 24, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_elif, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264431,51 +274309,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252004] = 7, - ACTIONS(3651), 1, + [261048] = 7, + ACTIONS(4135), 1, anon_sym_is, - STATE(2729), 1, + STATE(3266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, + ACTIONS(4129), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(3649), 4, + ACTIONS(4133), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 13, + ACTIONS(2768), 13, sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2857), 19, + ACTIONS(2770), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_for, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264490,43 +274364,88 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [252062] = 10, - ACTIONS(197), 1, + [261104] = 9, + ACTIONS(1538), 1, + anon_sym_LF, + ACTIONS(4326), 1, + anon_sym_LBRACE, + ACTIONS(4328), 1, + sym_isMutableFlag, + ACTIONS(4330), 1, + anon_sym_QMARK_COLON, + STATE(4219), 1, + aux_sym_comparison_operator_repeat1, + STATE(4367), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 32, anon_sym_DOT, - ACTIONS(199), 1, - anon_sym_QMARK_DOT, - ACTIONS(4135), 1, + anon_sym_as, anon_sym_if, - ACTIONS(4137), 1, - anon_sym_PLUS, - ACTIONS(4147), 1, + 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, - ACTIONS(4149), 1, 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, + [261164] = 6, + STATE(3431), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4061), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 12, - sym__newline, + ACTIONS(4290), 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(2355), 21, + ACTIONS(4292), 24, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_elif, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264544,86 +274463,141 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [252126] = 5, - ACTIONS(4135), 1, - anon_sym_if, - ACTIONS(3), 2, + [261218] = 9, + ACTIONS(1538), 1, + anon_sym_LF, + ACTIONS(4326), 1, + anon_sym_LBRACE, + ACTIONS(4328), 1, + sym_isMutableFlag, + ACTIONS(4330), 1, + anon_sym_QMARK_COLON, + STATE(4367), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 14, - sym__newline, - sym__dedent, - sym_string_start, + ACTIONS(1536), 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(2441), 24, - anon_sym_import, + 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, + [261278] = 9, + ACTIONS(1538), 1, + anon_sym_LF, + ACTIONS(4326), 1, + anon_sym_LBRACE, + ACTIONS(4328), 1, + sym_isMutableFlag, + ACTIONS(4330), 1, + anon_sym_QMARK_COLON, + STATE(4367), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4789), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 32, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [252180] = 6, - ACTIONS(816), 1, - anon_sym_if, - ACTIONS(4151), 1, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261338] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3455), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(3996), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, + ACTIONS(4332), 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(2445), 25, + ACTIONS(4334), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264635,51 +274609,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252236] = 10, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(816), 1, - anon_sym_if, - ACTIONS(4151), 1, - anon_sym_PLUS, - ACTIONS(4153), 1, - anon_sym_and, - ACTIONS(4155), 1, - anon_sym_or, + [261396] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3414), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4061), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, + ACTIONS(4306), 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(2355), 22, + ACTIONS(4308), 22, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264697,37 +274665,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [252300] = 6, - ACTIONS(816), 1, - anon_sym_if, - ACTIONS(4151), 1, - anon_sym_PLUS, + [261454] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4060), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, + ACTIONS(4318), 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(2449), 25, + ACTIONS(4320), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264739,28 +274709,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252356] = 5, - ACTIONS(4129), 1, - anon_sym_if, + [261512] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3529), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4059), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 14, - sym__newline, + ACTIONS(4302), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264771,11 +274742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 24, + ACTIONS(4304), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -264788,28 +274759,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252410] = 5, - ACTIONS(4129), 1, + [261570] = 9, + ACTIONS(4187), 1, + anon_sym_LBRACE, + ACTIONS(4189), 1, + sym_isMutableFlag, + ACTIONS(4191), 1, + anon_sym_QMARK_COLON, + STATE(3558), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4776), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 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, + [261630] = 6, + STATE(3453), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4063), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 14, - sym__newline, + ACTIONS(4290), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264820,12 +274839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 24, + ACTIONS(4292), 24, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, + anon_sym_elif, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264837,28 +274858,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252464] = 5, - ACTIONS(4135), 1, - anon_sym_if, + [261684] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3448), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(3995), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 14, - sym__newline, - sym__dedent, + ACTIONS(4324), 12, sym_string_start, - anon_sym_COMMA, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264869,11 +274891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(191), 24, + ACTIONS(4322), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, anon_sym_lambda, anon_sym_all, @@ -264886,27 +274908,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252518] = 5, - ACTIONS(816), 1, - anon_sym_if, + [261742] = 8, + ACTIONS(4270), 1, + anon_sym_elif, + ACTIONS(4272), 1, + anon_sym_else, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + STATE(3994), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 13, + ACTIONS(4300), 12, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -264917,13 +274941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 25, + ACTIONS(4298), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264935,45 +274958,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252572] = 6, - ACTIONS(816), 1, - anon_sym_if, - ACTIONS(4151), 1, - anon_sym_PLUS, + [261800] = 8, + ACTIONS(4260), 1, + anon_sym_elif, + ACTIONS(4262), 1, + anon_sym_else, + STATE(3471), 1, + aux_sym_if_statement_repeat1, + STATE(3766), 1, + sym_elif_clause, + STATE(4050), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, + ACTIONS(4332), 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(2457), 25, + ACTIONS(4334), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_rule, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -264985,251 +275008,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [252628] = 5, - ACTIONS(816), 1, - anon_sym_if, + [261858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(3213), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3211), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261905] = 15, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4348), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 25, - anon_sym_import, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1942), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 20, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [252682] = 6, - ACTIONS(3746), 1, + anon_sym_PLUS_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, - STATE(2810), 1, + [261976] = 23, + ACTIONS(2396), 1, + anon_sym_EQ, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, + anon_sym_QMARK_DOT, + ACTIONS(4346), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, + anon_sym_DASH, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + ACTIONS(4364), 1, + anon_sym_is, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3726), 7, - anon_sym_in, + ACTIONS(2312), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(2857), 29, + ACTIONS(2356), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2394), 5, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + [262063] = 23, + ACTIONS(2384), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, + anon_sym_DASH, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4356), 1, anon_sym_not, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + ACTIONS(4364), 1, + anon_sym_is, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2382), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + ACTIONS(2458), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_and, anon_sym_or, + [262150] = 5, + ACTIONS(4366), 1, + anon_sym_LBRACE, + STATE(3691), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [252737] = 10, - ACTIONS(213), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 30, anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + anon_sym_as, anon_sym_if, - ACTIONS(4159), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + 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, - ACTIONS(4161), 1, anon_sym_or, - ACTIONS(4163), 1, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + 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, + [262201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(2811), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2809), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 21, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [252800] = 5, - ACTIONS(4157), 1, - anon_sym_if, + 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, + [262248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 13, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(2815), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2813), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262295] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2819), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2817), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [252853] = 9, - ACTIONS(4165), 1, - anon_sym_LBRACE, - ACTIONS(4167), 1, - sym_isMutableFlag, - ACTIONS(4169), 1, - anon_sym_QMARK_COLON, - STATE(3813), 1, - aux_sym_comparison_operator_repeat1, - STATE(4022), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + 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, + [262342] = 7, + ACTIONS(4368), 1, + anon_sym_if, + ACTIONS(4370), 1, + anon_sym_and, + ACTIONS(4372), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 30, + ACTIONS(2244), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -265244,92 +275468,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [252914] = 5, - ACTIONS(4157), 1, + [262397] = 9, + ACTIONS(2242), 1, + anon_sym_EQ, + ACTIONS(4368), 1, anon_sym_if, + ACTIONS(4370), 1, + anon_sym_and, + ACTIONS(4372), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(2276), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2244), 9, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + anon_sym_PLUS_EQ, + ACTIONS(2278), 19, 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(191), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [252967] = 9, - ACTIONS(4171), 1, - anon_sym_LBRACE, - ACTIONS(4173), 1, - sym_isMutableFlag, - ACTIONS(4175), 1, - anon_sym_QMARK_COLON, - STATE(3526), 1, - sym_dict_expr, - STATE(3784), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + anon_sym_DASH, + anon_sym_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, + [262456] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, + ACTIONS(4374), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3488), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, - anon_sym_DOT, + ACTIONS(2441), 28, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -265344,488 +275564,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [253028] = 12, - ACTIONS(213), 1, - anon_sym_DOT, - ACTIONS(215), 1, - anon_sym_QMARK_DOT, - ACTIONS(4157), 1, + [262507] = 7, + ACTIONS(4368), 1, anon_sym_if, - ACTIONS(4159), 1, + ACTIONS(4370), 1, anon_sym_and, - ACTIONS(4161), 1, - anon_sym_or, - ACTIONS(4163), 1, + ACTIONS(4372), 1, anon_sym_PLUS, - ACTIONS(4181), 1, - anon_sym_as, - ACTIONS(4183), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(4177), 10, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4179), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253095] = 6, - ACTIONS(3746), 1, - anon_sym_is, - STATE(2810), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2859), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3726), 7, - anon_sym_in, + ACTIONS(2540), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2857), 29, + ACTIONS(2542), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + 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_PLUS_EQ, anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253150] = 6, - ACTIONS(3746), 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(2810), 1, + anon_sym_QMARK_LBRACK, + [262562] = 10, + ACTIONS(2598), 1, + sym_string_start, + ACTIONS(4173), 1, + anon_sym_LBRACE, + ACTIONS(4175), 1, + sym_isMutableFlag, + ACTIONS(4177), 1, + anon_sym_QMARK_COLON, + STATE(3694), 1, + sym_dict_expr, + STATE(4779), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + STATE(4897), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3726), 7, - anon_sym_in, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2857), 29, + ACTIONS(1538), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253205] = 6, - ACTIONS(3746), 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(2810), 1, + anon_sym_QMARK_LBRACK, + [262623] = 18, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, + anon_sym_QMARK_DOT, + ACTIONS(4346), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, + anon_sym_DASH, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2859), 2, - sym_string_start, - anon_sym_LF, - ACTIONS(3726), 7, - anon_sym_in, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2386), 3, + anon_sym_EQ, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2857), 29, + ACTIONS(2458), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_for, anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_QMARK_DOT, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [262700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3251), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253260] = 12, - ACTIONS(209), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3249), 31, anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - ACTIONS(4185), 1, anon_sym_as, - ACTIONS(4187), 1, anon_sym_if, - ACTIONS(4189), 1, anon_sym_COMMA, - ACTIONS(4191), 1, - anon_sym_and, - ACTIONS(4193), 1, - anon_sym_or, - ACTIONS(4195), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(4177), 10, - sym__dedent, - sym_string_start, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4179), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253327] = 6, - ACTIONS(4157), 1, - anon_sym_if, - ACTIONS(4163), 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, + [262747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(3247), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3245), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2445), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253382] = 5, - ACTIONS(4157), 1, - anon_sym_if, + 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, + [262794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 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, + ACTIONS(3243), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2453), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253435] = 5, - ACTIONS(4157), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, - sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(2465), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253488] = 6, - ACTIONS(4187), 1, - anon_sym_if, - ACTIONS(4195), 1, - anon_sym_PLUS, + 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, + [262841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, - sym__dedent, - sym_string_start, + ACTIONS(3239), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3237), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253543] = 9, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - sym_isMutableFlag, - ACTIONS(4123), 1, - anon_sym_QMARK_COLON, - STATE(3703), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4679), 1, - aux_sym_comparison_operator_repeat1, + 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, + [262888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, + ACTIONS(3235), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(3233), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -265833,7 +275928,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, @@ -265847,419 +275942,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [253604] = 5, - ACTIONS(4157), 1, - anon_sym_if, + [262935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 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, + ACTIONS(3231), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3229), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253657] = 5, - ACTIONS(4157), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(2461), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253710] = 5, - ACTIONS(4187), 1, - anon_sym_if, + 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, + [262982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 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, + ACTIONS(3227), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2453), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3225), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253763] = 6, - ACTIONS(4187), 1, anon_sym_if, - ACTIONS(4195), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, - sym__dedent, - sym_string_start, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2457), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253818] = 5, - ACTIONS(4187), 1, - anon_sym_if, + 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, + [263029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 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, + ACTIONS(3221), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3219), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253871] = 5, - ACTIONS(4187), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, - sym__dedent, - sym_string_start, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(191), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253924] = 10, - ACTIONS(209), 1, - anon_sym_DOT, - ACTIONS(211), 1, - anon_sym_QMARK_DOT, - ACTIONS(4187), 1, - anon_sym_if, - ACTIONS(4191), 1, - anon_sym_and, - ACTIONS(4193), 1, - anon_sym_or, - ACTIONS(4195), 1, - anon_sym_PLUS, + 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, + [263076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, + ACTIONS(3217), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 21, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3215), 31, + anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [253987] = 6, - ACTIONS(4157), 1, anon_sym_if, - ACTIONS(4163), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, - sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254042] = 9, - ACTIONS(4165), 1, - anon_sym_LBRACE, - ACTIONS(4167), 1, - sym_isMutableFlag, - ACTIONS(4169), 1, - anon_sym_QMARK_COLON, - STATE(4022), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4688), 1, - aux_sym_comparison_operator_repeat1, + 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, + [263123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(3217), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 30, + ACTIONS(3215), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -266268,15 +276139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, 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_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, @@ -266290,28 +276162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [254103] = 9, - ACTIONS(4165), 1, - anon_sym_LBRACE, - ACTIONS(4167), 1, - sym_isMutableFlag, - ACTIONS(4169), 1, - anon_sym_QMARK_COLON, - STATE(4022), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [263170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(3209), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 30, + ACTIONS(3207), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -266320,15 +276183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, 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_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, @@ -266342,36 +276206,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [254164] = 9, - ACTIONS(4171), 1, - anon_sym_LBRACE, - ACTIONS(4173), 1, - sym_isMutableFlag, - ACTIONS(4175), 1, - anon_sym_QMARK_COLON, - STATE(3526), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [263217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, + ACTIONS(3205), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(3203), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + 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, @@ -266380,7 +276237,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, @@ -266394,143 +276250,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [254225] = 6, - ACTIONS(4187), 1, - anon_sym_if, - ACTIONS(4195), 1, - anon_sym_PLUS, + [263264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 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, + ACTIONS(3205), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2445), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3203), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254280] = 5, - ACTIONS(4187), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym__dedent, - sym_string_start, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(2461), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254333] = 10, - ACTIONS(4165), 1, - anon_sym_LBRACE, - ACTIONS(4167), 1, - sym_isMutableFlag, - ACTIONS(4169), 1, - anon_sym_QMARK_COLON, - ACTIONS(4197), 1, - anon_sym_COLON, - STATE(4022), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4688), 1, - aux_sym_comparison_operator_repeat1, + 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, + [263311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(3201), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 29, + ACTIONS(3199), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_for, 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_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, @@ -266544,84 +276338,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [254396] = 5, - ACTIONS(4187), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 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(2461), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254449] = 9, - ACTIONS(4171), 1, - anon_sym_LBRACE, - ACTIONS(4173), 1, - sym_isMutableFlag, - ACTIONS(4175), 1, - anon_sym_QMARK_COLON, - STATE(3526), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4683), 1, - aux_sym_comparison_operator_repeat1, + [263358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, + ACTIONS(3197), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(3195), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + 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, @@ -266630,7 +276369,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, @@ -266644,45 +276382,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [254510] = 10, - ACTIONS(4165), 1, - anon_sym_LBRACE, - ACTIONS(4167), 1, - sym_isMutableFlag, - ACTIONS(4169), 1, - anon_sym_QMARK_COLON, - ACTIONS(4199), 1, - anon_sym_COLON, - STATE(4022), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4688), 1, + [263405] = 10, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, + anon_sym_QMARK_DOT, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(1942), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 29, + ACTIONS(1940), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -266696,387 +276433,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [254573] = 6, - ACTIONS(4157), 1, - anon_sym_if, - ACTIONS(4163), 1, - anon_sym_PLUS, + [263466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 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, + ACTIONS(3193), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2457), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3191), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254628] = 5, - ACTIONS(4187), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1648), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, - sym__dedent, - sym_string_start, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(2465), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_rule, - 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_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254681] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(3868), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4207), 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(4201), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254739] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3415), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4086), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4211), 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(4209), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254797] = 7, - ACTIONS(3854), 1, - anon_sym_is, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3830), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3852), 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(2859), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263513] = 10, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - 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, - [254853] = 7, - ACTIONS(3854), 1, - anon_sym_is, - STATE(2981), 1, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 3, - anon_sym_in, + ACTIONS(1942), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3852), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, + ACTIONS(1940), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [254909] = 7, - ACTIONS(3854), 1, + 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, - STATE(2981), 1, - aux_sym_comparison_operator_repeat1, + [263574] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 3, - anon_sym_in, + STATE(3488), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3852), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 12, - sym__newline, - sym_string_start, + ACTIONS(2290), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - 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, - [254965] = 9, - ACTIONS(1588), 1, - anon_sym_LF, - ACTIONS(4213), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, - sym_isMutableFlag, - ACTIONS(4217), 1, - anon_sym_QMARK_COLON, - STATE(4234), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4696), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + 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, + [263623] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 32, + ACTIONS(3189), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3187), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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, @@ -267084,769 +276611,761 @@ 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, - [255025] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3461), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3994), 1, - sym_else_clause, + [263670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4219), 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(3185), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4221), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3183), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255083] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3461), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3987), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4227), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(4229), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255141] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3388), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3984), 1, - sym_else_clause, + 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, + [263717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4231), 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(3181), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4233), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3179), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255199] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3389), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3983), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4235), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(4237), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255257] = 7, - ACTIONS(3899), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [263764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 3, - anon_sym_in, + ACTIONS(3177), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 12, - sym_string_start, + ACTIONS(3175), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - 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, - [255313] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3417), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(3923), 1, - sym_else_clause, + 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, + [263811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(3173), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4239), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3171), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255371] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3461), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3907), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4207), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(4201), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255429] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3461), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3906), 1, - sym_else_clause, + 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, + [263858] = 5, + ACTIONS(4368), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4243), 12, - sym_string_start, - ts_builtin_sym_end, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2402), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + 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(4245), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255487] = 7, - ACTIONS(3899), 1, + 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, - STATE(3041), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [263909] = 5, + ACTIONS(4368), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 3, - anon_sym_in, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 12, - sym_string_start, + ACTIONS(133), 29, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_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, + [263960] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2827), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2825), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_COMMA, + anon_sym_COLON, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255543] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3398), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(3891), 1, - sym_else_clause, + 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, + [264007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 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(3169), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4239), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3167), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255601] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(3870), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4243), 12, - sym__dedent, - sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(4245), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255659] = 7, - ACTIONS(3948), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [264054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3926), 3, - anon_sym_in, + ACTIONS(3165), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3946), 4, + ACTIONS(3163), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + 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, + 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(2859), 11, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264101] = 12, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 4, + anon_sym_EQ, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255715] = 7, - ACTIONS(3948), 1, + 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(2996), 1, + [264166] = 17, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, + anon_sym_QMARK_DOT, + ACTIONS(4346), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, + anon_sym_DASH, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3926), 3, - anon_sym_in, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1942), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3946), 4, + ACTIONS(1940), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, + 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(2859), 11, - sym_string_start, + anon_sym_is, + [264241] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3155), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3157), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + 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_PLUS, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_else, - 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_DASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255771] = 7, - ACTIONS(3948), 1, + 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, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [264288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3926), 3, - anon_sym_in, + ACTIONS(3151), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3946), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 11, - sym_string_start, + ACTIONS(3153), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + 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, + 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, + [264335] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 19, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_COMMA, + anon_sym_COLON, + 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_DASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255827] = 7, - ACTIONS(3948), 1, + 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, - STATE(2996), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [264382] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3926), 3, - anon_sym_in, + ACTIONS(3141), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3946), 4, + ACTIONS(3143), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + 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, + 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(2859), 11, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264429] = 16, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 19, + ACTIONS(4348), 1, + anon_sym_DASH, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4362), 1, + anon_sym_CARET, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1942), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [255883] = 5, + 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, + [264502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4247), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3397), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 7, + ACTIONS(3043), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -267854,17 +277373,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2545), 28, + ACTIONS(3045), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + 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, @@ -267883,23 +277405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [255935] = 8, - ACTIONS(4223), 1, + [264549] = 6, + ACTIONS(4379), 1, anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3461), 1, + STATE(3529), 1, aux_sym_if_statement_repeat1, - STATE(3645), 1, + STATE(3766), 1, sym_elif_clause, - STATE(3885), 1, - sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4250), 12, + ACTIONS(4382), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -267910,12 +277428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4252), 22, + ACTIONS(4377), 23, anon_sym_import, anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -267933,286 +277452,427 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [255993] = 7, - ACTIONS(3899), 1, - anon_sym_is, - STATE(3041), 1, + [264602] = 14, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, + anon_sym_QMARK_DOT, + ACTIONS(4346), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, + anon_sym_DASH, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 3, - anon_sym_in, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 4, + ACTIONS(1940), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 12, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + [264671] = 22, + ACTIONS(2386), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4348), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + ACTIONS(4364), 1, + anon_sym_is, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256049] = 7, - ACTIONS(3854), 1, - anon_sym_is, - STATE(2981), 1, + anon_sym_PLUS_EQ, + [264756] = 10, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, + anon_sym_LBRACK, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, + anon_sym_QMARK_DOT, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 3, - anon_sym_in, + ACTIONS(2067), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3852), 4, + ACTIONS(2069), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_in, + 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(2859), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + [264817] = 22, + ACTIONS(2310), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4348), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(3629), 1, + sym_argument_list, + STATE(4775), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256105] = 5, + anon_sym_PLUS_EQ, + [264902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_QMARK_DOT, + ACTIONS(3125), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(2365), 5, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3127), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4254), 10, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4256), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256157] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3409), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(4075), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4258), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [264949] = 23, + ACTIONS(2308), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4348), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4260), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4356), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256215] = 7, - ACTIONS(3899), 1, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + ACTIONS(4364), 1, anon_sym_is, - STATE(3041), 1, + STATE(3629), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 3, - anon_sym_in, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 4, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2306), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + ACTIONS(2330), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 18, + ACTIONS(2356), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_else, - 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, - [256271] = 9, - ACTIONS(1588), 1, - anon_sym_LF, - ACTIONS(4213), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, - sym_isMutableFlag, - ACTIONS(4217), 1, - anon_sym_QMARK_COLON, - STATE(4234), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [265036] = 9, + ACTIONS(4368), 1, + anon_sym_if, + ACTIONS(4370), 1, + anon_sym_and, + ACTIONS(4372), 1, + anon_sym_PLUS, + ACTIONS(4392), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2057), 25, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [265095] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 32, + ACTIONS(3121), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3123), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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, @@ -268220,299 +277880,137 @@ 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, - [256331] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3383), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(4097), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4262), 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(4264), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + [265142] = 5, + ACTIONS(4368), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256389] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(2365), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2254), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4254), 10, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4256), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256441] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3382), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(4100), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4211), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + 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_TILDE, - sym_float, - ACTIONS(4209), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + anon_sym_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, + [265193] = 5, + ACTIONS(4368), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256499] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3392), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4115), 1, - sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4235), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4237), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2254), 29, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256557] = 8, - ACTIONS(4223), 1, - anon_sym_elif, - ACTIONS(4225), 1, - anon_sym_else, - STATE(3461), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, - STATE(4108), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4266), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + 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_TILDE, - sym_float, - ACTIONS(4268), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + anon_sym_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, + [265244] = 6, + ACTIONS(4368), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256615] = 10, - ACTIONS(4270), 1, - anon_sym_EQ, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - sym_isMutableFlag, - ACTIONS(4276), 1, - anon_sym_QMARK_COLON, - STATE(4380), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4705), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(4372), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(2258), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -268527,36 +278025,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [256677] = 9, - ACTIONS(4171), 1, - anon_sym_LBRACE, - ACTIONS(4173), 1, - sym_isMutableFlag, - ACTIONS(4175), 1, - anon_sym_QMARK_COLON, - STATE(3526), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4683), 1, - aux_sym_comparison_operator_repeat1, + [265297] = 5, + ACTIONS(4368), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 6, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 27, + ACTIONS(2266), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -268578,560 +278071,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [256737] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3376), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4116), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4231), 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(4233), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + [265348] = 6, + ACTIONS(4368), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256795] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4117), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4227), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(4372), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4229), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256853] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3419), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4066), 1, - sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4258), 12, - sym__dedent, - sym_string_start, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2244), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + 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_TILDE, - sym_float, - ACTIONS(4260), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + anon_sym_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, + [265401] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4396), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256911] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4119), 1, - sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4219), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(197), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4221), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 29, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [256969] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3413), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4089), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4262), 12, - sym__dedent, - sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4264), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [257027] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(3926), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4250), 12, - sym__dedent, - sym_string_start, + 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, + [265452] = 22, + ACTIONS(2310), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(4342), 1, + anon_sym_STAR_STAR, + ACTIONS(4344), 1, anon_sym_QMARK_DOT, + ACTIONS(4346), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4348), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4252), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + ACTIONS(4354), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(4360), 1, + anon_sym_AMP, + ACTIONS(4362), 1, + anon_sym_CARET, + ACTIONS(4386), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [257085] = 7, - ACTIONS(4054), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(3188), 1, + STATE(3614), 1, aux_sym_comparison_operator_repeat1, + STATE(3629), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 3, - anon_sym_in, + ACTIONS(4340), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4350), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4352), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4052), 4, + ACTIONS(4384), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 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(2857), 17, + ACTIONS(2356), 10, 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_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [257141] = 8, - ACTIONS(4203), 1, - anon_sym_elif, - ACTIONS(4205), 1, - anon_sym_else, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, - STATE(4080), 1, - sym_else_clause, + anon_sym_PLUS_EQ, + [265537] = 8, + ACTIONS(4398), 1, + sym_isMutableFlag, + ACTIONS(4400), 1, + anon_sym_QMARK_COLON, + STATE(3558), 1, + sym_dict_expr, + STATE(4251), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4266), 12, - sym__dedent, - sym_string_start, + ACTIONS(1536), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 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_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(4268), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [257199] = 7, - ACTIONS(4054), 1, + 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, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [265594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 3, - anon_sym_in, + ACTIONS(3115), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4052), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym_string_start, + ACTIONS(3117), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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(2857), 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, - [257255] = 7, - ACTIONS(4054), 1, + 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, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [265641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 3, - anon_sym_in, + ACTIONS(2805), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4052), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym_string_start, + ACTIONS(2807), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_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, + [265688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3107), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 17, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3109), 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_COMMA, + anon_sym_COLON, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [257311] = 7, - ACTIONS(4054), 1, + 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, - STATE(3188), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [265735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 3, - anon_sym_in, + ACTIONS(2310), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4052), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 13, - sym_string_start, + ACTIONS(2356), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_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, + [265782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3099), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2857), 17, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3101), 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_COMMA, + anon_sym_COLON, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [257367] = 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, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [265829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3397), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2570), 7, + ACTIONS(3095), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -269139,12 +278508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 30, + ACTIONS(3097), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, @@ -269170,42 +278540,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257417] = 9, - ACTIONS(1588), 1, - anon_sym_LF, - ACTIONS(4213), 1, - anon_sym_LBRACE, - ACTIONS(4215), 1, - sym_isMutableFlag, - ACTIONS(4217), 1, - anon_sym_QMARK_COLON, - STATE(3927), 1, - aux_sym_comparison_operator_repeat1, - STATE(4234), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [265876] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 32, + ACTIONS(3091), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3093), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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, @@ -269213,39 +278578,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, - [257477] = 5, - ACTIONS(4278), 1, - anon_sym_if, + [265923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 6, + ACTIONS(3087), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 29, + ACTIONS(3089), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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, @@ -269253,7 +278614,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, @@ -269267,31 +278628,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257528] = 5, - ACTIONS(4278), 1, - anon_sym_if, + [265970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 6, + ACTIONS(3081), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 29, + ACTIONS(3083), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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, @@ -269299,7 +278658,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, @@ -269313,43 +278672,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257579] = 9, - ACTIONS(2449), 1, - anon_sym_EQ, - ACTIONS(4278), 1, - anon_sym_if, - ACTIONS(4280), 1, - anon_sym_and, - ACTIONS(4282), 1, - anon_sym_PLUS, + [266017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 4, + ACTIONS(3077), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 9, + ACTIONS(3079), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - ACTIONS(2469), 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, @@ -269363,24 +278716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257638] = 5, + [266064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4284), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3428), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 6, + ACTIONS(3073), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2545), 28, + ACTIONS(3075), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -269388,14 +278737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, 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_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -269409,31 +278760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257689] = 8, - ACTIONS(4287), 1, - sym_isMutableFlag, - ACTIONS(4289), 1, - anon_sym_QMARK_COLON, - STATE(3526), 1, - sym_dict_expr, - STATE(3959), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [266111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 5, + ACTIONS(2801), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(2803), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, @@ -269444,7 +278789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -269458,32 +278804,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257746] = 6, - ACTIONS(4278), 1, - anon_sym_if, - ACTIONS(4282), 1, - anon_sym_PLUS, + [266158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 5, + ACTIONS(3053), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2455), 29, + ACTIONS(3055), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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, @@ -269491,7 +278834,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, @@ -269505,31 +278848,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257799] = 5, - ACTIONS(4278), 1, - anon_sym_if, + [266205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 6, + ACTIONS(3289), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2451), 29, + ACTIONS(3287), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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, @@ -269537,7 +278878,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, @@ -269551,95 +278892,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257850] = 22, - ACTIONS(2365), 1, - anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4305), 1, - anon_sym_PLUS, - ACTIONS(4307), 1, - anon_sym_DASH, - ACTIONS(4311), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, - anon_sym_AMP, - ACTIONS(4315), 1, - anon_sym_CARET, - ACTIONS(4321), 1, - anon_sym_is, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - STATE(3532), 1, - sym_argument_list, - STATE(3541), 1, - aux_sym_comparison_operator_repeat1, + [266252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + ACTIONS(2793), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 10, + ACTIONS(2791), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [257935] = 6, - ACTIONS(4278), 1, - anon_sym_if, - ACTIONS(4282), 1, - anon_sym_PLUS, + 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, + [266299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 5, + ACTIONS(3043), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 29, + ACTIONS(3045), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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, @@ -269647,7 +278966,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, @@ -269661,109 +278980,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [257988] = 23, - ACTIONS(2522), 1, - anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4305), 1, - anon_sym_PLUS, - ACTIONS(4307), 1, - anon_sym_DASH, - ACTIONS(4311), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, - anon_sym_AMP, - ACTIONS(4315), 1, - anon_sym_CARET, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [266346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4297), 2, + ACTIONS(3037), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3039), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2524), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - [258075] = 10, - ACTIONS(4291), 1, anon_sym_LPAREN, - ACTIONS(4293), 1, anon_sym_LBRACK, - ACTIONS(4299), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4301), 1, anon_sym_QMARK_DOT, - ACTIONS(4323), 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(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [266393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 6, + ACTIONS(3033), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 25, + ACTIONS(3035), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -269776,27 +279067,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [258136] = 8, - ACTIONS(4287), 1, + anon_sym_QMARK_LBRACK, + [266440] = 8, + ACTIONS(4398), 1, sym_isMutableFlag, - ACTIONS(4289), 1, + ACTIONS(4400), 1, anon_sym_QMARK_COLON, - STATE(3526), 1, + STATE(3558), 1, sym_dict_expr, - STATE(4412), 1, + STATE(4447), 1, aux_sym_dotted_name_repeat1, - STATE(4692), 1, + STATE(4824), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 5, + ACTIONS(1536), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(1538), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -269825,49 +279117,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258193] = 12, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [266497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 4, + ACTIONS(197), 7, anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, + ACTIONS(201), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -269878,32 +279160,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [258258] = 6, - ACTIONS(4278), 1, - anon_sym_if, - ACTIONS(4282), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [266544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 5, + ACTIONS(2776), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 29, + ACTIONS(2778), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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, @@ -269911,7 +279191,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, @@ -269925,101 +279205,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258311] = 17, - ACTIONS(4291), 1, + [266591] = 9, + ACTIONS(4284), 1, + anon_sym_LBRACE, + ACTIONS(4286), 1, + sym_isMutableFlag, + ACTIONS(4288), 1, + anon_sym_QMARK_COLON, + STATE(4287), 1, + aux_sym_comparison_operator_repeat1, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4502), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1538), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4293), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(4299), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4301), 1, anon_sym_QMARK_DOT, - ACTIONS(4305), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - ACTIONS(4307), 1, anon_sym_DASH, - ACTIONS(4313), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(4315), 1, anon_sym_CARET, - ACTIONS(4323), 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(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [266650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + ACTIONS(197), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2518), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 18, + ACTIONS(201), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_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, - [258386] = 9, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - sym_isMutableFlag, - ACTIONS(4276), 1, - anon_sym_QMARK_COLON, - STATE(4150), 1, - aux_sym_comparison_operator_repeat1, - STATE(4380), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + anon_sym_QMARK_LBRACK, + [266697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(2772), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(2774), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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, @@ -270033,156 +279343,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258445] = 16, - ACTIONS(4291), 1, + [266744] = 6, + ACTIONS(4402), 1, + anon_sym_elif, + STATE(3570), 1, + aux_sym_if_statement_repeat1, + STATE(3722), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4382), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4293), 1, anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4305), 1, anon_sym_PLUS, - ACTIONS(4307), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4315), 1, - anon_sym_CARET, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(4377), 23, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [266797] = 5, + ACTIONS(4368), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2518), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 19, + ACTIONS(2238), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + 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, anon_sym_is, - [258518] = 15, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4305), 1, - anon_sym_PLUS, - ACTIONS(4307), 1, - anon_sym_DASH, - ACTIONS(4323), 1, anon_sym_QMARK_LBRACK, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [266848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + ACTIONS(2799), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2518), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 20, + ACTIONS(2797), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_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, - [258589] = 9, - ACTIONS(3760), 1, - anon_sym_LBRACE, - ACTIONS(3762), 1, - sym_isMutableFlag, - ACTIONS(3764), 1, - anon_sym_QMARK_COLON, - STATE(4379), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [266895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(3103), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, - sym__newline, + ACTIONS(3105), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + 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, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -270196,41 +279524,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258648] = 7, - ACTIONS(4278), 1, - anon_sym_if, - ACTIONS(4280), 1, - anon_sym_and, - ACTIONS(4282), 1, - anon_sym_PLUS, + [266942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 5, + ACTIONS(2823), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 28, + ACTIONS(2821), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -270244,51 +279568,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258703] = 14, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4305), 1, + [266989] = 8, + ACTIONS(4368), 1, + anon_sym_if, + ACTIONS(4370), 1, + anon_sym_and, + ACTIONS(4372), 1, anon_sym_PLUS, - ACTIONS(4307), 1, - anon_sym_DASH, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2278), 24, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, 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, @@ -270299,26 +279616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [258772] = 4, - STATE(4733), 1, + anon_sym_QMARK_LBRACK, + [267046] = 8, + ACTIONS(4398), 1, + sym_isMutableFlag, + ACTIONS(4400), 1, + anon_sym_QMARK_COLON, + STATE(3558), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4793), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 7, - anon_sym_EQ, + ACTIONS(1536), 5, anon_sym_STAR, - anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(1538), 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, @@ -270329,8 +279652,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, @@ -270344,35 +279666,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258821] = 8, - ACTIONS(4287), 1, + [267103] = 9, + ACTIONS(4284), 1, + anon_sym_LBRACE, + ACTIONS(4286), 1, sym_isMutableFlag, - ACTIONS(4289), 1, + ACTIONS(4288), 1, anon_sym_QMARK_COLON, - STATE(3526), 1, - sym_dict_expr, - STATE(4412), 1, + STATE(4447), 1, aux_sym_dotted_name_repeat1, - STATE(4731), 1, + STATE(4502), 1, + sym_dict_expr, + STATE(4824), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 5, + ACTIONS(1536), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(1538), 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, @@ -270380,6 +279702,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, @@ -270393,34 +279716,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258878] = 9, - ACTIONS(3760), 1, + [267162] = 9, + ACTIONS(4284), 1, anon_sym_LBRACE, - ACTIONS(3762), 1, + ACTIONS(4286), 1, sym_isMutableFlag, - ACTIONS(3764), 1, + ACTIONS(4288), 1, anon_sym_QMARK_COLON, - STATE(4165), 1, - aux_sym_comparison_operator_repeat1, - STATE(4379), 1, - sym_dict_expr, - STATE(4412), 1, + STATE(4447), 1, aux_sym_dotted_name_repeat1, + STATE(4502), 1, + sym_dict_expr, + STATE(4802), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(1536), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, - sym__newline, + ACTIONS(1538), 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, @@ -270443,35 +279766,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [258937] = 6, - ACTIONS(4331), 1, - anon_sym_elif, - STATE(3449), 1, - aux_sym_if_statement_repeat1, - STATE(3582), 1, - sym_elif_clause, + [267221] = 5, + ACTIONS(1094), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 12, - sym__dedent, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 13, + sym__newline, + sym__indent, sym_string_start, + anon_sym_COLON, 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(4329), 23, + ACTIONS(2236), 21, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, - anon_sym_if, - anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -270479,45 +279801,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [258990] = 9, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - sym_isMutableFlag, - ACTIONS(4276), 1, - anon_sym_QMARK_COLON, - STATE(4380), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [267271] = 6, + ACTIONS(4405), 1, + anon_sym_if, + ACTIONS(4407), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(2244), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -270525,7 +279841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -270540,33 +279857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259049] = 10, - ACTIONS(2477), 1, - sym_string_start, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - sym_isMutableFlag, - ACTIONS(4123), 1, - anon_sym_QMARK_COLON, - STATE(3703), 1, - sym_dict_expr, - STATE(4679), 1, - aux_sym_comparison_operator_repeat1, - STATE(4807), 1, - aux_sym_dotted_name_repeat1, + [267323] = 4, + STATE(3602), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(2156), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 27, + ACTIONS(2154), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, @@ -270576,7 +279886,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, @@ -270591,44 +279901,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259110] = 10, - ACTIONS(4291), 1, + [267371] = 6, + ACTIONS(1094), 1, + anon_sym_if, + ACTIONS(4409), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 12, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2242), 21, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + 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_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [267423] = 22, + ACTIONS(2310), 1, + anon_sym_EQ, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4293), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4299), 1, + ACTIONS(4419), 1, anon_sym_STAR_STAR, - ACTIONS(4301), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4323), 1, + ACTIONS(4423), 1, + anon_sym_not, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4431), 1, + anon_sym_PIPE, + ACTIONS(4433), 1, + anon_sym_AMP, + ACTIONS(4435), 1, + anon_sym_CARET, + ACTIONS(4441), 1, + anon_sym_is, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - STATE(3532), 1, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(3669), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 6, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4439), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4415), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [267507] = 5, + ACTIONS(4405), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 25, + ACTIONS(2266), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + 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, @@ -270642,31 +280053,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [259171] = 5, - ACTIONS(4278), 1, + anon_sym_QMARK_LBRACK, + [267557] = 6, + ACTIONS(4405), 1, anon_sym_if, + ACTIONS(4407), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2465), 6, + ACTIONS(2256), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(2258), 28, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -270674,6 +280085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -270688,30 +280100,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259222] = 4, + [267609] = 10, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(1094), 1, + anon_sym_if, + ACTIONS(4409), 1, + anon_sym_PLUS, + ACTIONS(4445), 1, + anon_sym_and, + ACTIONS(4447), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 18, + anon_sym_import, + anon_sym_as, + 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_mixin, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [267669] = 5, + ACTIONS(1086), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 15, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(129), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [267719] = 5, + ACTIONS(4405), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3428), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2570), 6, + ACTIONS(2252), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 30, + ACTIONS(2254), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -270719,6 +280225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -270733,42 +280240,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259271] = 9, - ACTIONS(4278), 1, + [267769] = 5, + ACTIONS(1086), 1, anon_sym_if, - ACTIONS(4280), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 15, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2236), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, anon_sym_and, - ACTIONS(4282), 1, - anon_sym_PLUS, - ACTIONS(4336), 1, anon_sym_or, + anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [267819] = 5, + ACTIONS(4405), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2355), 5, + ACTIONS(2400), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2357), 25, + ACTIONS(2402), 28, + anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, 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_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -270783,30 +280330,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259330] = 4, - STATE(3217), 1, - aux_sym_dotted_name_repeat1, + [267869] = 5, + ACTIONS(4405), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 7, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(2238), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -270815,6 +280361,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, @@ -270828,40 +280375,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259379] = 10, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [267919] = 4, + STATE(3602), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2574), 6, + ACTIONS(1956), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2576), 25, + ACTIONS(1954), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + 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, @@ -270879,41 +280418,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [259440] = 8, - ACTIONS(4278), 1, - anon_sym_if, - ACTIONS(4280), 1, - anon_sym_and, - ACTIONS(4282), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [267967] = 5, + ACTIONS(4449), 1, + anon_sym_LBRACE, + STATE(3555), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 5, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 24, - anon_sym_COMMA, + ACTIONS(201), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_for, 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_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -270928,42 +280464,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259497] = 9, - ACTIONS(4272), 1, + [268017] = 5, + ACTIONS(1086), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 15, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(4274), 1, - sym_isMutableFlag, - ACTIONS(4276), 1, - anon_sym_QMARK_COLON, - STATE(4380), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4705), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [268067] = 4, + STATE(3602), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(2194), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 28, + ACTIONS(2192), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -270978,31 +280553,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259556] = 5, - ACTIONS(4338), 1, - anon_sym_LBRACE, - STATE(3656), 1, - sym_dictionary, + [268115] = 5, + ACTIONS(4405), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(133), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -271010,6 +280583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -271024,35 +280598,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259607] = 6, - ACTIONS(4340), 1, - anon_sym_elif, - STATE(3461), 1, - aux_sym_if_statement_repeat1, - STATE(3645), 1, - sym_elif_clause, + [268165] = 6, + ACTIONS(1086), 1, + anon_sym_if, + ACTIONS(4451), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 12, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 15, sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2256), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + 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, + [268217] = 6, + ACTIONS(1094), 1, + anon_sym_if, + ACTIONS(4409), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4329), 23, + ACTIONS(2256), 21, anon_sym_import, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_assert, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -271060,82 +280680,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_type, - anon_sym_schema, anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [259660] = 5, - ACTIONS(4278), 1, + [268269] = 5, + ACTIONS(1086), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(191), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(189), 29, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2266), 15, + sym_string_start, anon_sym_COMMA, anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2264), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [259711] = 5, - ACTIONS(4278), 1, - anon_sym_if, + anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [268319] = 5, + STATE(3600), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 6, + ACTIONS(4453), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2439), 29, - anon_sym_DOT, + ACTIONS(2007), 28, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -271144,7 +280762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -271163,93 +280780,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259762] = 22, - ACTIONS(2365), 1, + [268369] = 23, + ACTIONS(2384), 1, anon_sym_EQ, - ACTIONS(4291), 1, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4293), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4299), 1, + ACTIONS(4419), 1, anon_sym_STAR_STAR, - ACTIONS(4301), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4305), 1, + ACTIONS(4425), 1, anon_sym_PLUS, - ACTIONS(4307), 1, + ACTIONS(4427), 1, anon_sym_DASH, - ACTIONS(4311), 1, + ACTIONS(4431), 1, anon_sym_PIPE, - ACTIONS(4313), 1, + ACTIONS(4433), 1, anon_sym_AMP, - ACTIONS(4315), 1, + ACTIONS(4435), 1, anon_sym_CARET, - ACTIONS(4321), 1, - anon_sym_is, - ACTIONS(4323), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - STATE(3532), 1, + STATE(3556), 1, sym_argument_list, - STATE(4682), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4309), 2, + ACTIONS(4429), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, + ACTIONS(4437), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(2382), 4, + anon_sym_COLON, + anon_sym_for, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 10, + ACTIONS(2458), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - [259847] = 4, - STATE(3456), 1, - aux_sym_dotted_name_repeat1, + [268455] = 4, + STATE(3637), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 7, + ACTIONS(2390), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(2392), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -271257,7 +280873,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -271271,156 +280887,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [259896] = 23, - ACTIONS(2501), 1, + [268503] = 23, + ACTIONS(2396), 1, anon_sym_EQ, - ACTIONS(4291), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - anon_sym_LBRACK, - ACTIONS(4299), 1, - anon_sym_STAR_STAR, - ACTIONS(4301), 1, - anon_sym_QMARK_DOT, - ACTIONS(4305), 1, - anon_sym_PLUS, - ACTIONS(4307), 1, - anon_sym_DASH, - ACTIONS(4311), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, - anon_sym_AMP, - ACTIONS(4315), 1, - anon_sym_CARET, - ACTIONS(4323), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4325), 1, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - STATE(3532), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4309), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2503), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - [259983] = 23, - ACTIONS(2489), 1, - anon_sym_EQ, - ACTIONS(4291), 1, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4293), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4299), 1, + ACTIONS(4419), 1, anon_sym_STAR_STAR, - ACTIONS(4301), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4305), 1, + ACTIONS(4425), 1, anon_sym_PLUS, - ACTIONS(4307), 1, + ACTIONS(4427), 1, anon_sym_DASH, - ACTIONS(4311), 1, + ACTIONS(4431), 1, anon_sym_PIPE, - ACTIONS(4313), 1, + ACTIONS(4433), 1, anon_sym_AMP, - ACTIONS(4315), 1, + ACTIONS(4435), 1, anon_sym_CARET, - ACTIONS(4323), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - STATE(3532), 1, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4297), 2, + ACTIONS(4417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4309), 2, + ACTIONS(4429), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4317), 2, + ACTIONS(4437), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2491), 5, - anon_sym_COMMA, + ACTIONS(2394), 4, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, anon_sym_PLUS_EQ, - ACTIONS(2497), 5, + anon_sym_then, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [260070] = 7, - ACTIONS(4278), 1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(4280), 1, anon_sym_and, - ACTIONS(4282), 1, - anon_sym_PLUS, + anon_sym_or, + [268589] = 4, + STATE(3602), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 5, + ACTIONS(2222), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 28, + ACTIONS(2220), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -271431,6 +280977,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_EQ, anon_sym_DASH, @@ -271447,237 +280994,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260125] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2881), 7, + [268637] = 23, + ACTIONS(2308), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2883), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(4419), 1, anon_sym_STAR_STAR, + ACTIONS(4421), 1, 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, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4431), 1, anon_sym_PIPE, + ACTIONS(4433), 1, anon_sym_AMP, + ACTIONS(4435), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [260171] = 3, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3167), 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_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(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4437), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2306), 4, + anon_sym_COLON, + anon_sym_for, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(2330), 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, - [260217] = 3, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [268723] = 5, + ACTIONS(1094), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2936), 30, + anon_sym_TILDE, + sym_float, + ACTIONS(2264), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, + 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_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [268773] = 6, + ACTIONS(1086), 1, anon_sym_if, + ACTIONS(4451), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 15, + sym_string_start, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2242), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [268825] = 22, + ACTIONS(2386), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4431), 1, anon_sym_PIPE, + ACTIONS(4433), 1, anon_sym_AMP, + ACTIONS(4435), 1, anon_sym_CARET, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2330), 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, - [260263] = 5, - ACTIONS(836), 1, + ACTIONS(2458), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [268909] = 5, + ACTIONS(1094), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 15, + ACTIONS(2254), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, 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_TILDE, sym_float, - ACTIONS(2461), 19, + ACTIONS(2252), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_for, + 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [260313] = 5, - ACTIONS(836), 1, + [268959] = 5, + ACTIONS(1094), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 15, + ACTIONS(2254), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, 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_TILDE, sym_float, - ACTIONS(2465), 19, + ACTIONS(2252), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_for, + 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [260363] = 6, - ACTIONS(836), 1, + [269009] = 5, + ACTIONS(1086), 1, anon_sym_if, - ACTIONS(4343), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 15, + ACTIONS(2254), 15, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -271693,7 +281325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2457), 18, + ACTIONS(2252), 19, anon_sym_DOT, anon_sym_as, anon_sym_for, @@ -271706,22 +281338,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [260415] = 5, - ACTIONS(836), 1, + [269059] = 5, + ACTIONS(1086), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 15, + ACTIONS(2402), 15, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -271737,7 +281370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 19, + ACTIONS(2400), 19, anon_sym_DOT, anon_sym_as, anon_sym_for, @@ -271757,28 +281390,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [260465] = 3, + [269109] = 4, + STATE(3635), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 7, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2940), 30, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -271786,7 +281420,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -271800,18 +281434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260511] = 3, + [269157] = 4, + STATE(3645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 6, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3113), 31, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -271820,7 +281456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -271843,28 +281478,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260557] = 3, + [269205] = 5, + ACTIONS(1094), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(129), 21, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + 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_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [269255] = 22, + ACTIONS(2310), 1, + anon_sym_EQ, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4423), 1, + anon_sym_not, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4431), 1, + anon_sym_PIPE, + ACTIONS(4433), 1, + anon_sym_AMP, + ACTIONS(4435), 1, + anon_sym_CARET, + ACTIONS(4441), 1, + anon_sym_is, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4774), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4439), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4415), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [269339] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 7, + ACTIONS(2067), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2069), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + 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, + [269399] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3045), 30, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -271872,7 +281665,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -271886,11 +281679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260603] = 3, + [269447] = 4, + ACTIONS(4456), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 7, + ACTIONS(2035), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -271898,16 +281693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 30, + ACTIONS(2033), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -271915,7 +281710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -271929,73 +281723,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260649] = 5, - ACTIONS(836), 1, + [269495] = 5, + ACTIONS(1094), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 15, + ACTIONS(2402), 13, + sym__newline, + sym__indent, sym_string_start, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, 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_TILDE, sym_float, - ACTIONS(2461), 19, + ACTIONS(2400), 21, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_for, + 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [260699] = 3, + [269545] = 5, + ACTIONS(4405), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 7, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3157), 30, + ACTIONS(2254), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -272004,6 +281799,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, @@ -272017,36 +281813,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260745] = 3, + [269595] = 9, + ACTIONS(4405), 1, + anon_sym_if, + ACTIONS(4407), 1, + anon_sym_PLUS, + ACTIONS(4458), 1, + anon_sym_and, + ACTIONS(4460), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 7, + ACTIONS(580), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2057), 24, + anon_sym_as, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [269653] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3171), 30, + ACTIONS(1940), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, + 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, + [269713] = 10, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(4419), 1, anon_sym_STAR_STAR, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + 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, @@ -272059,129 +281962,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [269773] = 12, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [260791] = 5, - ACTIONS(836), 1, - anon_sym_if, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 15, - sym_string_start, - anon_sym_COMMA, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 4, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + 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, + [269837] = 17, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4419), 1, anon_sym_STAR_STAR, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(191), 19, + ACTIONS(4433), 1, + anon_sym_AMP, + ACTIONS(4435), 1, + anon_sym_CARET, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1942), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 17, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_for, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [260841] = 5, - ACTIONS(836), 1, - anon_sym_if, + 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, + [269911] = 4, + STATE(3632), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 15, - sym_string_start, + ACTIONS(2600), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2598), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, - 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [260891] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4347), 1, - anon_sym_not, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [269959] = 4, + STATE(4781), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 7, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -272195,20 +282159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260941] = 4, - STATE(3525), 1, - aux_sym_dotted_name_repeat1, + [270007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 6, + ACTIONS(3073), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(3075), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -272217,6 +282179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -272239,18 +282202,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [260989] = 3, + [270053] = 16, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4435), 1, + anon_sym_CARET, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1942), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [270125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 6, + ACTIONS(3213), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3073), 31, + ACTIONS(3211), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -272282,28 +282301,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261035] = 3, + [270171] = 4, + STATE(3600), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 7, + ACTIONS(2298), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2924), 30, + ACTIONS(2300), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272311,7 +282331,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272325,20 +282345,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261081] = 4, - STATE(3486), 1, - aux_sym_dotted_name_repeat1, + [270219] = 15, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1942), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + 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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [270289] = 14, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [270357] = 4, + STATE(3645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 6, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -272369,11 +282498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261129] = 3, + [270405] = 4, + ACTIONS(4462), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 7, + ACTIONS(1975), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -272381,16 +282512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3069), 30, + ACTIONS(1973), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272398,7 +282529,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -272412,28 +282542,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261175] = 3, + [270453] = 5, + ACTIONS(4464), 1, + anon_sym_PIPE, + STATE(3637), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 7, + ACTIONS(1956), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3175), 30, + ACTIONS(1954), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272441,10 +282574,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272455,36 +282587,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261221] = 3, + [270503] = 7, + ACTIONS(4405), 1, + anon_sym_if, + ACTIONS(4407), 1, + anon_sym_PLUS, + ACTIONS(4458), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 7, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3073), 30, + ACTIONS(2244), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -272498,28 +282634,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261267] = 3, + [270557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 7, + ACTIONS(3197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3095), 30, + ACTIONS(3195), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272527,7 +282663,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272541,11 +282677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261313] = 3, + [270603] = 4, + ACTIONS(4467), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 7, + ACTIONS(2156), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -272553,16 +282691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3179), 30, + ACTIONS(2154), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272570,7 +282708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -272584,82 +282721,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261359] = 6, - ACTIONS(836), 1, + [270651] = 7, + ACTIONS(4405), 1, anon_sym_if, - ACTIONS(4343), 1, + ACTIONS(4407), 1, anon_sym_PLUS, + ACTIONS(4458), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 15, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, - 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, - [261411] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3185), 7, + ACTIONS(2540), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3183), 30, + ACTIONS(2542), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -272673,20 +282768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261457] = 4, - STATE(3530), 1, - aux_sym_union_type_repeat1, + [270705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 6, + ACTIONS(3121), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(3123), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -272695,6 +282788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -272717,28 +282811,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261505] = 3, + [270751] = 4, + STATE(3645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 7, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3109), 30, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272746,7 +282841,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272760,28 +282855,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261551] = 3, + [270799] = 4, + STATE(3645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 7, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3125), 30, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -272789,7 +282885,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272803,79 +282899,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261597] = 3, + [270847] = 8, + ACTIONS(4472), 1, + anon_sym_not, + ACTIONS(4478), 1, + anon_sym_is, + STATE(3645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 7, + ACTIONS(4475), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2841), 4, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3137), 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, + ACTIONS(4469), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [261643] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3147), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3145), 30, + ACTIONS(2839), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -272883,24 +282946,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, - [261689] = 3, + [270903] = 4, + STATE(3602), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 6, + ACTIONS(2760), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3149), 31, + ACTIONS(2758), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -272909,7 +282969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -272932,36 +282991,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261735] = 3, + [270951] = 9, + ACTIONS(3803), 1, + anon_sym_LBRACE, + ACTIONS(3805), 1, + sym_isMutableFlag, + ACTIONS(3807), 1, + anon_sym_QMARK_COLON, + STATE(4306), 1, + sym_dict_expr, + STATE(4797), 1, + aux_sym_comparison_operator_repeat1, + STATE(4835), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 7, - anon_sym_EQ, + ACTIONS(1536), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3149), 30, + ACTIONS(1538), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_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, @@ -272975,21 +283040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261781] = 4, - ACTIONS(4349), 1, - anon_sym_DASH_GT, + [271009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 7, + ACTIONS(3173), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(3171), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -272998,6 +283060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -273006,6 +283069,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, @@ -273019,36 +283083,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261829] = 3, + [271055] = 8, + ACTIONS(4405), 1, + anon_sym_if, + ACTIONS(4407), 1, + anon_sym_PLUS, + ACTIONS(4458), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 7, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3057), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2278), 23, anon_sym_COLON, + 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, anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -273062,106 +283131,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [261875] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2898), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2900), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + [271111] = 18, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(4419), 1, anon_sym_STAR_STAR, + ACTIONS(4421), 1, 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, + ACTIONS(4425), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, + anon_sym_DASH, + ACTIONS(4431), 1, anon_sym_PIPE, + ACTIONS(4433), 1, anon_sym_AMP, + ACTIONS(4435), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [261921] = 3, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 7, - anon_sym_EQ, + ACTIONS(4417), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(4429), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4437), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2386), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3161), 30, + ACTIONS(2458), 16, 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_for, 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, - [261967] = 4, - STATE(4680), 1, - aux_sym_comparison_operator_repeat1, + [271187] = 5, + ACTIONS(4481), 1, + anon_sym_EQ, + STATE(3602), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, + ACTIONS(2556), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(2554), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -273192,28 +283234,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262015] = 3, + [271237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 7, + ACTIONS(2009), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2896), 30, + ACTIONS(2007), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273221,7 +283262,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273235,11 +283276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262061] = 3, + [271282] = 4, + ACTIONS(4483), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 7, + ACTIONS(2035), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -273247,16 +283290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3141), 30, + ACTIONS(2033), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -273278,87 +283319,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262107] = 6, - ACTIONS(836), 1, - anon_sym_if, - ACTIONS(4343), 1, - anon_sym_PLUS, + [271329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 15, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3235), 6, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2445), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, - 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, - [262159] = 9, - ACTIONS(3760), 1, - anon_sym_LBRACE, - ACTIONS(3762), 1, - sym_isMutableFlag, - ACTIONS(3764), 1, - anon_sym_QMARK_COLON, - STATE(4379), 1, - sym_dict_expr, - STATE(4699), 1, - aux_sym_comparison_operator_repeat1, - STATE(4740), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 4, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 27, - sym__newline, + ACTIONS(3233), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -273373,20 +283361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262217] = 4, - STATE(3530), 1, - aux_sym_union_type_repeat1, + [271374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 6, + ACTIONS(3231), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(3229), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -273417,28 +283403,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262265] = 3, + [271419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 7, + ACTIONS(3227), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 30, + ACTIONS(3225), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273446,7 +283431,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273460,28 +283445,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262311] = 3, + [271464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 7, + ACTIONS(3221), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3063), 30, + ACTIONS(3219), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273489,7 +283473,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273503,28 +283487,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262357] = 3, + [271509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 7, + ACTIONS(3217), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 30, + ACTIONS(3215), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273532,7 +283515,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273546,28 +283529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262403] = 3, + [271554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 7, + ACTIONS(3217), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 30, + ACTIONS(3215), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273575,7 +283557,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273589,28 +283571,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262449] = 3, + [271599] = 4, + STATE(3709), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 7, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3043), 30, + ACTIONS(2768), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -273619,6 +283600,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, @@ -273632,28 +283614,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262495] = 3, + [271646] = 4, + STATE(3709), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 7, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 30, + ACTIONS(2768), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -273662,6 +283643,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, @@ -273675,28 +283657,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262541] = 3, + [271693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 7, + ACTIONS(3209), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 30, + ACTIONS(3207), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273704,7 +283685,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273718,28 +283699,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262587] = 3, + [271738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 7, + ACTIONS(3205), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2944), 30, + ACTIONS(3203), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273747,7 +283727,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273761,28 +283741,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262633] = 3, + [271783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 7, + ACTIONS(3205), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3135), 30, + ACTIONS(3203), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273790,7 +283769,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273804,20 +283783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262679] = 4, - STATE(3530), 1, - aux_sym_union_type_repeat1, + [271828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 6, + ACTIONS(3201), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(3199), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -273848,28 +283825,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262727] = 3, + [271873] = 4, + STATE(3709), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 7, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3045), 30, + ACTIONS(2768), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -273878,6 +283854,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, @@ -273891,23 +283868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262773] = 5, - STATE(3525), 1, - aux_sym_dotted_name_repeat1, + [271920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4351), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2550), 6, + ACTIONS(3193), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 28, + ACTIONS(3191), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -273918,6 +283891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -273936,28 +283910,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262823] = 3, + [271965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 7, + ACTIONS(3189), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3257), 30, + ACTIONS(3187), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -273965,7 +283938,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273979,28 +283952,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262869] = 3, + [272010] = 4, + STATE(3709), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 7, + ACTIONS(2770), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 30, + ACTIONS(2768), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -274009,6 +283981,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, @@ -274022,28 +283995,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262915] = 3, + [272057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 7, + ACTIONS(3185), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2948), 30, + ACTIONS(3183), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274051,7 +284023,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274065,28 +284037,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [262961] = 3, + [272102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 7, + ACTIONS(3181), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3275), 30, + ACTIONS(3179), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274094,7 +284065,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274108,20 +284079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263007] = 4, - STATE(3564), 1, - aux_sym_union_type_repeat1, + [272147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 6, + ACTIONS(3177), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2568), 30, + ACTIONS(3175), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274152,28 +284121,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263055] = 3, + [272192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 7, + ACTIONS(3169), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3279), 30, + ACTIONS(3167), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274181,7 +284149,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274195,18 +284163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263101] = 3, + [272237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 6, + ACTIONS(3155), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3305), 31, + ACTIONS(3157), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274215,7 +284183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -274238,28 +284205,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263147] = 3, + [272282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 7, + ACTIONS(3151), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 30, + ACTIONS(3153), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274267,7 +284233,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274281,28 +284247,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263193] = 3, + [272327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 7, + ACTIONS(3147), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3287), 30, + ACTIONS(3149), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274310,7 +284275,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274324,28 +284289,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263239] = 3, + [272372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 7, + ACTIONS(3141), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(3143), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274353,7 +284317,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274367,20 +284331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263285] = 4, - STATE(3553), 1, - aux_sym_comparison_operator_repeat1, + [272417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, + ACTIONS(3103), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 30, + ACTIONS(3105), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274411,20 +284373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263333] = 4, - STATE(3553), 1, - aux_sym_comparison_operator_repeat1, + [272462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, + ACTIONS(3043), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 30, + ACTIONS(3045), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274455,28 +284415,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263381] = 3, + [272507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 7, + ACTIONS(3125), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3187), 30, + ACTIONS(3127), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274484,7 +284443,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274498,20 +284457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263427] = 4, - STATE(3553), 1, - aux_sym_comparison_operator_repeat1, + [272552] = 4, + ACTIONS(4481), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, - anon_sym_EQ, + ACTIONS(2556), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 30, + ACTIONS(2554), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274542,28 +284500,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263475] = 3, + [272599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 7, + ACTIONS(3115), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3191), 30, + ACTIONS(3117), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274571,7 +284528,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274585,20 +284542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263521] = 4, - STATE(3553), 1, - aux_sym_comparison_operator_repeat1, + [272644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, + ACTIONS(3107), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 30, + ACTIONS(3109), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274629,28 +284584,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263569] = 3, + [272689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 7, + ACTIONS(3099), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2367), 30, + ACTIONS(3101), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274658,7 +284612,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274672,28 +284626,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263615] = 3, + [272734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 7, + ACTIONS(3095), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3291), 30, + ACTIONS(3097), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274701,7 +284654,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274715,28 +284668,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263661] = 3, + [272779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 7, + ACTIONS(3091), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3295), 30, + ACTIONS(3093), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274744,7 +284696,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274758,20 +284710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263707] = 4, - STATE(3530), 1, - aux_sym_union_type_repeat1, + [272824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 6, + ACTIONS(3087), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(3089), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274802,28 +284752,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263755] = 3, + [272869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 7, + ACTIONS(3081), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2930), 30, + ACTIONS(3083), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274831,7 +284780,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274845,28 +284794,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263801] = 3, + [272914] = 7, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 7, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2244), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [272967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2823), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(2821), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -274874,7 +284868,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274888,21 +284882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263847] = 4, - ACTIONS(4354), 1, - anon_sym_DASH_GT, + [273012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 7, + ACTIONS(3077), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(3079), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -274919,6 +284910,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, @@ -274932,28 +284924,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263895] = 3, + [273057] = 5, + ACTIONS(4491), 1, + anon_sym_EQ, + STATE(3705), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 7, - anon_sym_EQ, + ACTIONS(2556), 5, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3299), 30, + ACTIONS(2554), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -274962,6 +284954,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, @@ -274975,21 +284968,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263941] = 5, - ACTIONS(4356), 1, + [273106] = 4, + STATE(3754), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2298), 5, anon_sym_EQ, - STATE(3530), 1, - aux_sym_union_type_repeat1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2300), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + [273153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(3053), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(3055), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275020,20 +285053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [263991] = 4, - STATE(3530), 1, - aux_sym_union_type_repeat1, + [273198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 6, + ACTIONS(3043), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2914), 30, + ACTIONS(3045), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275064,28 +285095,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264039] = 3, + [273243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 7, + ACTIONS(3037), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3305), 30, + ACTIONS(3039), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -275093,7 +285123,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275107,31 +285137,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264085] = 8, - ACTIONS(4361), 1, - anon_sym_not, - ACTIONS(4367), 1, - anon_sym_is, - STATE(3553), 1, - aux_sym_comparison_operator_repeat1, + [273288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4364), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2861), 4, + ACTIONS(3033), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4358), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3035), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + 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(2863), 23, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273333] = 4, + STATE(3693), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2600), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2598), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275140,12 +285200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, + 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -275154,21 +285216,66 @@ 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, - [264141] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + [273380] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4290), 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(4292), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [273425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + ACTIONS(2793), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(2791), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275199,36 +285306,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264189] = 3, + [273470] = 5, + ACTIONS(4493), 1, + anon_sym_in, + ACTIONS(4495), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 7, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3113), 30, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -275242,18 +285350,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264235] = 3, + [273519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 6, + ACTIONS(3289), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3167), 31, + ACTIONS(3287), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275262,7 +285370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -275285,28 +285392,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264281] = 3, + [273564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 7, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 30, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -275314,7 +285420,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275328,20 +285434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264327] = 4, - STATE(3539), 1, - aux_sym_comparison_operator_repeat1, + [273609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + ACTIONS(2310), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(2356), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275372,30 +285476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264375] = 4, - ACTIONS(4370), 1, - anon_sym_DASH_GT, + [273654] = 4, + STATE(3712), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 7, + ACTIONS(2390), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(2392), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -275403,6 +285504,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275416,28 +285519,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264423] = 3, + [273701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 7, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3201), 30, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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, @@ -275445,7 +285547,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275459,36 +285561,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264469] = 3, + [273746] = 8, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 7, - anon_sym_EQ, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2278), 23, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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_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, @@ -275502,28 +285608,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264515] = 3, + [273801] = 4, + STATE(3705), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 7, + ACTIONS(1956), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3153), 30, + ACTIONS(1954), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -275532,6 +285637,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, @@ -275545,36 +285651,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264561] = 3, + [273848] = 8, + ACTIONS(4500), 1, + anon_sym_not, + ACTIONS(4506), 1, + anon_sym_is, + STATE(3709), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 7, + ACTIONS(4503), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2841), 4, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3233), 30, + ACTIONS(4497), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -275582,37 +285697,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, - [264607] = 5, - ACTIONS(4372), 1, - anon_sym_PIPE, - STATE(3564), 1, + [273903] = 4, + STATE(3705), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 6, + ACTIONS(2156), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2154), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -275620,9 +285726,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275633,28 +285741,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264657] = 3, + [273950] = 4, + STATE(3705), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 7, + ACTIONS(2222), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3237), 30, + ACTIONS(2220), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -275663,6 +285770,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, @@ -275676,28 +285784,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264703] = 3, + [273997] = 5, + ACTIONS(4509), 1, + anon_sym_PIPE, + STATE(3712), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 7, + ACTIONS(1956), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2952), 30, + ACTIONS(1954), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + 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, @@ -275706,9 +285815,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -275719,34 +285828,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264749] = 3, + [274046] = 5, + ACTIONS(4485), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 6, - anon_sym_EQ, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 30, + ACTIONS(2402), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -275761,71 +285872,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264794] = 5, - ACTIONS(844), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(191), 20, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [264843] = 3, + [274095] = 4, + STATE(3705), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 6, + ACTIONS(2760), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3063), 30, + ACTIONS(2758), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -275833,6 +285900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -275847,21 +285915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264888] = 5, - ACTIONS(4375), 1, + [274142] = 5, + ACTIONS(4485), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, + ACTIONS(129), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 29, + ACTIONS(133), 29, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -275891,18 +285959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264937] = 3, + [274191] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4396), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 6, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3175), 30, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -275912,10 +285984,8 @@ 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_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -275933,34 +286003,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [264982] = 3, + [274240] = 5, + ACTIONS(4485), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 6, - anon_sym_EQ, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3157), 30, + ACTIONS(2238), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -275975,33 +286047,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265027] = 9, - ACTIONS(4171), 1, - anon_sym_LBRACE, - ACTIONS(4175), 1, - anon_sym_QMARK_COLON, - ACTIONS(4377), 1, - sym_isMutableFlag, - STATE(3526), 1, - sym_dict_expr, - STATE(4410), 1, - aux_sym_comparison_operator_repeat1, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [274289] = 5, + ACTIONS(4485), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 26, + ACTIONS(2254), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -276023,21 +286091,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265084] = 5, - ACTIONS(4375), 1, + [274338] = 5, + ACTIONS(4485), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2453), 4, + ACTIONS(2252), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2451), 29, + ACTIONS(2254), 29, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -276067,34 +286135,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265133] = 3, + [274387] = 17, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4526), 1, + anon_sym_PIPE, + ACTIONS(4528), 1, + anon_sym_AMP, + ACTIONS(4530), 1, + anon_sym_CARET, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 6, - anon_sym_EQ, + ACTIONS(2386), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4516), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [274460] = 6, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4489), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3153), 30, + ACTIONS(2258), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, @@ -276109,34 +286236,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265178] = 3, + [274511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(4536), 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(4538), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [274556] = 7, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 30, + ACTIONS(2542), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, @@ -276151,34 +286324,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265223] = 3, + [274609] = 5, + ACTIONS(4485), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 6, - anon_sym_EQ, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 30, + ACTIONS(2266), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -276193,13 +286368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265268] = 3, + [274658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4381), 12, - sym__dedent, + ACTIONS(4540), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -276210,7 +286385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4379), 24, + ACTIONS(4542), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -276235,34 +286410,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [265313] = 3, + [274703] = 6, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4489), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 6, - anon_sym_EQ, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3043), 30, + ACTIONS(2244), 28, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, @@ -276277,23 +286455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265358] = 5, - ACTIONS(4375), 1, - anon_sym_if, + [274754] = 4, + STATE(3737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, + ACTIONS(2194), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 29, + ACTIONS(2192), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -276321,23 +286498,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265407] = 5, - ACTIONS(4375), 1, - anon_sym_if, + [274801] = 4, + STATE(3737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 4, + ACTIONS(2222), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(2220), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -276365,69 +286541,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265456] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4385), 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(4383), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [265501] = 3, + [274848] = 4, + STATE(3705), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 6, + ACTIONS(2194), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 30, + ACTIONS(2192), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -276435,6 +286569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -276449,18 +286584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265546] = 3, + [274895] = 4, + ACTIONS(4544), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 6, + ACTIONS(2156), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 30, + ACTIONS(2154), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -276469,15 +286606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, @@ -276491,69 +286627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265591] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4387), 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(4389), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [265636] = 7, - ACTIONS(4375), 1, - anon_sym_if, - ACTIONS(4391), 1, - anon_sym_and, - ACTIONS(4393), 1, - anon_sym_PLUS, + [274942] = 4, + STATE(3737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 4, + ACTIONS(2156), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 27, + ACTIONS(2154), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -276564,7 +286653,9 @@ 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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -276579,70 +286670,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265689] = 6, - ACTIONS(4375), 1, - anon_sym_if, - ACTIONS(4393), 1, - anon_sym_PLUS, + [274989] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4526), 1, + anon_sym_PIPE, + ACTIONS(4528), 1, + anon_sym_AMP, + ACTIONS(4530), 1, + anon_sym_CARET, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 28, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2382), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(2330), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + [275070] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4526), 1, anon_sym_PIPE, + ACTIONS(4528), 1, anon_sym_AMP, + ACTIONS(4530), 1, anon_sym_CARET, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2394), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + ACTIONS(2330), 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, - [265740] = 6, - ACTIONS(4375), 1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(4393), 1, - anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + [275151] = 4, + STATE(3737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 4, + ACTIONS(1956), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 28, + ACTIONS(1954), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -276655,6 +286818,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, @@ -276669,18 +286833,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265791] = 3, + [275198] = 4, + ACTIONS(4546), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 6, + ACTIONS(1975), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3057), 30, + ACTIONS(1973), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -276689,15 +286855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, @@ -276711,13 +286876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265836] = 3, + [275245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4387), 12, - sym__dedent, + ACTIONS(4548), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -276728,7 +286893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4389), 24, + ACTIONS(4550), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -276753,18 +286918,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [265881] = 3, + [275290] = 4, + STATE(3769), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 6, + ACTIONS(2390), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2948), 30, + ACTIONS(2392), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -276773,14 +286939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -276795,22 +286961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265926] = 5, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4397), 1, - anon_sym_not, + [275337] = 4, + ACTIONS(4552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + ACTIONS(2035), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2033), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -276819,13 +286983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, + 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, @@ -276839,27 +287004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [265975] = 6, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, + [275384] = 4, + STATE(4778), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 5, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 27, + ACTIONS(201), 29, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -276884,40 +287047,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266026] = 6, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, + [275431] = 13, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 27, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 21, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_for, + anon_sym_RBRACK, 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, @@ -276928,124 +287099,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [275496] = 14, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - [266077] = 3, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2944), 30, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, + [275563] = 15, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4530), 1, + anon_sym_CARET, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - [266122] = 3, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2940), 30, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, + [275632] = 16, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4528), 1, + anon_sym_AMP, + ACTIONS(4530), 1, + anon_sym_CARET, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - [266167] = 5, - ACTIONS(4399), 1, - anon_sym_if, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2451), 27, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 17, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + 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, + [275703] = 12, + ACTIONS(4512), 1, anon_sym_LPAREN, + ACTIONS(4514), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(4518), 1, anon_sym_STAR_STAR, + ACTIONS(4520), 1, anon_sym_QMARK_DOT, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_in, 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, @@ -277056,19 +287312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [266216] = 3, + [275766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 6, + ACTIONS(2772), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2936), 30, + ACTIONS(2774), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -277099,36 +287354,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266261] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4347), 1, - anon_sym_not, + [275811] = 10, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, + ACTIONS(1942), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(1940), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_in, + 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, @@ -277142,43 +287403,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [266310] = 10, - ACTIONS(4403), 1, + [275870] = 10, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4514), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + ACTIONS(4518), 1, anon_sym_STAR_STAR, - ACTIONS(4409), 1, + ACTIONS(4520), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - STATE(3552), 1, + STATE(3833), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2574), 6, - anon_sym_EQ, + ACTIONS(1942), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2576), 23, + ACTIONS(1940), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, anon_sym_in, 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, @@ -277192,67 +287452,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [266369] = 10, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(836), 1, - anon_sym_if, - ACTIONS(4343), 1, - anon_sym_PLUS, - ACTIONS(4413), 1, - anon_sym_and, - ACTIONS(4415), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 13, - sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 15, - anon_sym_as, - anon_sym_for, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + [275929] = 5, + ACTIONS(4493), 1, + anon_sym_in, + ACTIONS(4554), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [266428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 6, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3135), 30, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -277262,10 +287477,8 @@ 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_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -277283,37 +287496,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266473] = 6, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, + [275978] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(4556), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3749), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2457), 5, - anon_sym_EQ, + ACTIONS(2436), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2455), 27, - anon_sym_DOT, + ACTIONS(2441), 28, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -277328,34 +287540,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266524] = 3, + [276027] = 8, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 6, - anon_sym_EQ, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3161), 30, + ACTIONS(2244), 8, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2278), 19, 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, @@ -277370,18 +287587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266569] = 3, + [276082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 6, + ACTIONS(2776), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 30, + ACTIONS(2778), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -277412,19 +287629,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266614] = 3, + [276127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4559), 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(4561), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [276172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4563), 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(4565), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [276217] = 5, + STATE(3754), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 6, + ACTIONS(4567), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3045), 30, - anon_sym_DOT, + ACTIONS(2007), 28, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -277432,14 +287736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -277454,129 +287757,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266659] = 3, + [276266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3045), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [266704] = 22, - ACTIONS(2365), 1, - anon_sym_EQ, - ACTIONS(4403), 1, + ACTIONS(4290), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4421), 1, - anon_sym_not, - ACTIONS(4423), 1, anon_sym_PLUS, - ACTIONS(4425), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_AMP, - ACTIONS(4433), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_is, - STATE(3552), 1, - sym_argument_list, - STATE(3724), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4419), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4417), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 24, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [266787] = 5, - ACTIONS(4399), 1, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [276311] = 4, + STATE(3666), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 6, + ACTIONS(197), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(201), 29, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -277601,21 +287842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266836] = 5, - ACTIONS(4441), 1, - anon_sym_PIPE, - STATE(3610), 1, + [276358] = 5, + ACTIONS(4570), 1, + anon_sym_EQ, + STATE(3737), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_EQ, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2554), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -277635,53 +287875,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [266885] = 9, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, - ACTIONS(4444), 1, - anon_sym_and, - ACTIONS(4446), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2357), 23, - anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -277693,88 +287886,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [266942] = 21, - ACTIONS(4325), 1, + [276407] = 21, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - ACTIONS(4448), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4450), 1, + ACTIONS(4514), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4518), 1, anon_sym_STAR_STAR, - ACTIONS(4456), 1, + ACTIONS(4520), 1, anon_sym_QMARK_DOT, - ACTIONS(4462), 1, + ACTIONS(4526), 1, anon_sym_PIPE, - ACTIONS(4464), 1, + ACTIONS(4528), 1, anon_sym_AMP, - ACTIONS(4466), 1, + ACTIONS(4530), 1, anon_sym_CARET, - ACTIONS(4470), 1, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - STATE(3791), 1, + STATE(3833), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4452), 2, + ACTIONS(4516), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4458), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4460), 2, + ACTIONS(4524), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, + ACTIONS(4532), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2491), 4, + ACTIONS(2306), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_RBRACK, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [267023] = 5, - ACTIONS(4399), 1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [276488] = 10, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1086), 1, anon_sym_if, + ACTIONS(4451), 1, + anon_sym_PLUS, + ACTIONS(4572), 1, + anon_sym_and, + ACTIONS(4574), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 6, + ACTIONS(2057), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 15, + anon_sym_as, + anon_sym_for, + anon_sym_else, + 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, + [276547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2801), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(2803), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -277782,7 +288023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -277797,36 +288037,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267072] = 5, - ACTIONS(4375), 1, + [276592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4290), 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(4292), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [276637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 4, + ACTIONS(3165), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(189), 29, + ACTIONS(3163), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -277841,74 +288121,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267121] = 5, - ACTIONS(4375), 1, + [276682] = 10, + ACTIONS(395), 1, + anon_sym_DOT, + ACTIONS(397), 1, + anon_sym_QMARK_DOT, + ACTIONS(772), 1, anon_sym_if, + ACTIONS(776), 1, + anon_sym_and, + ACTIONS(778), 1, + anon_sym_or, + ACTIONS(4576), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2441), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2439), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2057), 11, + sym__newline, + sym__indent, + sym_string_start, anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - 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_LBRACE, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_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, - [267170] = 8, - ACTIONS(4375), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 17, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [276741] = 6, + ACTIONS(772), 1, anon_sym_if, - ACTIONS(4391), 1, - anon_sym_and, - ACTIONS(4393), 1, + ACTIONS(4576), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, + ACTIONS(2244), 12, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2242), 20, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_QMARK_DOT, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + anon_sym_and, anon_sym_or, - ACTIONS(2467), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [276792] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3749), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 23, + ACTIONS(2290), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, @@ -277917,7 +288239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, 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, @@ -277932,11 +288258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267225] = 3, + [276839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4474), 12, + ACTIONS(4536), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -277949,7 +288275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4472), 24, + ACTIONS(4538), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -277974,36 +288300,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [267270] = 5, - ACTIONS(4399), 1, - anon_sym_if, + [276884] = 10, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4514), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_QMARK_DOT, + ACTIONS(4534), 1, + anon_sym_QMARK_LBRACK, + STATE(3833), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 6, - anon_sym_EQ, + ACTIONS(2067), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 27, + ACTIONS(2069), 25, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_for, + anon_sym_RBRACK, 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, @@ -278017,122 +288349,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [267319] = 21, - ACTIONS(4325), 1, + [276943] = 20, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - ACTIONS(4448), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4450), 1, + ACTIONS(4514), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4518), 1, anon_sym_STAR_STAR, - ACTIONS(4456), 1, + ACTIONS(4520), 1, anon_sym_QMARK_DOT, - ACTIONS(4462), 1, + ACTIONS(4526), 1, anon_sym_PIPE, - ACTIONS(4464), 1, + ACTIONS(4528), 1, anon_sym_AMP, - ACTIONS(4466), 1, + ACTIONS(4530), 1, anon_sym_CARET, - ACTIONS(4470), 1, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - STATE(3791), 1, + STATE(3833), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4452), 2, + ACTIONS(4516), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4458), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4460), 2, + ACTIONS(4524), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, + ACTIONS(4532), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2503), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [267400] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3071), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3069), 30, + ACTIONS(2458), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - 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_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + [277022] = 5, + ACTIONS(4578), 1, 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, - [267445] = 4, - STATE(3669), 1, + STATE(3769), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1956), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(1954), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -278152,7 +288442,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, @@ -278163,28 +288452,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267492] = 4, - ACTIONS(4356), 1, - anon_sym_EQ, + [277071] = 4, + ACTIONS(4581), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2156), 7, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(2154), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -278192,7 +288481,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, @@ -278206,19 +288495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267539] = 4, - STATE(3669), 1, - aux_sym_union_type_repeat1, + [277118] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2827), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2825), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -278227,14 +288515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -278249,60 +288537,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267586] = 5, - ACTIONS(4399), 1, + [277163] = 5, + ACTIONS(772), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(191), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(189), 27, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2266), 13, + sym__newline, + sym__indent, + sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2264), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, 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, - [267635] = 5, - ACTIONS(844), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [277212] = 6, + ACTIONS(772), 1, anon_sym_if, + ACTIONS(4576), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 13, + ACTIONS(2258), 12, sym__newline, sym__indent, sym_string_start, @@ -278311,23 +288601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2441), 20, + ACTIONS(2256), 20, anon_sym_import, anon_sym_DOT, anon_sym_as, 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_mixin, anon_sym_not, anon_sym_and, anon_sym_or, @@ -278337,28 +288626,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [267684] = 5, - ACTIONS(4399), 1, - anon_sym_if, + [277263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 6, + ACTIONS(3243), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2439), 27, + ACTIONS(3241), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -278366,7 +288654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -278381,18 +288668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267733] = 3, + [277308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 6, + ACTIONS(3247), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3179), 30, + ACTIONS(3245), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -278423,27 +288710,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [267778] = 3, + [277353] = 4, + ACTIONS(4583), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 6, + ACTIONS(1975), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3095), 30, + ACTIONS(1973), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -278451,62 +288739,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [267823] = 13, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4460), 2, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2520), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -278517,71 +288752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [267888] = 14, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4460), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [267955] = 3, + [277400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 6, + ACTIONS(3251), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 30, + ACTIONS(3249), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -278612,92 +288795,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268000] = 15, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, - anon_sym_QMARK_DOT, - ACTIONS(4466), 1, - anon_sym_CARET, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [277445] = 5, + ACTIONS(4585), 1, + anon_sym_LBRACE, + STATE(4129), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4452), 2, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4460), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, - 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, - [268069] = 7, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, - ACTIONS(4444), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2447), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -278712,44 +288839,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268122] = 16, - ACTIONS(4448), 1, + [277494] = 20, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4450), 1, + ACTIONS(4514), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4518), 1, anon_sym_STAR_STAR, - ACTIONS(4456), 1, + ACTIONS(4520), 1, anon_sym_QMARK_DOT, - ACTIONS(4464), 1, + ACTIONS(4526), 1, + anon_sym_PIPE, + ACTIONS(4528), 1, anon_sym_AMP, - ACTIONS(4466), 1, + ACTIONS(4530), 1, anon_sym_CARET, - ACTIONS(4470), 1, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - STATE(3791), 1, + ACTIONS(4589), 1, + anon_sym_not, + ACTIONS(4593), 1, + anon_sym_is, + STATE(3833), 1, sym_argument_list, - STATE(4730), 1, + STATE(4782), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4452), 2, + ACTIONS(4516), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4458), 2, + ACTIONS(4522), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4460), 2, + ACTIONS(4524), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, + ACTIONS(4532), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 17, + ACTIONS(4591), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -278757,48 +288896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_for, anon_sym_RBRACK, - 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, - [268193] = 7, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, - ACTIONS(4444), 1, - anon_sym_and, + [277573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 5, + ACTIONS(3239), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 26, + ACTIONS(3237), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, 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_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -278813,47 +288940,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268246] = 12, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [277618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4452), 2, + ACTIONS(2805), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4460), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 23, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2807), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -278864,18 +288981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [268309] = 3, + anon_sym_QMARK_LBRACK, + [277663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 6, + ACTIONS(2819), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3275), 30, + ACTIONS(2817), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -278906,29 +289024,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268354] = 4, - ACTIONS(4476), 1, - anon_sym_DASH_GT, + [277708] = 5, + ACTIONS(772), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2400), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [277757] = 9, + ACTIONS(4187), 1, + anon_sym_LBRACE, + ACTIONS(4191), 1, + anon_sym_QMARK_COLON, + ACTIONS(4595), 1, + sym_isMutableFlag, + STATE(3558), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4824), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(1538), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -278936,6 +289102,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, @@ -278949,84 +289116,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268401] = 3, + [277814] = 5, + ACTIONS(772), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2887), 30, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 20, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [277863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4548), 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(4550), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [277908] = 5, + ACTIONS(772), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 13, + sym__newline, + sym__indent, + sym_string_start, anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(129), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, 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, - [268446] = 10, - ACTIONS(4448), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [277957] = 5, + ACTIONS(772), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(4450), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, + anon_sym_LBRACE, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [278006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(2815), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 25, + ACTIONS(2813), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279040,42 +289331,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [268505] = 10, - ACTIONS(4448), 1, + anon_sym_QMARK_LBRACK, + [278051] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4540), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(4450), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4542), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [278096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(2811), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 25, + ACTIONS(2809), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279089,39 +289415,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [268564] = 8, - ACTIONS(4399), 1, + anon_sym_QMARK_LBRACK, + [278141] = 9, + ACTIONS(2242), 1, + anon_sym_EQ, + ACTIONS(4405), 1, anon_sym_if, - ACTIONS(4401), 1, + ACTIONS(4407), 1, anon_sym_PLUS, - ACTIONS(4444), 1, + ACTIONS(4458), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 5, - anon_sym_EQ, + ACTIONS(2276), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 22, + ACTIONS(2244), 7, + anon_sym_DOT, + anon_sym_as, anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(2278), 19, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279136,18 +289464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268619] = 3, + [278198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 6, + ACTIONS(2799), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3109), 30, + ACTIONS(2797), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279178,40 +289506,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268664] = 9, - ACTIONS(4375), 1, + [278243] = 5, + ACTIONS(772), 1, anon_sym_if, - ACTIONS(4391), 1, - anon_sym_and, - ACTIONS(4393), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 13, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_PLUS, - ACTIONS(4478), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2236), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_mixin, + anon_sym_not, + anon_sym_and, anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [278292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, + ACTIONS(4559), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 4, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4561), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [278337] = 9, + ACTIONS(4187), 1, + anon_sym_LBRACE, + ACTIONS(4191), 1, + anon_sym_QMARK_COLON, + ACTIONS(4595), 1, + sym_isMutableFlag, + STATE(3558), 1, + sym_dict_expr, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + STATE(4505), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2357), 24, + ACTIONS(1538), 26, + anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + anon_sym_if, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -279226,13 +289640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268721] = 3, + [278394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4385), 12, + ACTIONS(4290), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -279243,7 +289657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4383), 24, + ACTIONS(4292), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -279268,13 +289682,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [268766] = 3, + [278439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4474), 12, + ACTIONS(4563), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -279285,7 +289699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4472), 24, + ACTIONS(4565), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -279310,34 +289724,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [268811] = 3, + [278484] = 9, + ACTIONS(4485), 1, + anon_sym_if, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_PLUS, + ACTIONS(4597), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 6, - anon_sym_EQ, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3279), 30, - anon_sym_DOT, + ACTIONS(2057), 24, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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, @@ -279352,119 +289772,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [268856] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3281), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3283), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + [278541] = 20, + ACTIONS(4512), 1, anon_sym_LPAREN, + ACTIONS(4514), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(4518), 1, anon_sym_STAR_STAR, + ACTIONS(4520), 1, 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, + ACTIONS(4526), 1, anon_sym_PIPE, + ACTIONS(4528), 1, anon_sym_AMP, + ACTIONS(4530), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(4534), 1, anon_sym_QMARK_LBRACK, - [268901] = 3, + ACTIONS(4589), 1, + anon_sym_not, + ACTIONS(4593), 1, + anon_sym_is, + STATE(3833), 1, + sym_argument_list, + STATE(3926), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 6, - anon_sym_EQ, + ACTIONS(4516), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(4522), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4524), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4532), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3287), 30, + ACTIONS(4587), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [278620] = 5, + ACTIONS(1257), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 12, + sym_string_start, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(129), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + anon_sym_PLUS, + anon_sym_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [278668] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [268946] = 3, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 6, - anon_sym_EQ, + ACTIONS(1942), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3291), 30, + ACTIONS(1940), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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, @@ -279477,19 +289922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [268991] = 3, + [278726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 6, + ACTIONS(2811), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3295), 30, + ACTIONS(2809), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279498,14 +289941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279520,35 +289963,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269036] = 3, - ACTIONS(3), 2, + [278770] = 4, + ACTIONS(2192), 1, + anon_sym_LF, + STATE(3892), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3125), 30, + ACTIONS(2194), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -279556,24 +289997,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, - [269081] = 3, + [278816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 6, + ACTIONS(2827), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2883), 30, + ACTIONS(2825), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279582,14 +290024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279604,39 +290046,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269126] = 7, - ACTIONS(4375), 1, + [278860] = 8, + ACTIONS(2244), 1, + anon_sym_LF, + ACTIONS(4601), 1, anon_sym_if, - ACTIONS(4391), 1, + ACTIONS(4603), 1, anon_sym_and, - ACTIONS(4393), 1, + ACTIONS(4605), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2447), 27, + ACTIONS(2242), 6, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -279644,24 +290084,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, - [269179] = 3, + [278914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 6, + ACTIONS(2805), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2930), 30, + ACTIONS(2807), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279670,14 +290111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279692,18 +290133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269224] = 3, + [278958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 6, + ACTIONS(2801), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3299), 30, + ACTIONS(2803), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279712,14 +290152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -279734,80 +290174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269269] = 22, - ACTIONS(2365), 1, - anon_sym_EQ, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4421), 1, - anon_sym_not, - ACTIONS(4423), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, - anon_sym_DASH, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_AMP, - ACTIONS(4433), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_is, - STATE(3552), 1, - sym_argument_list, - STATE(4686), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4419), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4417), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [269352] = 4, - STATE(3669), 1, - aux_sym_union_type_repeat1, + [279002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2776), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2778), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279838,37 +290215,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269399] = 5, + [279046] = 6, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(4609), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4480), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3659), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2540), 4, + ACTIONS(2256), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2545), 28, + ACTIONS(2258), 26, + anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_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, @@ -279882,35 +290259,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269448] = 3, + [279096] = 6, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(4609), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 6, - anon_sym_EQ, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3137), 30, + ACTIONS(2244), 26, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -279924,39 +290303,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269493] = 8, - ACTIONS(4375), 1, - anon_sym_if, - ACTIONS(4391), 1, - anon_sym_and, - ACTIONS(4393), 1, - anon_sym_PLUS, + [279146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 4, + ACTIONS(2772), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 8, + ACTIONS(2774), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2469), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -279971,18 +290344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269548] = 3, + [279190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 6, + ACTIONS(2819), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3145), 30, + ACTIONS(2817), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -279991,14 +290363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -280013,26 +290385,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269593] = 5, - ACTIONS(4483), 1, - anon_sym_LBRACE, - STATE(3549), 1, - sym_dictionary, + [279234] = 6, + ACTIONS(4611), 1, + anon_sym_if, + ACTIONS(4613), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2244), 27, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -280041,8 +290415,6 @@ 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, @@ -280057,36 +290429,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269642] = 4, - STATE(3669), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [279284] = 7, + ACTIONS(2542), 1, + anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, + ACTIONS(4603), 1, + anon_sym_and, + ACTIONS(4605), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2507), 30, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 29, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + 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, @@ -280094,41 +290466,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, - [269689] = 3, + [279336] = 4, + STATE(3907), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + ACTIONS(2194), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(2192), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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, @@ -280142,37 +290516,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269734] = 5, - STATE(3666), 1, - aux_sym_dotted_name_repeat1, + [279382] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 2, + ACTIONS(4290), 13, + sym__newline, + 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(4292), 22, + anon_sym_import, anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [279426] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(2550), 5, - anon_sym_EQ, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 28, + ACTIONS(1940), 23, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -280185,21 +290605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [269783] = 5, - ACTIONS(4488), 1, - anon_sym_EQ, - STATE(3669), 1, - aux_sym_union_type_repeat1, + [279484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(2793), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(2791), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -280230,166 +290646,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [269832] = 4, - ACTIONS(4490), 1, - anon_sym_DASH_GT, + [279528] = 21, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4619), 1, + anon_sym_not, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4629), 1, + anon_sym_AMP, + ACTIONS(4631), 1, + anon_sym_CARET, + ACTIONS(4637), 1, + anon_sym_is, + STATE(3556), 1, + sym_argument_list, + STATE(4792), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 6, - anon_sym_EQ, + ACTIONS(4617), 2, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(4615), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_or, + [279608] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4627), 1, anon_sym_PIPE, + ACTIONS(4629), 1, anon_sym_AMP, + ACTIONS(4631), 1, anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2330), 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, - [269879] = 4, - STATE(3610), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2566), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2568), 30, + ACTIONS(2458), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_or, + [279688] = 17, + ACTIONS(4639), 1, anon_sym_LPAREN, + ACTIONS(4641), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + ACTIONS(4645), 1, anon_sym_STAR_STAR, + ACTIONS(4647), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4653), 1, anon_sym_PIPE, + ACTIONS(4655), 1, anon_sym_AMP, + ACTIONS(4657), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(4661), 1, anon_sym_QMARK_LBRACK, - [269926] = 4, - ACTIONS(4492), 1, - anon_sym_DASH_GT, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2386), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2458), 15, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, - 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, + [279760] = 22, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4627), 1, anon_sym_PIPE, + ACTIONS(4629), 1, anon_sym_AMP, + ACTIONS(4631), 1, anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2306), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(2330), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [279842] = 12, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [269973] = 3, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 6, - anon_sym_EQ, + ACTIONS(4617), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 3, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2367), 30, + ACTIONS(1940), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -280400,359 +290929,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [270018] = 5, - ACTIONS(844), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [279904] = 17, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(4623), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2465), 20, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270067] = 5, - ACTIONS(844), 1, - anon_sym_if, + ACTIONS(4629), 1, + anon_sym_AMP, + ACTIONS(4631), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 20, - anon_sym_import, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 16, anon_sym_DOT, anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270116] = 5, - ACTIONS(844), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 20, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_in, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270165] = 6, - ACTIONS(844), 1, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [279976] = 5, + ACTIONS(4611), 1, anon_sym_if, - ACTIONS(4494), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, + ACTIONS(2264), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2266), 28, sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2457), 20, - anon_sym_import, anon_sym_DOT, anon_sym_as, - 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_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270216] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4498), 12, - sym__dedent, - sym_string_start, + anon_sym_COMMA, + anon_sym_for, 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(4496), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270261] = 5, - ACTIONS(844), 1, + 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, + [280024] = 5, + ACTIONS(1257), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 13, - sym__newline, - sym__indent, + ACTIONS(2402), 12, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 20, - anon_sym_import, + ACTIONS(2400), 20, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [270310] = 21, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4448), 1, + [280072] = 16, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4450), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4462), 1, - anon_sym_PIPE, - ACTIONS(4464), 1, - anon_sym_AMP, - ACTIONS(4466), 1, - anon_sym_CARET, - ACTIONS(4470), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - STATE(3791), 1, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_CARET, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4452), 2, + ACTIONS(4617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4460), 2, + ACTIONS(4625), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, + ACTIONS(4633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2524), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, - ACTIONS(2367), 5, + ACTIONS(1940), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [270391] = 3, - ACTIONS(3), 2, + anon_sym_is, + [280142] = 4, + ACTIONS(2220), 1, + anon_sym_LF, + STATE(3892), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(2222), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -280760,85 +291158,109 @@ 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, - [270436] = 3, + [280188] = 15, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2896), 30, + ACTIONS(4617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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_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, + [280256] = 14, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [270481] = 3, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3141), 30, + ACTIONS(4617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -280849,19 +291271,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [270526] = 3, + [280322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(4290), 13, + sym__newline, + 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(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [280366] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2900), 30, + ACTIONS(3075), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -280870,14 +291330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, + 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -280892,18 +291353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270571] = 3, + [280410] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 6, + ACTIONS(2823), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2924), 30, + ACTIONS(2821), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -280912,14 +291372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -280934,31 +291394,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270616] = 4, - STATE(3686), 1, + [280454] = 5, + STATE(3835), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(4663), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, - anon_sym_DOT, + ACTIONS(2007), 27, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -280977,70 +291437,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270663] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4502), 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(4500), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + [280502] = 5, + ACTIONS(4611), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270708] = 4, - STATE(3666), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_EQ, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(2254), 28, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -281062,73 +291480,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270755] = 3, - ACTIONS(3), 2, + [280550] = 15, + ACTIONS(1940), 1, + anon_sym_LF, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4678), 1, + anon_sym_AMP, + ACTIONS(4680), 1, + anon_sym_CARET, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(4676), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3191), 30, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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, 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, - [270800] = 9, - ACTIONS(4171), 1, - anon_sym_LBRACE, - ACTIONS(4175), 1, - anon_sym_QMARK_COLON, - ACTIONS(4377), 1, - sym_isMutableFlag, - STATE(3526), 1, - sym_dict_expr, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, - STATE(4731), 1, - aux_sym_comparison_operator_repeat1, + [280618] = 4, + ACTIONS(4686), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 4, + ACTIONS(2035), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1588), 26, + ACTIONS(2033), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -281138,7 +291562,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, @@ -281152,34 +291575,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270857] = 3, + [280664] = 5, + ACTIONS(4611), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 6, - anon_sym_EQ, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 30, + ACTIONS(2254), 28, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -281194,79 +291618,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270902] = 6, - ACTIONS(844), 1, + [280712] = 7, + ACTIONS(4607), 1, anon_sym_if, - ACTIONS(4494), 1, + ACTIONS(4609), 1, anon_sym_PLUS, + ACTIONS(4688), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + ACTIONS(2540), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 25, + anon_sym_DOT, + anon_sym_as, + 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 20, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - 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_not, - anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [270953] = 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, + [280764] = 4, + STATE(3883), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 6, + ACTIONS(2390), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3183), 30, + ACTIONS(2392), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -281281,34 +291705,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [270998] = 3, + [280810] = 5, + ACTIONS(4611), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 6, - anon_sym_EQ, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3187), 30, + ACTIONS(2238), 28, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -281323,13 +291748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [271043] = 3, + [280858] = 4, + ACTIONS(4694), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4498), 12, + ACTIONS(4692), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -281340,14 +291767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4496), 24, + ACTIONS(4690), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_elif, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -281365,48 +291790,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [271088] = 10, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(844), 1, - anon_sym_if, - ACTIONS(4494), 1, - anon_sym_PLUS, - ACTIONS(4504), 1, - anon_sym_and, - ACTIONS(4506), 1, - anon_sym_or, + [280904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, + ACTIONS(4540), 13, sym__newline, - sym__indent, + sym__dedent, sym_string_start, - anon_sym_COLON, 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(2355), 17, + ACTIONS(4542), 22, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, - anon_sym_else, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, sym_integer, sym_identifier, @@ -281414,37 +291831,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [271147] = 6, - ACTIONS(4375), 1, - anon_sym_if, - ACTIONS(4393), 1, - anon_sym_PLUS, + [280948] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4696), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 4, + ACTIONS(197), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2455), 28, + ACTIONS(201), 27, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - 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, @@ -281459,123 +291874,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [271198] = 23, - ACTIONS(2522), 1, - anon_sym_EQ, - ACTIONS(4325), 1, + [280996] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4698), 13, + sym__newline, + 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(4700), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [281040] = 11, + ACTIONS(1940), 1, + anon_sym_LF, + ACTIONS(4666), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4668), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + ACTIONS(4672), 1, anon_sym_STAR_STAR, - ACTIONS(4409), 1, + ACTIONS(4674), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, - anon_sym_DASH, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_AMP, - ACTIONS(4433), 1, - anon_sym_CARET, - STATE(3552), 1, + STATE(4187), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4419), 2, + ACTIONS(4670), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4427), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2524), 3, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [271283] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3173), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3171), 30, + ACTIONS(1942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - 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_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, - [271328] = 4, + [281100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3659), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2570), 4, + ACTIONS(2009), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 30, + ACTIONS(2007), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -281606,132 +292005,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [271375] = 3, - ACTIONS(3), 2, + [281144] = 4, + ACTIONS(2598), 1, + anon_sym_LF, + STATE(3850), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3201), 30, + ACTIONS(2600), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_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, - [271420] = 14, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, anon_sym_PLUS, - ACTIONS(4425), 1, anon_sym_DASH, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4419), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4427), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - 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, + 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, - [271487] = 5, - ACTIONS(4395), 1, - anon_sym_in, - ACTIONS(4508), 1, - anon_sym_not, - ACTIONS(3), 2, + anon_sym_QMARK_LBRACK, + [281190] = 4, + ACTIONS(2300), 1, + anon_sym_LF, + STATE(3922), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2298), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -281739,41 +292081,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [271536] = 3, + [281236] = 5, + ACTIONS(4607), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 6, - anon_sym_EQ, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2952), 30, + ACTIONS(2402), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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, @@ -281787,85 +292132,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [271581] = 3, + [281284] = 6, + ACTIONS(1257), 1, + anon_sym_if, + ACTIONS(4702), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3257), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 12, + sym_string_start, anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2242), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [271626] = 10, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, - anon_sym_QMARK_DOT, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - STATE(3791), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + anon_sym_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [281334] = 4, + ACTIONS(1954), 1, + anon_sym_LF, + STATE(3892), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2574), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2576), 25, + ACTIONS(1956), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, + 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, @@ -281873,132 +292210,69 @@ 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, - [271685] = 15, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, - anon_sym_DASH, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [281380] = 5, + ACTIONS(1257), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4419), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2518), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 12, + sym_string_start, anon_sym_COLON, - 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_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [271754] = 16, - ACTIONS(4403), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, - ACTIONS(4433), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4419), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2518), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 17, + anon_sym_TILDE, + sym_float, + ACTIONS(2264), 20, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_then, - 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, - [271825] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [281428] = 4, + ACTIONS(4570), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 6, - anon_sym_EQ, + ACTIONS(2556), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3233), 30, + ACTIONS(2554), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -282007,14 +292281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -282029,18 +292303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [271870] = 3, + [281474] = 4, + STATE(3737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 6, - anon_sym_EQ, + ACTIONS(2760), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3237), 30, + ACTIONS(2758), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -282049,14 +292323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -282071,40 +292345,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [271915] = 9, - ACTIONS(2449), 1, - anon_sym_EQ, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_PLUS, - ACTIONS(4444), 1, - anon_sym_and, + [281520] = 8, + ACTIONS(4707), 1, + anon_sym_not, + ACTIONS(4713), 1, + anon_sym_is, + STATE(3857), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 4, + ACTIONS(2841), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4710), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 7, + ACTIONS(4704), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 23, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(2469), 19, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_RBRACK, anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -282113,73 +292390,54 @@ 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, - [271972] = 17, - ACTIONS(4403), 1, + [281574] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4290), 13, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, anon_sym_PLUS, - ACTIONS(4425), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4431), 1, - anon_sym_AMP, - ACTIONS(4433), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4419), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2518), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 16, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_rule, + 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_check, 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, - [272045] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [281618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4502), 12, + ACTIONS(4716), 13, + sym__newline, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -282192,151 +292450,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4500), 24, + ACTIONS(4718), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_elif, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [281662] = 6, + ACTIONS(1257), 1, + anon_sym_if, + ACTIONS(4702), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2256), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [272090] = 12, - ACTIONS(4403), 1, + [281712] = 12, + ACTIONS(1940), 1, + anon_sym_LF, + ACTIONS(4666), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4668), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + ACTIONS(4672), 1, anon_sym_STAR_STAR, - ACTIONS(4409), 1, + ACTIONS(4674), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - STATE(3552), 1, + STATE(4187), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4419), 2, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4670), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4427), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 4, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 21, + ACTIONS(1942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - 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, - [272153] = 23, - ACTIONS(2501), 1, - anon_sym_EQ, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, - anon_sym_DASH, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_AMP, - ACTIONS(4433), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2493), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(4419), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2503), 3, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [272238] = 3, + anon_sym_GT, + anon_sym_is, + [281774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4381), 12, + ACTIONS(4548), 13, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -282347,14 +292585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4379), 24, + ACTIONS(4550), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_rule, - anon_sym_elif, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -282372,35 +292608,79 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [272283] = 3, + [281818] = 5, + ACTIONS(1257), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 6, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 12, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_for, + anon_sym_else, + 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_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [281866] = 5, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 5, + anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 30, + ACTIONS(133), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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, @@ -282414,192 +292694,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [272328] = 20, - ACTIONS(4448), 1, + [281914] = 13, + ACTIONS(1940), 1, + anon_sym_LF, + ACTIONS(4666), 1, anon_sym_LPAREN, - ACTIONS(4450), 1, + ACTIONS(4668), 1, anon_sym_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4672), 1, anon_sym_STAR_STAR, - ACTIONS(4456), 1, + ACTIONS(4674), 1, anon_sym_QMARK_DOT, - ACTIONS(4462), 1, - anon_sym_PIPE, - ACTIONS(4464), 1, - anon_sym_AMP, - ACTIONS(4466), 1, - anon_sym_CARET, - ACTIONS(4470), 1, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4512), 1, - anon_sym_not, - ACTIONS(4516), 1, - anon_sym_is, - STATE(3791), 1, + STATE(4187), 1, sym_argument_list, - STATE(4687), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4458), 2, + ACTIONS(4676), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4460), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, + ACTIONS(4682), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4514), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4510), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 9, + ACTIONS(4670), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - [272407] = 20, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4454), 1, - anon_sym_STAR_STAR, - ACTIONS(4456), 1, - anon_sym_QMARK_DOT, - ACTIONS(4462), 1, anon_sym_PIPE, - ACTIONS(4464), 1, anon_sym_AMP, - ACTIONS(4466), 1, anon_sym_CARET, - ACTIONS(4470), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4512), 1, - anon_sym_not, - ACTIONS(4516), 1, + 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, - STATE(3791), 1, - sym_argument_list, - STATE(3809), 1, - aux_sym_comparison_operator_repeat1, + [281978] = 5, + ACTIONS(4607), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 2, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4458), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 27, + anon_sym_DOT, + anon_sym_as, + 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_DASH, - ACTIONS(4460), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4468), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4514), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4510), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 9, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [282026] = 5, + ACTIONS(1257), 1, anon_sym_if, - anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 12, + sym_string_start, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 20, + anon_sym_DOT, + anon_sym_as, anon_sym_for, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, - [272486] = 6, - ACTIONS(844), 1, - anon_sym_if, - ACTIONS(4494), 1, anon_sym_PLUS, + anon_sym_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [282074] = 5, + ACTIONS(1257), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, - sym__newline, - sym__indent, + ACTIONS(2238), 12, sym_string_start, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2445), 20, - anon_sym_import, + ACTIONS(2236), 20, anon_sym_DOT, anon_sym_as, - anon_sym_assert, + anon_sym_for, anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [272537] = 5, - ACTIONS(4518), 1, - anon_sym_LBRACE, - STATE(4073), 1, - sym_dictionary, + [282122] = 5, + ACTIONS(4611), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(133), 28, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -282621,104 +292917,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [272586] = 23, - ACTIONS(2489), 1, - anon_sym_EQ, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, + [282170] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3121), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3123), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4409), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4423), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - ACTIONS(4425), 1, anon_sym_DASH, - ACTIONS(4429), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(4431), 1, anon_sym_AMP, - ACTIONS(4433), 1, anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 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, + [282214] = 4, + STATE(3921), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4419), 2, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4427), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4435), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2491), 3, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(2367), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [272671] = 10, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4407), 1, - anon_sym_STAR_STAR, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + anon_sym_is, anon_sym_QMARK_LBRACK, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [282260] = 5, + ACTIONS(4611), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 6, - anon_sym_EQ, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, + ACTIONS(2402), 28, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, + 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -282732,42 +293042,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [272730] = 10, - ACTIONS(4403), 1, + anon_sym_QMARK_LBRACK, + [282308] = 5, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2254), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4409), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + 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, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [282356] = 7, + ACTIONS(4611), 1, + anon_sym_if, + ACTIONS(4613), 1, + anon_sym_PLUS, + ACTIONS(4720), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 6, - anon_sym_EQ, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, + ACTIONS(2542), 26, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, + 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, @@ -282781,40 +293130,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [272789] = 10, - ACTIONS(2520), 1, + anon_sym_QMARK_LBRACK, + [282408] = 14, + ACTIONS(1940), 1, anon_sym_LF, - ACTIONS(4520), 1, + ACTIONS(4666), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4668), 1, anon_sym_LBRACK, - ACTIONS(4524), 1, + ACTIONS(4672), 1, anon_sym_STAR_STAR, - ACTIONS(4526), 1, + ACTIONS(4674), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4680), 1, + anon_sym_CARET, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - STATE(3866), 1, + STATE(4187), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 27, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1942), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + 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, + [282474] = 5, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 5, + anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2254), 27, + anon_sym_DOT, + anon_sym_as, + 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, @@ -282822,42 +293220,99 @@ 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, - [272847] = 4, - STATE(3730), 1, + anon_sym_QMARK_LBRACK, + [282522] = 19, + ACTIONS(2356), 1, + anon_sym_LF, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4678), 1, + anon_sym_AMP, + ACTIONS(4680), 1, + anon_sym_CARET, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4724), 1, + anon_sym_not, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4728), 1, + anon_sym_is, + STATE(4187), 1, + sym_argument_list, + STATE(4786), 1, aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2310), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(4722), 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, + [282598] = 5, + ACTIONS(4607), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, - anon_sym_EQ, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(2266), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -282871,70 +293326,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [272893] = 5, - ACTIONS(780), 1, - anon_sym_if, + [282646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, + ACTIONS(4540), 13, sym__newline, - sym__indent, sym_string_start, - anon_sym_COLON, + 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(2465), 19, + ACTIONS(4542), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [282690] = 10, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(1257), 1, + anon_sym_if, + ACTIONS(4702), 1, + anon_sym_PLUS, + ACTIONS(4730), 1, anon_sym_and, + ACTIONS(4732), 1, anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 16, + anon_sym_as, + anon_sym_for, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [272941] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + [282748] = 4, + ACTIONS(4734), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(1975), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(1973), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -282942,7 +293444,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, @@ -282956,27 +293457,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [272987] = 4, - STATE(4690), 1, - aux_sym_comparison_operator_repeat1, + [282794] = 4, + STATE(3841), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(1956), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(1954), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -282998,26 +293499,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273033] = 3, + [282840] = 5, + ACTIONS(4736), 1, + anon_sym_PIPE, + STATE(3883), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 5, + ACTIONS(1956), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2952), 30, + ACTIONS(1954), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -283028,7 +293532,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, @@ -283039,177 +293542,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273077] = 21, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4536), 1, + [282888] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4739), 1, anon_sym_not, - ACTIONS(4538), 1, - anon_sym_PLUS, - ACTIONS(4540), 1, - anon_sym_DASH, - ACTIONS(4544), 1, - anon_sym_PIPE, - ACTIONS(4546), 1, - anon_sym_AMP, - ACTIONS(4548), 1, - anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_is, - STATE(3552), 1, - sym_argument_list, - STATE(3969), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4532), 2, + ACTIONS(197), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4542), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_for, + 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, - ACTIONS(4550), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4552), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4530), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 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, - [273157] = 8, - ACTIONS(4559), 1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [282936] = 21, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4565), 1, + ACTIONS(4364), 1, anon_sym_is, - STATE(3730), 1, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4653), 1, + anon_sym_PIPE, + ACTIONS(4655), 1, + anon_sym_AMP, + ACTIONS(4657), 1, + anon_sym_CARET, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4562), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2861), 4, - anon_sym_EQ, + ACTIONS(4643), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4556), 5, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2382), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_for, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2863), 21, + ACTIONS(2458), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [283016] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4639), 1, anon_sym_LPAREN, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(4645), 1, anon_sym_STAR_STAR, + ACTIONS(4647), 1, 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, + ACTIONS(4653), 1, anon_sym_PIPE, + ACTIONS(4655), 1, anon_sym_AMP, + ACTIONS(4657), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4661), 1, anon_sym_QMARK_LBRACK, - [273211] = 5, - ACTIONS(4568), 1, - anon_sym_if, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2439), 27, - anon_sym_DOT, - anon_sym_as, - 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, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4659), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2394), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_for, + ACTIONS(2330), 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, - [273259] = 5, - ACTIONS(4568), 1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, anon_sym_if, + anon_sym_and, + anon_sym_or, + [283096] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 5, + ACTIONS(197), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(189), 27, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_QMARK_DOT, @@ -283217,6 +293731,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, @@ -283230,30 +293745,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273307] = 5, - ACTIONS(4570), 1, - anon_sym_PIPE, - STATE(3733), 1, - aux_sym_union_type_repeat1, + [283142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 6, + ACTIONS(2815), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 27, + ACTIONS(2813), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_QMARK_DOT, @@ -283261,8 +293772,10 @@ 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, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -283273,36 +293786,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273355] = 5, - ACTIONS(4568), 1, + [283186] = 6, + ACTIONS(4611), 1, anon_sym_if, + ACTIONS(4613), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2465), 5, + ACTIONS(2256), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 27, + ACTIONS(2258), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + 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, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -283316,28 +293830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273403] = 5, - ACTIONS(4568), 1, - anon_sym_if, + [283236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 5, + ACTIONS(3173), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(3171), 31, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -283346,6 +293857,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, @@ -283359,78 +293871,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273451] = 4, - STATE(3847), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2912), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2914), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [283280] = 19, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2458), 1, + anon_sym_LF, + ACTIONS(4666), 1, anon_sym_LPAREN, + ACTIONS(4668), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(4672), 1, anon_sym_STAR_STAR, + ACTIONS(4674), 1, 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, + ACTIONS(4678), 1, anon_sym_AMP, + ACTIONS(4680), 1, anon_sym_CARET, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4726), 1, + anon_sym_PIPE, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2312), 7, + anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [273497] = 5, - ACTIONS(4568), 1, + anon_sym_GT, + ACTIONS(2386), 7, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(3), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [283356] = 4, + ACTIONS(2392), 1, + anon_sym_LF, + STATE(3963), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(2390), 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, @@ -283438,32 +293962,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, - [273545] = 6, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, - anon_sym_PLUS, + [283402] = 4, + STATE(3907), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 5, + ACTIONS(2222), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2455), 26, + ACTIONS(2220), 28, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -283475,6 +293998,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, @@ -283488,111 +294012,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273595] = 5, - ACTIONS(4568), 1, - anon_sym_if, + [283448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 5, - anon_sym_STAR, + ACTIONS(4548), 13, + sym__newline, + 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(2451), 27, + anon_sym_TILDE, + sym_float, + ACTIONS(4550), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [283492] = 20, + ACTIONS(2306), 1, + anon_sym_LF, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(4666), 1, anon_sym_LPAREN, + ACTIONS(4668), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(4672), 1, anon_sym_STAR_STAR, + ACTIONS(4674), 1, 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, + ACTIONS(4678), 1, anon_sym_AMP, + ACTIONS(4680), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - [273643] = 4, - ACTIONS(2514), 1, - anon_sym_LF, - ACTIONS(4575), 1, - anon_sym_DASH_GT, + ACTIONS(4726), 1, + anon_sym_PIPE, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2308), 2, 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, + ACTIONS(4676), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2312), 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, - [273689] = 6, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, - anon_sym_PLUS, + [283570] = 4, + STATE(3907), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 5, + ACTIONS(2156), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 26, + ACTIONS(2154), 28, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -283604,6 +294139,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, @@ -283617,37 +294153,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273739] = 6, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, - anon_sym_PLUS, + [283616] = 4, + STATE(3841), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 5, + ACTIONS(2156), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 26, + ACTIONS(2154), 29, + sym__newline, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + 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, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -283661,33 +294195,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273789] = 3, + [283662] = 9, + ACTIONS(4611), 1, + anon_sym_if, + ACTIONS(4613), 1, + anon_sym_PLUS, + ACTIONS(4720), 1, + anon_sym_and, + ACTIONS(4741), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 5, - anon_sym_EQ, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2883), 30, - anon_sym_DOT, + ACTIONS(2057), 23, + sym__newline, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -283702,38 +294242,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273833] = 10, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [283718] = 4, + ACTIONS(4743), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2574), 5, + ACTIONS(2156), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2576), 23, + ACTIONS(2154), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_for, + 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, @@ -283750,17 +294283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [273891] = 3, + anon_sym_QMARK_LBRACK, + [283764] = 4, + STATE(4785), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 5, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2930), 30, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -283791,36 +294326,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [273935] = 3, + [283810] = 21, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4619), 1, + anon_sym_not, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4629), 1, + anon_sym_AMP, + ACTIONS(4631), 1, + anon_sym_CARET, + ACTIONS(4637), 1, + anon_sym_is, + STATE(3556), 1, + sym_argument_list, + STATE(4249), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 4, + ACTIONS(4617), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3113), 31, + ACTIONS(4615), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_or, + [283890] = 13, + ACTIONS(4639), 1, anon_sym_LPAREN, + ACTIONS(4641), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(4645), 1, anon_sym_STAR_STAR, + ACTIONS(4647), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4651), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1940), 20, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -283831,219 +294436,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [283954] = 14, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_QMARK_LBRACK, - [273979] = 4, - ACTIONS(4577), 1, - anon_sym_DASH_GT, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 7, - anon_sym_EQ, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 27, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 18, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_for, 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, + [284020] = 15, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4657), 1, + anon_sym_CARET, + ACTIONS(4661), 1, anon_sym_QMARK_LBRACK, - [274025] = 4, - ACTIONS(2568), 1, - anon_sym_LF, - STATE(3755), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 33, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 17, + sym__newline, 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_for, 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, - [274071] = 20, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2524), 1, - anon_sym_LF, - ACTIONS(4520), 1, + [284088] = 16, + ACTIONS(4639), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4524), 1, + ACTIONS(4645), 1, anon_sym_STAR_STAR, - ACTIONS(4526), 1, + ACTIONS(4647), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4583), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, + ACTIONS(4655), 1, anon_sym_AMP, - ACTIONS(4587), 1, + ACTIONS(4657), 1, anon_sym_CARET, - STATE(3866), 1, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2365), 5, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 16, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_for, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2493), 7, - anon_sym_in, - anon_sym_LT, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - [274149] = 4, - ACTIONS(2528), 1, - anon_sym_LF, - ACTIONS(4591), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + anon_sym_is, + [284158] = 12, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 33, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 22, + sym__newline, 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_for, 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, - [274195] = 5, - ACTIONS(2562), 1, - anon_sym_LF, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(3748), 1, + [284220] = 4, + STATE(3949), 1, aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 32, + ACTIONS(2390), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2392), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, 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, 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, @@ -284051,43 +294681,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, - [274243] = 4, - ACTIONS(4595), 1, - anon_sym_DASH_GT, + [284266] = 10, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 7, - anon_sym_EQ, + ACTIONS(1942), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 27, + ACTIONS(1940), 24, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_for, 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, @@ -284100,115 +294735,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [274289] = 5, - ACTIONS(780), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + [284324] = 10, + ACTIONS(4639), 1, anon_sym_LPAREN, + ACTIONS(4641), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 19, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [274337] = 6, - ACTIONS(780), 1, - anon_sym_if, - ACTIONS(4597), 1, - anon_sym_PLUS, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, + ACTIONS(1942), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 24, sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2445), 19, - anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, + anon_sym_if, + anon_sym_COMMA, + anon_sym_for, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [274387] = 5, - ACTIONS(2507), 1, - anon_sym_LF, - ACTIONS(4599), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - STATE(3755), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + 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, + [284382] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 32, + ACTIONS(3197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3195), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -284216,41 +294811,40 @@ 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, - [274435] = 3, + [284426] = 4, + STATE(3841), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 5, + ACTIONS(2222), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 30, + ACTIONS(2220), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -284272,26 +294866,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [274479] = 3, + [284472] = 4, + STATE(3907), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 5, + ACTIONS(1956), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 30, + ACTIONS(1954), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, @@ -284299,7 +294895,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, @@ -284313,33 +294908,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [274523] = 4, - ACTIONS(2534), 1, - anon_sym_LF, - STATE(3748), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [284518] = 22, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4629), 1, + anon_sym_AMP, + ACTIONS(4631), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4633), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2382), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [284600] = 5, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 33, + ACTIONS(4745), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3914), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2441), 27, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -284347,84 +295005,82 @@ 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, - [274569] = 5, - ACTIONS(780), 1, - anon_sym_if, + [284648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, + ACTIONS(4698), 13, sym__newline, - sym__indent, + sym__dedent, sym_string_start, - anon_sym_COLON, 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(191), 19, + ACTIONS(4700), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [274617] = 4, - ACTIONS(2538), 1, - anon_sym_LF, - STATE(3748), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [284692] = 4, + ACTIONS(4491), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 33, + ACTIONS(2556), 5, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2554), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_PLUS_EQ, + anon_sym_then, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -284432,101 +295088,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, - [274663] = 21, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4536), 1, - anon_sym_not, - ACTIONS(4538), 1, - anon_sym_PLUS, - ACTIONS(4540), 1, - anon_sym_DASH, - ACTIONS(4544), 1, - anon_sym_PIPE, - ACTIONS(4546), 1, - anon_sym_AMP, - ACTIONS(4548), 1, - anon_sym_CARET, - ACTIONS(4554), 1, - anon_sym_is, - STATE(3552), 1, - sym_argument_list, - STATE(4697), 1, + [284738] = 4, + STATE(3857), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4532), 2, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4552), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4530), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 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, - [274743] = 5, - ACTIONS(2555), 1, - anon_sym_LF, - STATE(3762), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4602), 2, + ACTIONS(2768), 30, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2550), 31, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_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, @@ -284534,36 +295130,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, - [274791] = 4, - STATE(3776), 1, - aux_sym_union_type_repeat1, + [284784] = 4, + STATE(3857), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 6, - anon_sym_EQ, + ACTIONS(2770), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 28, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_QMARK_DOT, @@ -284571,6 +295164,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, @@ -284584,17 +295178,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [274837] = 3, + [284830] = 19, + ACTIONS(2356), 1, + anon_sym_LF, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4678), 1, + anon_sym_AMP, + ACTIONS(4680), 1, + anon_sym_CARET, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4724), 1, + anon_sym_not, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4728), 1, + anon_sym_is, + STATE(4187), 1, + sym_argument_list, + STATE(4221), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2310), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(4722), 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, + [284906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 5, - anon_sym_EQ, + ACTIONS(3213), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2948), 30, + ACTIONS(3211), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -284604,6 +295254,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_QMARK_DOT, @@ -284625,28 +295276,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [274881] = 4, - STATE(3776), 1, - aux_sym_union_type_repeat1, + [284950] = 4, + STATE(3857), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 6, - anon_sym_EQ, + ACTIONS(2770), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 28, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_QMARK_DOT, @@ -284654,6 +295304,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, @@ -284667,35 +295318,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [274927] = 4, - ACTIONS(4605), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [284996] = 5, + ACTIONS(2007), 1, + anon_sym_LF, + STATE(3922), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2528), 27, + ACTIONS(4748), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 31, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -284703,32 +295353,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, - [274973] = 3, + [285044] = 5, + ACTIONS(4751), 1, + anon_sym_EQ, + STATE(3841), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 5, - anon_sym_EQ, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2944), 30, + ACTIONS(2554), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -284750,31 +295404,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [275017] = 4, - STATE(3776), 1, - aux_sym_union_type_repeat1, + [285092] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4653), 1, + anon_sym_PIPE, + ACTIONS(4655), 1, + anon_sym_AMP, + ACTIONS(4657), 1, + anon_sym_CARET, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 6, - anon_sym_EQ, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2306), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_for, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [285172] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2067), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 28, + ACTIONS(2069), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -284791,18 +295511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [275063] = 3, + [285230] = 4, + STATE(3857), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 5, - anon_sym_EQ, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2940), 30, + ACTIONS(2768), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -284833,20 +295553,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [275107] = 4, - STATE(3776), 1, + [285276] = 5, + ACTIONS(4753), 1, + anon_sym_EQ, + STATE(3907), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 6, - anon_sym_EQ, + ACTIONS(2556), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 28, + ACTIONS(2554), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -284875,75 +295596,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [275153] = 10, - ACTIONS(2576), 1, - anon_sym_LF, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2574), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, - [275211] = 4, - STATE(3669), 1, + [285324] = 4, + STATE(3841), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 4, + ACTIONS(2194), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2914), 30, + ACTIONS(2192), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -284965,37 +295638,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [275257] = 8, - ACTIONS(2447), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4609), 1, - anon_sym_and, + [285370] = 8, ACTIONS(4611), 1, + anon_sym_if, + ACTIONS(4613), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(4720), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 6, + ACTIONS(2244), 4, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_or, - ACTIONS(2467), 23, + ACTIONS(2276), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2278), 22, + sym__newline, + anon_sym_COMMA, + anon_sym_for, 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, @@ -285003,41 +295678,85 @@ 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, - [275311] = 4, - ACTIONS(2485), 1, - anon_sym_LF, + [285424] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4716), 13, + sym__newline, + 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(4718), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [285468] = 7, + ACTIONS(4611), 1, + anon_sym_if, ACTIONS(4613), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + anon_sym_PLUS, + ACTIONS(4720), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 33, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2244), 26, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -285045,114 +295764,183 @@ 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, - [275357] = 6, - ACTIONS(2443), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4611), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [285520] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 30, + ACTIONS(4290), 13, + sym__newline, + 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(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [285564] = 20, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, + anon_sym_is, + ACTIONS(2394), 1, + anon_sym_LF, + ACTIONS(4666), 1, anon_sym_LPAREN, + ACTIONS(4668), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(4672), 1, anon_sym_STAR_STAR, + ACTIONS(4674), 1, 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, + ACTIONS(4678), 1, anon_sym_AMP, + ACTIONS(4680), 1, anon_sym_CARET, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4726), 1, + anon_sym_PIPE, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2396), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2310), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2312), 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, + [285642] = 20, + ACTIONS(2316), 1, + anon_sym_not, + ACTIONS(2332), 1, anon_sym_is, + ACTIONS(2382), 1, + anon_sym_LF, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4678), 1, + anon_sym_AMP, + ACTIONS(4680), 1, + anon_sym_CARET, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - [275407] = 4, - STATE(3733), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + ACTIONS(4726), 1, + anon_sym_PIPE, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2384), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4676), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2568), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2386), 5, 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, + ACTIONS(2312), 7, + anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [275453] = 6, - ACTIONS(2447), 1, + anon_sym_GT, + [285720] = 6, + ACTIONS(2244), 1, anon_sym_LF, - ACTIONS(4607), 1, + ACTIONS(4601), 1, anon_sym_if, - ACTIONS(4611), 1, + ACTIONS(4605), 1, anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 30, + ACTIONS(2242), 30, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -285183,68 +295971,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [275503] = 8, - ACTIONS(4618), 1, + [285770] = 20, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4653), 1, + anon_sym_PIPE, + ACTIONS(4655), 1, + anon_sym_AMP, + ACTIONS(4657), 1, + anon_sym_CARET, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(4624), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(3778), 1, + STATE(3980), 1, + sym_argument_list, + STATE(4205), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2861), 2, + ACTIONS(4643), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4621), 2, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4615), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2863), 23, + ACTIONS(2356), 8, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [275557] = 4, - ACTIONS(2473), 1, + [285848] = 5, + ACTIONS(2266), 1, anon_sym_LF, - STATE(3762), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(4601), 1, + anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 33, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 31, 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, @@ -285271,34 +296072,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [275603] = 3, - ACTIONS(3), 2, + [285896] = 6, + ACTIONS(2258), 1, + anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, + ACTIONS(4605), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2936), 30, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 30, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + 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, @@ -285306,41 +296108,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, - [275647] = 4, - STATE(4685), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [285946] = 5, + ACTIONS(2254), 1, + anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 31, 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_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -285348,27 +296151,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, - [275693] = 5, - ACTIONS(2545), 1, + [285994] = 5, + ACTIONS(2254), 1, anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3782), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2540), 30, + ACTIONS(2252), 31, + anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -285376,6 +296180,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, @@ -285397,18 +296202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [275741] = 5, - ACTIONS(2451), 1, + [286042] = 5, + ACTIONS(2238), 1, anon_sym_LF, - ACTIONS(4607), 1, + ACTIONS(4601), 1, anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2453), 31, + ACTIONS(2236), 31, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -285440,35 +296245,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [275789] = 4, - STATE(3730), 1, - aux_sym_comparison_operator_repeat1, + [286090] = 7, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(4609), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, - anon_sym_EQ, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(2244), 25, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + 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, @@ -285482,35 +296290,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [275835] = 4, - STATE(3730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [286142] = 7, + ACTIONS(2244), 1, + anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, + ACTIONS(4603), 1, + anon_sym_and, + ACTIONS(4605), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 29, 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_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, @@ -285518,30 +296327,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, - [275881] = 4, - STATE(3730), 1, - aux_sym_comparison_operator_repeat1, + [286194] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 6, - anon_sym_EQ, + STATE(3914), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(2290), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -285550,8 +296362,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, @@ -285566,79 +296377,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [275927] = 10, - ACTIONS(2520), 1, + [286240] = 9, + ACTIONS(2057), 1, anon_sym_LF, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 27, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4601), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_not, + ACTIONS(4603), 1, anon_sym_and, - anon_sym_or, + ACTIONS(4605), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [275985] = 4, - ACTIONS(2477), 1, - anon_sym_LF, - STATE(3779), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(4763), 1, + anon_sym_or, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 33, + ACTIONS(756), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 26, 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, @@ -285656,35 +296424,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [276031] = 4, - ACTIONS(4488), 1, - anon_sym_EQ, + [286296] = 8, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(4609), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2278), 21, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_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, @@ -285698,87 +296470,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [276077] = 22, - ACTIONS(4325), 1, + [286350] = 22, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - ACTIONS(4403), 1, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - ACTIONS(4538), 1, + ACTIONS(4621), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + ACTIONS(4623), 1, anon_sym_DASH, - ACTIONS(4544), 1, + ACTIONS(4627), 1, anon_sym_PIPE, - ACTIONS(4546), 1, + ACTIONS(4629), 1, anon_sym_AMP, - ACTIONS(4548), 1, + ACTIONS(4631), 1, anon_sym_CARET, - STATE(3552), 1, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4532), 2, + ACTIONS(4617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4542), 2, + ACTIONS(4625), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, + ACTIONS(4633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2524), 3, + ACTIONS(2394), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [276159] = 3, - ACTIONS(3), 2, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [286432] = 5, + ACTIONS(201), 1, + anon_sym_LF, + ACTIONS(4765), 1, + anon_sym_LBRACE, + STATE(4368), 1, + sym_dictionary, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3305), 31, + ACTIONS(197), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, anon_sym_not, @@ -285786,6 +296557,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, @@ -285793,76 +296565,78 @@ 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, - [276203] = 6, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4611), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [286480] = 5, + ACTIONS(4767), 1, + anon_sym_PIPE, + STATE(3949), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 30, + ACTIONS(1956), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1954), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, 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, 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_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, 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, - [276253] = 3, + [286528] = 4, + STATE(3953), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 5, + ACTIONS(2600), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2896), 30, + ACTIONS(2598), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -285884,28 +296658,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [276297] = 5, - ACTIONS(2459), 1, + [286574] = 10, + ACTIONS(2069), 1, anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 31, + ACTIONS(2067), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -285926,162 +296706,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [276345] = 8, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4630), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2447), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2469), 18, + [286632] = 18, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4599), 1, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4621), 1, + anon_sym_PLUS, + ACTIONS(4623), 1, + anon_sym_DASH, + ACTIONS(4627), 1, anon_sym_PIPE, + ACTIONS(4629), 1, anon_sym_AMP, + ACTIONS(4631), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [276399] = 8, - ACTIONS(2469), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4609), 1, - anon_sym_and, - ACTIONS(4611), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 25, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2386), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4617), 2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(4625), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4633), 2, 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, - [276453] = 5, - ACTIONS(2459), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 31, + ACTIONS(2458), 15, anon_sym_DOT, anon_sym_as, + anon_sym_if, 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, - 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, - [276501] = 3, + [286706] = 4, + STATE(3835), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 5, + ACTIONS(2298), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2900), 30, + ACTIONS(2300), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -286103,87 +296804,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [276545] = 7, - ACTIONS(2481), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4609), 1, - anon_sym_and, - ACTIONS(4611), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + [286752] = 10, + ACTIONS(4639), 1, anon_sym_LPAREN, + ACTIONS(4641), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(4645), 1, anon_sym_STAR_STAR, + ACTIONS(4647), 1, 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, - [276597] = 10, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4661), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, + STATE(3980), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 5, + ACTIONS(2067), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, + ACTIONS(2069), 24, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_for, 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, @@ -286196,20 +296852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [276655] = 5, - ACTIONS(2463), 1, + [286810] = 4, + ACTIONS(2290), 1, anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3959), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2465), 31, + ACTIONS(2288), 32, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -286239,91 +296894,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [276703] = 11, - ACTIONS(2520), 1, + [286856] = 4, + ACTIONS(2154), 1, anon_sym_LF, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(4770), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 23, + ACTIONS(2156), 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_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, - [276763] = 10, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 5, - anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -286331,27 +296928,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, - [276821] = 4, - ACTIONS(2485), 1, + anon_sym_QMARK_LBRACK, + [286902] = 5, + ACTIONS(2554), 1, anon_sym_LF, - STATE(3748), 1, + ACTIONS(4772), 1, + anon_sym_EQ, + STATE(3892), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 33, + ACTIONS(2556), 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, @@ -286378,89 +296979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [276867] = 12, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4532), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 3, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 21, - anon_sym_DOT, - anon_sym_as, + [286950] = 8, + ACTIONS(2278), 1, + anon_sym_LF, + ACTIONS(4601), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, + ACTIONS(4603), 1, 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [276929] = 8, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, + ACTIONS(4605), 1, anon_sym_PLUS, - ACTIONS(4630), 1, - anon_sym_and, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, + ACTIONS(2242), 4, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_or, - ACTIONS(2467), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2469), 21, + ACTIONS(2276), 25, 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_not, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -286468,24 +297017,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [276983] = 5, - ACTIONS(221), 1, + [287004] = 5, + ACTIONS(2441), 1, anon_sym_LF, - ACTIONS(4632), 1, - anon_sym_LBRACE, - STATE(4130), 1, - sym_dictionary, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 32, + ACTIONS(4774), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3959), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 30, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -286495,7 +297047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -286517,33 +297068,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [277031] = 4, - ACTIONS(2572), 1, - anon_sym_LF, - ACTIONS(5), 2, + [287052] = 8, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(4609), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3782), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2570), 32, + ACTIONS(2276), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2244), 7, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2278), 18, 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, @@ -286551,36 +297108,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, - [277077] = 4, - STATE(3778), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [287106] = 5, + ACTIONS(133), 1, + anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 30, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 31, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -286588,6 +297141,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, @@ -286595,24 +297149,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, - [277123] = 4, - STATE(3778), 1, - aux_sym_comparison_operator_repeat1, + [287154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2799), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 30, + ACTIONS(2797), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -286643,23 +297198,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [277169] = 5, - ACTIONS(189), 1, + [287198] = 5, + ACTIONS(1954), 1, anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, + ACTIONS(4777), 1, + anon_sym_PIPE, + STATE(3963), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 31, + ACTIONS(1956), 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, @@ -286673,7 +297229,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, @@ -286686,70 +297241,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [277217] = 4, - STATE(3778), 1, + [287246] = 16, + ACTIONS(2458), 1, + anon_sym_LF, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4678), 1, + anon_sym_AMP, + ACTIONS(4680), 1, + anon_sym_CARET, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4726), 1, + anon_sym_PIPE, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(4676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4670), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 30, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2386), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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, - [277263] = 4, - STATE(3778), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [287316] = 4, + ACTIONS(1973), 1, + anon_sym_LF, + ACTIONS(4780), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 30, + ACTIONS(1975), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, anon_sym_not, @@ -286757,6 +297321,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, @@ -286764,37 +297329,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, - [277309] = 9, - ACTIONS(4568), 1, + [287362] = 9, + ACTIONS(4607), 1, anon_sym_if, - ACTIONS(4573), 1, + ACTIONS(4609), 1, anon_sym_PLUS, - ACTIONS(4630), 1, + ACTIONS(4688), 1, anon_sym_and, - ACTIONS(4634), 1, + ACTIONS(4782), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2355), 5, + ACTIONS(2059), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2357), 22, + ACTIONS(2057), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -286817,34 +297384,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [277365] = 7, - ACTIONS(2447), 1, + [287418] = 4, + ACTIONS(2033), 1, anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4609), 1, - anon_sym_and, - ACTIONS(4611), 1, - anon_sym_PLUS, + ACTIONS(4784), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 29, + ACTIONS(2035), 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, @@ -286862,117 +297426,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [277417] = 10, - ACTIONS(438), 1, - anon_sym_DOT, - ACTIONS(440), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_if, - ACTIONS(784), 1, - anon_sym_and, - ACTIONS(786), 1, - anon_sym_or, - ACTIONS(4597), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 16, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [277475] = 5, - ACTIONS(780), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + [287464] = 5, + ACTIONS(4786), 1, anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 19, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [277523] = 3, + STATE(4314), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3167), 31, + ACTIONS(201), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -286994,23 +297469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [277567] = 5, - ACTIONS(2439), 1, + [287512] = 4, + ACTIONS(2154), 1, anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, + STATE(3892), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 31, + ACTIONS(2156), 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, @@ -287037,36 +297511,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [277615] = 5, - ACTIONS(4636), 1, - anon_sym_EQ, - STATE(3847), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [287558] = 5, + ACTIONS(2402), 1, + anon_sym_LF, + ACTIONS(4601), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2562), 28, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 31, 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_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -287074,42 +297546,88 @@ 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, - [277663] = 9, - ACTIONS(2357), 1, - anon_sym_LF, - ACTIONS(4607), 1, - anon_sym_if, - ACTIONS(4609), 1, - anon_sym_and, - ACTIONS(4611), 1, + [287606] = 4, + ACTIONS(4788), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4692), 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(4638), 1, - anon_sym_or, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4690), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [287652] = 10, + ACTIONS(1940), 1, + anon_sym_LF, + ACTIONS(4666), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_QMARK_DOT, + ACTIONS(4684), 1, + anon_sym_QMARK_LBRACK, + STATE(4187), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(1942), 27, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 26, anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -287126,53 +297644,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [277719] = 15, - ACTIONS(2520), 1, + [287710] = 10, + ACTIONS(1940), 1, anon_sym_LF, - ACTIONS(4520), 1, + ACTIONS(4666), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4668), 1, anon_sym_LBRACK, - ACTIONS(4524), 1, + ACTIONS(4672), 1, anon_sym_STAR_STAR, - ACTIONS(4526), 1, + ACTIONS(4674), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, + ACTIONS(4684), 1, anon_sym_QMARK_LBRACK, - ACTIONS(4585), 1, - anon_sym_AMP, - ACTIONS(4587), 1, - anon_sym_CARET, - STATE(3866), 1, + STATE(4187), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 17, + ACTIONS(1942), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_RBRACE, 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, @@ -287180,41 +297692,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [277787] = 7, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4630), 1, - anon_sym_and, + [287768] = 5, + ACTIONS(4790), 1, + anon_sym_PIPE, + STATE(3974), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 5, + ACTIONS(1956), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 25, + ACTIONS(1954), 27, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -287225,434 +297734,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [277839] = 14, - ACTIONS(2520), 1, - anon_sym_LF, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4587), 1, - anon_sym_CARET, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, + [287815] = 4, + STATE(4248), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, + ACTIONS(197), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, + 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, anon_sym_is, - [277905] = 19, - ACTIONS(2367), 1, - anon_sym_LF, - ACTIONS(4520), 1, + anon_sym_QMARK_LBRACK, + [287860] = 20, + ACTIONS(4639), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4524), 1, + ACTIONS(4645), 1, anon_sym_STAR_STAR, - ACTIONS(4526), 1, + ACTIONS(4647), 1, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4583), 1, + ACTIONS(4653), 1, anon_sym_PIPE, - ACTIONS(4585), 1, + ACTIONS(4655), 1, anon_sym_AMP, - ACTIONS(4587), 1, + ACTIONS(4657), 1, anon_sym_CARET, - ACTIONS(4642), 1, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(4644), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(3866), 1, + STATE(3980), 1, sym_argument_list, - STATE(4694), 1, + STATE(4803), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, + ACTIONS(4643), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2365), 7, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4759), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4755), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 7, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(4640), 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, - [277981] = 13, - ACTIONS(2520), 1, - anon_sym_LF, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [287937] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, + ACTIONS(2793), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2791), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_for, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [278045] = 12, - ACTIONS(2520), 1, - anon_sym_LF, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, anon_sym_QMARK_LBRACK, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [287980] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4579), 4, + ACTIONS(197), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 28, 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_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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [278107] = 17, - ACTIONS(4403), 1, + anon_sym_QMARK_LBRACK, + [288023] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4639), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, + ACTIONS(4645), 1, anon_sym_STAR_STAR, - ACTIONS(4538), 1, - anon_sym_PLUS, - ACTIONS(4540), 1, - anon_sym_DASH, - ACTIONS(4546), 1, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4653), 1, + anon_sym_PIPE, + ACTIONS(4655), 1, anon_sym_AMP, - ACTIONS(4548), 1, + ACTIONS(4657), 1, anon_sym_CARET, - STATE(3552), 1, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + STATE(3980), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4532), 2, + ACTIONS(4643), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4542), 2, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, + ACTIONS(4659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + ACTIONS(2330), 5, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [278179] = 5, - ACTIONS(780), 1, + ACTIONS(2458), 7, + sym__newline, + anon_sym_DOT, + anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + [288100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, + ACTIONS(3073), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 30, sym__newline, - sym__indent, - sym_string_start, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + 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(2461), 19, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [278227] = 20, - ACTIONS(2491), 1, - anon_sym_LF, - ACTIONS(2495), 1, - anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, - anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4583), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(4585), 1, anon_sym_AMP, - ACTIONS(4587), 1, anon_sym_CARET, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2489), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4581), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4579), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2493), 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, - [278305] = 6, - ACTIONS(780), 1, - anon_sym_if, - ACTIONS(4597), 1, - anon_sym_PLUS, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [288143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, - sym__newline, - sym__indent, + ACTIONS(4793), 12, sym_string_start, - anon_sym_COLON, + 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(2449), 19, + ACTIONS(4795), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [278355] = 4, - STATE(3786), 1, - aux_sym_comparison_operator_repeat1, + [288186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + ACTIONS(2823), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2821), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -287661,8 +298074,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, @@ -287677,26 +298089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [278401] = 3, + [288229] = 4, + ACTIONS(4751), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 4, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3149), 31, + ACTIONS(2554), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -287718,26 +298130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [278445] = 3, + [288274] = 4, + STATE(3841), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 5, - anon_sym_EQ, + ACTIONS(2760), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2924), 30, + ACTIONS(2758), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -287759,31 +298171,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [278489] = 4, - STATE(3810), 1, + [288319] = 8, + ACTIONS(4800), 1, + anon_sym_not, + ACTIONS(4806), 1, + anon_sym_is, + STATE(3985), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(2841), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4803), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 30, + ACTIONS(4797), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 22, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -287795,94 +298215,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [278535] = 16, - ACTIONS(4403), 1, + [288372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4809), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4538), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4548), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(4811), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288415] = 8, + ACTIONS(4611), 1, + anon_sym_if, + ACTIONS(4613), 1, + anon_sym_PLUS, + ACTIONS(4720), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4532), 2, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2276), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2244), 6, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2278), 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_DASH, + anon_sym_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, - [278605] = 4, - STATE(3847), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [288468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 6, - anon_sym_EQ, + ACTIONS(3121), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 28, + ACTIONS(3123), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, 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, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -287897,139 +298341,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [278651] = 15, - ACTIONS(4403), 1, + [288511] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4813), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4538), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + anon_sym_DQUOTE, anon_sym_DASH, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4532), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 18, + anon_sym_TILDE, + sym_float, + ACTIONS(4815), 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_in, + anon_sym_rule, + 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [278719] = 14, - ACTIONS(4403), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288554] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4817), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4538), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + anon_sym_DQUOTE, anon_sym_DASH, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(4819), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4532), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 20, + ACTIONS(4821), 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(4823), 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_in, + anon_sym_rule, + 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_check, 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, - [278785] = 4, - STATE(3847), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 6, - anon_sym_EQ, + ACTIONS(3173), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 28, + ACTIONS(3171), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, 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, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -288044,269 +298501,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [278831] = 19, - ACTIONS(2367), 1, - anon_sym_LF, - ACTIONS(4520), 1, + [288683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4825), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4583), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_AMP, - ACTIONS(4587), 1, - anon_sym_CARET, - ACTIONS(4642), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4827), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(4644), 1, - anon_sym_is, - STATE(3866), 1, - sym_argument_list, - STATE(3932), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288726] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, + ACTIONS(4829), 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(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 7, + anon_sym_TILDE, + sym_float, + ACTIONS(4831), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(4640), 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, - [278907] = 22, - ACTIONS(4325), 1, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288769] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4833), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4538), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4544), 1, - anon_sym_PIPE, - ACTIONS(4546), 1, - anon_sym_AMP, - ACTIONS(4548), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(4835), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4532), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2503), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(4837), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(2367), 5, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4839), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [278989] = 20, - ACTIONS(2495), 1, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(2499), 1, - anon_sym_is, - ACTIONS(2503), 1, - anon_sym_LF, - ACTIONS(4520), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288855] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 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(4843), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4290), 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(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288941] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4845), 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(4847), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [288984] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4290), 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(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4849), 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(4851), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289070] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4290), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(4524), 1, - anon_sym_STAR_STAR, - ACTIONS(4526), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4528), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4583), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_AMP, - ACTIONS(4587), 1, - anon_sym_CARET, - STATE(3866), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2501), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4581), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4579), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 5, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2493), 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, - [279067] = 22, - ACTIONS(4325), 1, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289113] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4853), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(4534), 1, - anon_sym_STAR_STAR, - ACTIONS(4538), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(4544), 1, - anon_sym_PIPE, - ACTIONS(4546), 1, - anon_sym_AMP, - ACTIONS(4548), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4532), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4542), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4550), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2491), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(2367), 5, + anon_sym_TILDE, + sym_float, + ACTIONS(4855), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [279149] = 4, - STATE(3847), 1, - aux_sym_union_type_repeat1, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289156] = 4, + STATE(5564), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 6, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 28, + ACTIONS(201), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -288321,34 +298982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [279195] = 4, - STATE(3847), 1, - aux_sym_union_type_repeat1, + [289201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 6, - anon_sym_EQ, + ACTIONS(3197), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 28, + ACTIONS(3195), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_for, 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, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -288363,398 +299022,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [279241] = 4, - STATE(3850), 1, - aux_sym_union_type_repeat1, + [289244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2568), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(4857), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_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, - [279287] = 5, - ACTIONS(780), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4859), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 13, - sym__newline, - sym__indent, + ACTIONS(4861), 12, sym_string_start, - anon_sym_COLON, + 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(2453), 19, + ACTIONS(4863), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [279335] = 4, - ACTIONS(2507), 1, - anon_sym_LF, - STATE(3748), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [289330] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4865), 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, - [279381] = 5, - ACTIONS(4646), 1, - anon_sym_PIPE, - STATE(3850), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2505), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2507), 27, + anon_sym_TILDE, + sym_float, + ACTIONS(4867), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_check, 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_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, - [279429] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3073), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4869), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_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, - [279473] = 6, - ACTIONS(780), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4871), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, - ACTIONS(4597), 1, - anon_sym_PLUS, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, - sym__newline, - sym__indent, + ACTIONS(4873), 12, sym_string_start, - anon_sym_COLON, + 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(2457), 19, + ACTIONS(4875), 22, anon_sym_import, anon_sym_DOT, - anon_sym_as, anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [279523] = 7, - ACTIONS(4568), 1, - anon_sym_if, - ACTIONS(4573), 1, - anon_sym_PLUS, - ACTIONS(4630), 1, - anon_sym_and, + [289459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2481), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4861), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4863), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, anon_sym_not, - 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, - [279575] = 5, - ACTIONS(4649), 1, - anon_sym_EQ, - STATE(3776), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2562), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4877), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [279623] = 5, - ACTIONS(1305), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4879), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, + ACTIONS(4881), 12, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2465), 18, + ACTIONS(4883), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [279670] = 3, + [289588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4653), 12, - sym__dedent, + ACTIONS(4885), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -288765,7 +299359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4651), 22, + ACTIONS(4887), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -288788,28 +299382,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [279713] = 5, - ACTIONS(4655), 1, - anon_sym_PIPE, - STATE(3857), 1, - aux_sym_union_type_repeat1, + [289631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_EQ, + ACTIONS(3213), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 27, + ACTIONS(3211), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -288820,6 +299411,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, @@ -288830,97 +299422,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [279760] = 3, + [289674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3045), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4889), 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_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, - [279803] = 7, - ACTIONS(4658), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4891), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, - ACTIONS(4660), 1, - anon_sym_and, - ACTIONS(4662), 1, - anon_sym_PLUS, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2481), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4290), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_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, - [279854] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4666), 12, - sym__dedent, + ACTIONS(4893), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -288931,7 +299519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4664), 22, + ACTIONS(4895), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -288954,319 +299542,253 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [279897] = 3, - ACTIONS(2930), 1, - anon_sym_LF, - ACTIONS(5), 2, + [289803] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4893), 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, - [279940] = 20, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4680), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4895), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4688), 1, - anon_sym_AMP, - ACTIONS(4690), 1, - anon_sym_CARET, - ACTIONS(4696), 1, - anon_sym_is, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4708), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4674), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4682), 2, + ACTIONS(4897), 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(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4694), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4672), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 7, - sym__newline, + anon_sym_TILDE, + sym_float, + ACTIONS(4899), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - [280017] = 3, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3045), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4901), 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_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, - [280060] = 5, - ACTIONS(1305), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4903), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [289932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 13, + ACTIONS(4905), 12, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2441), 18, + ACTIONS(4907), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [280107] = 3, + [289975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3069), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4290), 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_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, - [280150] = 3, - ACTIONS(3305), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3303), 33, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [290018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4909), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_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, - [280193] = 10, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2574), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2576), 23, - sym__newline, + anon_sym_TILDE, + sym_float, + ACTIONS(4911), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - 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, - [280250] = 3, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [290061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4702), 12, - sym__dedent, + ACTIONS(4913), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -289277,7 +299799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4700), 22, + ACTIONS(4915), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289300,58 +299822,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280293] = 8, - ACTIONS(4658), 1, - anon_sym_if, - ACTIONS(4660), 1, - anon_sym_and, - ACTIONS(4662), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2469), 21, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [280346] = 3, + [290104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4706), 12, - sym__dedent, + ACTIONS(4290), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -289362,7 +299839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4704), 22, + ACTIONS(4292), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289385,11 +299862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280389] = 3, + [290147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4708), 12, + ACTIONS(4917), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289402,7 +299879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4710), 22, + ACTIONS(4919), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289425,68 +299902,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280432] = 20, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4724), 1, - anon_sym_not, - ACTIONS(4730), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, - anon_sym_AMP, - ACTIONS(4734), 1, - anon_sym_CARET, - ACTIONS(4740), 1, - anon_sym_is, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4196), 1, - aux_sym_comparison_operator_repeat1, - STATE(4218), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4718), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4738), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4716), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [280509] = 3, + [290190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4744), 12, + ACTIONS(4921), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289499,7 +299919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4746), 22, + ACTIONS(4923), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289522,222 +299942,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280552] = 5, - ACTIONS(4748), 1, - anon_sym_LBRACE, - STATE(4336), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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, - [280599] = 9, - ACTIONS(4658), 1, - anon_sym_if, - ACTIONS(4660), 1, - anon_sym_and, - ACTIONS(4662), 1, - anon_sym_PLUS, - ACTIONS(4750), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2357), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [280654] = 6, - ACTIONS(1293), 1, - anon_sym_if, - ACTIONS(4752), 1, - anon_sym_PLUS, + [290233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, + ACTIONS(4921), 12, sym_string_start, - anon_sym_COLON, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2445), 18, + ACTIONS(4923), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [280703] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3059), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3057), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [280746] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2483), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 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, - [280789] = 3, + [290276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4754), 12, + ACTIONS(4925), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289750,7 +299999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4756), 22, + ACTIONS(4927), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289773,11 +300022,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280832] = 3, + [290319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4758), 12, + ACTIONS(4929), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289790,7 +300039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4760), 22, + ACTIONS(4931), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289813,11 +300062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280875] = 3, + [290362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4762), 12, + ACTIONS(4933), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289830,7 +300079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4764), 22, + ACTIONS(4935), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289853,11 +300102,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280918] = 3, + [290405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4766), 12, + ACTIONS(4290), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289870,7 +300119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4768), 22, + ACTIONS(4292), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289893,54 +300142,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [280961] = 6, - ACTIONS(1305), 1, - anon_sym_if, - ACTIONS(4770), 1, - anon_sym_PLUS, + [290448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, + ACTIONS(4937), 12, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2445), 18, + ACTIONS(4939), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [281010] = 3, + [290491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4772), 12, + ACTIONS(4941), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289953,7 +300199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4774), 22, + ACTIONS(4943), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -289976,11 +300222,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281053] = 3, + [290534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4776), 12, + ACTIONS(4945), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -289993,7 +300239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4778), 22, + ACTIONS(4947), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290016,11 +300262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281096] = 3, + [290577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4780), 12, + ACTIONS(4949), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -290033,7 +300279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4782), 22, + ACTIONS(4951), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290056,134 +300302,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281139] = 5, - ACTIONS(1305), 1, - anon_sym_if, + [290620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, + ACTIONS(4953), 12, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(191), 18, + ACTIONS(4955), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [281186] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3097), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3095), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [281229] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4016), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2570), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2572), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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, - [281274] = 3, + [290663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4784), 12, + ACTIONS(4290), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -290196,7 +300359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4786), 22, + ACTIONS(4292), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290219,11 +300382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281317] = 3, + [290706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4788), 12, + ACTIONS(4957), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -290236,7 +300399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4790), 22, + ACTIONS(4959), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290259,178 +300422,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281360] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2512), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2514), 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, - [281403] = 3, - ACTIONS(2924), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2922), 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, - [281446] = 3, - ACTIONS(3113), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3115), 33, - 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_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, - [281489] = 8, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2469), 21, - sym__newline, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [281542] = 3, + [290749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4798), 12, + ACTIONS(4793), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -290441,7 +300439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4800), 22, + ACTIONS(4795), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290464,24 +300462,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281585] = 4, - STATE(3973), 1, - aux_sym_dotted_name_repeat1, + [290792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2009), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 28, + ACTIONS(2007), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -290505,51 +300502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [281630] = 3, - ACTIONS(2883), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2881), 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, - [281673] = 3, + [290835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4798), 12, + ACTIONS(4809), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -290562,7 +300519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4800), 22, + ACTIONS(4811), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290585,13 +300542,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281716] = 3, + [290878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4802), 12, + ACTIONS(4813), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -290602,7 +300559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4804), 22, + ACTIONS(4815), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290625,13 +300582,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281759] = 3, + [290921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4806), 12, + ACTIONS(4817), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -290642,7 +300599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4808), 22, + ACTIONS(4819), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290665,148 +300622,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [281802] = 4, - STATE(4113), 1, + [290964] = 4, + STATE(3907), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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, - [281847] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(2760), 5, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [281890] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2365), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2367), 30, + ACTIONS(2758), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [281933] = 4, - ACTIONS(4810), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2483), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -290827,13 +300663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [281978] = 3, + [291009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4706), 12, + ACTIONS(4825), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -290844,7 +300680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4704), 22, + ACTIONS(4827), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290867,13 +300703,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282021] = 3, + [291052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4702), 12, + ACTIONS(4821), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -290884,7 +300720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4700), 22, + ACTIONS(4823), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290907,13 +300743,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282064] = 3, + [291095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4666), 12, + ACTIONS(4829), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -290924,7 +300760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4664), 22, + ACTIONS(4831), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -290947,90 +300783,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282107] = 7, - ACTIONS(4658), 1, - anon_sym_if, - ACTIONS(4660), 1, - anon_sym_and, - ACTIONS(4662), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2447), 25, - anon_sym_DOT, - anon_sym_as, - 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_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, - [282158] = 10, - ACTIONS(606), 1, - anon_sym_DOT, - ACTIONS(608), 1, - anon_sym_QMARK_DOT, - ACTIONS(1305), 1, - anon_sym_if, - ACTIONS(4770), 1, - anon_sym_PLUS, - ACTIONS(4812), 1, - anon_sym_and, - ACTIONS(4814), 1, - anon_sym_or, + [291138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, + ACTIONS(4837), 12, + sym__dedent, sym_string_start, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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(2355), 15, - anon_sym_as, - anon_sym_for, - anon_sym_else, + ACTIONS(4839), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, sym_integer, sym_identifier, @@ -291038,289 +300823,91 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282215] = 21, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4730), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, - anon_sym_AMP, - ACTIONS(4734), 1, - anon_sym_CARET, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2491), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [282294] = 4, - STATE(4113), 1, - aux_sym_union_type_repeat1, + [291181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4841), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_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, - [282339] = 4, - ACTIONS(4636), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2562), 28, + anon_sym_TILDE, + sym_float, + ACTIONS(4843), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_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, - [282384] = 21, - ACTIONS(4325), 1, + anon_sym_rule, + 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_check, anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4730), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, - anon_sym_AMP, - ACTIONS(4734), 1, - anon_sym_CARET, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2503), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4718), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [282463] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3109), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4290), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [282506] = 3, - ACTIONS(2944), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2942), 33, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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, - [282549] = 3, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4806), 12, + ACTIONS(4845), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -291333,7 +300920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4808), 22, + ACTIONS(4847), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -291356,51 +300943,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282592] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3127), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3125), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [282635] = 3, + [291310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4802), 12, + ACTIONS(4290), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -291413,7 +300960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4804), 22, + ACTIONS(4292), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -291436,131 +300983,91 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282678] = 3, + [291353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4849), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [282721] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(4851), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3201), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4290), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [282764] = 3, - ACTIONS(2948), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2946), 33, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_check, 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, - [282807] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4788), 12, + ACTIONS(4853), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -291573,7 +301080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4790), 22, + ACTIONS(4855), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -291596,11 +301103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282850] = 3, + [291482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4780), 12, + ACTIONS(4857), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -291613,7 +301120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4782), 22, + ACTIONS(4859), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -291636,51 +301143,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282893] = 3, + [291525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2528), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4861), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [282936] = 3, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4863), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4776), 12, + ACTIONS(4865), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -291693,7 +301200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4778), 22, + ACTIONS(4867), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -291716,54 +301223,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [282979] = 4, - ACTIONS(2859), 1, - anon_sym_LF, - STATE(4061), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 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, - [283024] = 3, + [291611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4816), 12, + ACTIONS(4869), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -291774,7 +301240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4818), 22, + ACTIONS(4871), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -291797,713 +301263,451 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [283067] = 5, - ACTIONS(4820), 1, - anon_sym_in, - ACTIONS(4822), 1, - anon_sym_not, + [291654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4873), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283114] = 4, - ACTIONS(2859), 1, - anon_sym_LF, - STATE(4061), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 32, + anon_sym_TILDE, + sym_float, + ACTIONS(4875), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_check, 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, - [283159] = 4, - ACTIONS(2859), 1, - anon_sym_LF, - STATE(4061), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291697] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4833), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_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, - [283204] = 4, - ACTIONS(2859), 1, - anon_sym_LF, - STATE(4061), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 32, + anon_sym_TILDE, + sym_float, + ACTIONS(4835), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_check, 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, - [283249] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3137), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4877), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283292] = 3, - ACTIONS(3073), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3075), 33, + anon_sym_TILDE, + sym_float, + ACTIONS(4879), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_check, 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, - [283335] = 6, - ACTIONS(1293), 1, - anon_sym_if, - ACTIONS(4752), 1, - anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, + ACTIONS(4881), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2449), 18, + ACTIONS(4883), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [283384] = 4, - STATE(3974), 1, - aux_sym_dotted_name_repeat1, + [291826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2477), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4885), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283429] = 4, - ACTIONS(4649), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2562), 28, + anon_sym_TILDE, + sym_float, + ACTIONS(4887), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_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, - [283474] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3145), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4698), 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_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, - [283517] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4824), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 26, + anon_sym_TILDE, + sym_float, + ACTIONS(4700), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283564] = 5, - ACTIONS(4658), 1, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2439), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4889), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283611] = 5, - ACTIONS(1293), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4891), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [291955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 12, + ACTIONS(4290), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 19, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [283658] = 6, - ACTIONS(1293), 1, - anon_sym_if, - ACTIONS(4752), 1, - anon_sym_PLUS, + [291998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, + ACTIONS(4893), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2457), 18, + ACTIONS(4895), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [283707] = 4, - ACTIONS(221), 1, - anon_sym_LF, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [292041] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4893), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_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, - [283752] = 5, - ACTIONS(4658), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4895), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(189), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4897), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283799] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3053), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 30, + anon_sym_TILDE, + sym_float, + ACTIONS(4899), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [283842] = 3, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4772), 12, + ACTIONS(4901), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -292516,7 +301720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4774), 22, + ACTIONS(4903), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -292539,261 +301743,251 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [283885] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4347), 1, - anon_sym_not, + [292170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4905), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [283932] = 5, - ACTIONS(1293), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4907), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 12, + ACTIONS(4290), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 19, + ACTIONS(4292), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [283979] = 3, - ACTIONS(2887), 1, - anon_sym_LF, - ACTIONS(5), 2, + [292256] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4909), 12, + sym__dedent, + sym_string_start, 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, - [284022] = 5, - ACTIONS(1293), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4911), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 12, + ACTIONS(4913), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 19, + ACTIONS(4915), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [284069] = 5, - ACTIONS(4658), 1, - anon_sym_if, + [292342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2463), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4290), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284116] = 5, - ACTIONS(1293), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 12, + ACTIONS(4917), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 19, + ACTIONS(4919), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [284163] = 3, + [292428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4826), 12, + ACTIONS(4716), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -292806,7 +302000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4828), 22, + ACTIONS(4718), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -292829,679 +302023,531 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [284206] = 5, - ACTIONS(4658), 1, - anon_sym_if, + [292471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4290), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284253] = 5, - ACTIONS(4658), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4921), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284300] = 10, - ACTIONS(600), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4923), 22, + anon_sym_import, anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(1293), 1, + anon_sym_assert, anon_sym_if, - ACTIONS(4752), 1, - anon_sym_PLUS, - ACTIONS(4830), 1, - anon_sym_and, - ACTIONS(4832), 1, - anon_sym_or, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, + ACTIONS(4921), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2355), 15, - anon_sym_as, - anon_sym_else, + ACTIONS(4923), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [284357] = 3, - ACTIONS(2952), 1, - anon_sym_LF, - ACTIONS(5), 2, + [292600] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4925), 12, + sym__dedent, + sym_string_start, 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, - [284400] = 7, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2447), 25, - sym__newline, + anon_sym_TILDE, + sym_float, + ACTIONS(4927), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, anon_sym_not, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284451] = 4, - STATE(4079), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4929), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284496] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3163), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3161), 30, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4931), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_rule, + 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_check, 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, - [284539] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3141), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4933), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284582] = 6, - ACTIONS(4658), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4935), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, - ACTIONS(4662), 1, - anon_sym_PLUS, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2455), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4290), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284631] = 5, - ACTIONS(4834), 1, - anon_sym_PIPE, - STATE(3963), 1, - aux_sym_union_type_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2507), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4937), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_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_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, - [284678] = 5, - ACTIONS(4658), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4939), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2451), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4941), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284725] = 5, - ACTIONS(1293), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(4943), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 12, + ACTIONS(4945), 12, + sym__dedent, sym_string_start, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(191), 19, + ACTIONS(4947), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, - anon_sym_else, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, 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_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_then, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [284772] = 3, + [292901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3233), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + ACTIONS(4949), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284815] = 4, - STATE(4079), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(4951), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4953), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284860] = 4, - STATE(4079), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2857), 5, - anon_sym_STAR, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, + anon_sym_TILDE, + sym_float, + ACTIONS(4955), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_rule, + 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_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, - [284905] = 4, - STATE(4079), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [292987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(4290), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [284950] = 3, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [293030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4766), 12, + ACTIONS(4957), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -293514,7 +302560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4768), 22, + ACTIONS(4959), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -293537,188 +302583,77 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [284993] = 6, - ACTIONS(4658), 1, - anon_sym_if, - ACTIONS(4662), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2447), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + [293073] = 20, + ACTIONS(4961), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4963), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(4969), 1, anon_sym_STAR_STAR, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4979), 1, anon_sym_PIPE, + ACTIONS(4981), 1, anon_sym_AMP, + ACTIONS(4983), 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(4989), 1, anon_sym_is, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - [285042] = 6, - ACTIONS(4658), 1, - anon_sym_if, - ACTIONS(4662), 1, - anon_sym_PLUS, + STATE(4263), 1, + sym_argument_list, + STATE(4798), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 4, + ACTIONS(4967), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2443), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4975), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4977), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4985), 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, - [285091] = 5, - STATE(3973), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4837), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2550), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 26, - sym__newline, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4965), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - 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, - [285138] = 4, - STATE(4076), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2473), 28, + ACTIONS(2356), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_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, - [285183] = 4, - STATE(3999), 1, - aux_sym_union_type_repeat1, + [293150] = 5, + ACTIONS(4993), 1, + anon_sym_LBRACE, + STATE(4500), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 28, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -293747,11 +302682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [285228] = 3, + [293197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4762), 12, + ACTIONS(4861), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -293764,7 +302699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4764), 22, + ACTIONS(4863), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -293787,69 +302722,93 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [285271] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4840), 12, - sym_string_start, - ts_builtin_sym_end, + [293240] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4961), 1, anon_sym_LPAREN, + ACTIONS(4963), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, + ACTIONS(4979), 1, + anon_sym_PIPE, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_CARET, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4842), 22, - anon_sym_import, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 7, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [285314] = 4, - STATE(4113), 1, - aux_sym_union_type_repeat1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [293317] = 10, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_EQ, + ACTIONS(2067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 28, - sym__newline, + ACTIONS(2069), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -293867,26 +302826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [285359] = 3, + [293374] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 4, + STATE(4106), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2288), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3237), 30, + ACTIONS(2290), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -293908,68 +302867,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [285402] = 4, - STATE(3999), 1, - aux_sym_union_type_repeat1, + [293419] = 22, + ACTIONS(2927), 1, + sym__newline, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4639), 1, + anon_sym_LPAREN, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_STAR_STAR, + ACTIONS(4647), 1, + anon_sym_QMARK_DOT, + ACTIONS(4653), 1, + anon_sym_PIPE, + ACTIONS(4655), 1, + anon_sym_AMP, + ACTIONS(4657), 1, + anon_sym_CARET, + ACTIONS(4661), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4995), 1, + anon_sym_for, + STATE(3980), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 28, + ACTIONS(4643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4651), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4659), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + [293500] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4961), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4963), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(4969), 1, anon_sym_STAR_STAR, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4979), 1, + anon_sym_PIPE, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_CARET, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4977), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4985), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2330), 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, - [285447] = 4, - STATE(4691), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [293579] = 5, + ACTIONS(4997), 1, + anon_sym_EQ, + STATE(4240), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 5, + ACTIONS(2556), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2554), 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, @@ -293977,6 +303012,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, @@ -293990,29 +303026,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [285492] = 4, - STATE(3897), 1, + [293626] = 5, + STATE(4104), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(4999), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2009), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 28, - sym__newline, - anon_sym_DOT, + ACTIONS(2007), 26, 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, @@ -294031,114 +303068,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [285537] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4844), 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(4846), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + [293673] = 8, + ACTIONS(5002), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [285580] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4848), 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(5004), 1, + anon_sym_and, + ACTIONS(5006), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4850), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [285623] = 5, - ACTIONS(4792), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2441), 4, + ACTIONS(2276), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2439), 27, - sym__newline, + ACTIONS(2244), 6, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2278), 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, @@ -294153,21 +303113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [285670] = 4, - ACTIONS(4852), 1, - anon_sym_DASH_GT, + [293726] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 6, - anon_sym_EQ, + ACTIONS(5008), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4106), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2436), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 27, - anon_sym_DOT, + ACTIONS(2441), 26, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -294176,11 +303137,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, anon_sym_PIPE, @@ -294194,69 +303155,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [285715] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4854), 12, - sym_string_start, - ts_builtin_sym_end, + [293773] = 10, + ACTIONS(4961), 1, anon_sym_LPAREN, + ACTIONS(4963), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4856), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [285758] = 4, - STATE(3999), 1, - aux_sym_union_type_repeat1, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_EQ, + ACTIONS(1942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 28, + ACTIONS(1940), 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, @@ -294274,32 +303202,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [293830] = 10, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - [285803] = 3, - ACTIONS(3149), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 33, + ACTIONS(1942), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1940), 23, 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_RPAREN, 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, @@ -294307,44 +303244,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, + [293887] = 12, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - [285846] = 4, - ACTIONS(4858), 1, - anon_sym_DASH_GT, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 27, - sym__newline, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -294355,219 +303298,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [293948] = 16, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_CARET, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - [285891] = 5, - ACTIONS(4792), 1, - anon_sym_if, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(189), 27, - sym__newline, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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_DASH, - anon_sym_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, - [285938] = 21, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4668), 1, + [294017] = 15, + ACTIONS(4961), 1, anon_sym_LPAREN, - ACTIONS(4670), 1, + ACTIONS(4963), 1, anon_sym_LBRACK, - ACTIONS(4676), 1, + ACTIONS(4969), 1, anon_sym_STAR_STAR, - ACTIONS(4678), 1, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4688), 1, - anon_sym_AMP, - ACTIONS(4690), 1, + ACTIONS(4983), 1, anon_sym_CARET, - ACTIONS(4698), 1, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - STATE(4191), 1, + STATE(4263), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(4674), 2, + ACTIONS(4967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, + ACTIONS(4975), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4684), 2, + ACTIONS(4977), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, + ACTIONS(4985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2367), 5, + ACTIONS(1940), 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, - ACTIONS(2497), 5, - anon_sym_in, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [286017] = 5, - ACTIONS(4860), 1, - anon_sym_EQ, - STATE(4113), 1, - aux_sym_union_type_repeat1, + anon_sym_is, + [294084] = 14, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 28, - sym__newline, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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_DASH, - anon_sym_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, - [286064] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4862), 12, - sym_string_start, - ts_builtin_sym_end, + [294149] = 13, + ACTIONS(4961), 1, anon_sym_LPAREN, + ACTIONS(4963), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4864), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286107] = 4, - STATE(3999), 1, - aux_sym_union_type_repeat1, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 28, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 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, @@ -294578,114 +303504,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [294212] = 21, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4979), 1, + anon_sym_PIPE, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_CARET, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - [286152] = 3, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4653), 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(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2394), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4651), 22, - anon_sym_import, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 5, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, + anon_sym_and, + anon_sym_or, + [294291] = 21, + ACTIONS(4356), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286195] = 4, - ACTIONS(4866), 1, - anon_sym_DASH_GT, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4979), 1, + anon_sym_PIPE, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_CARET, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2382), 2, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4985), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2330), 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, - [286240] = 3, + ACTIONS(2458), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [294370] = 7, + ACTIONS(5002), 1, + anon_sym_if, + ACTIONS(5004), 1, + anon_sym_and, + ACTIONS(5006), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 4, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 30, + ACTIONS(2542), 25, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, 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, @@ -294700,26 +303664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286283] = 4, - STATE(3857), 1, - aux_sym_union_type_repeat1, + [294421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2568), 28, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -294741,24 +303704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286328] = 4, - ACTIONS(221), 1, - anon_sym_LF, - STATE(3931), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [294464] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 32, + ACTIONS(2310), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2356), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -294766,7 +303731,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, @@ -294774,35 +303738,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, - [286373] = 4, - ACTIONS(4868), 1, - anon_sym_DASH_GT, + [294507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 6, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 27, + ACTIONS(201), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -294810,6 +303770,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, @@ -294823,106 +303784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4758), 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(4760), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286461] = 5, - ACTIONS(1293), 1, - anon_sym_if, + [294550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 12, - sym_string_start, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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_then, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286508] = 4, - ACTIONS(221), 1, - anon_sym_LF, - STATE(4693), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 32, + ACTIONS(3289), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3287), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -294930,7 +303811,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, @@ -294938,24 +303818,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, - [286553] = 3, + [294593] = 5, + ACTIONS(5011), 1, + anon_sym_in, + ACTIONS(5013), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 30, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -294965,10 +303847,8 @@ 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_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -294986,103 +303866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286596] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4754), 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(4756), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286639] = 3, + [294640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4784), 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(4786), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286682] = 3, - ACTIONS(2555), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2550), 33, + ACTIONS(3033), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3035), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_QMARK_DOT, anon_sym_not, @@ -295090,7 +303893,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, @@ -295098,42 +303900,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, - [286725] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4870), 1, - anon_sym_not, + [294683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, + ACTIONS(3037), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(3039), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + 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, @@ -295148,25 +303946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286772] = 3, + [294726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 4, + ACTIONS(2799), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3063), 30, + ACTIONS(2797), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -295188,27 +303986,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286815] = 5, - ACTIONS(4792), 1, - anon_sym_if, + [294769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 4, + ACTIONS(3043), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 27, - sym__newline, + ACTIONS(3045), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -295230,105 +304026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286862] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4744), 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(4746), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286905] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4872), 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(4874), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [286948] = 5, - ACTIONS(4792), 1, - anon_sym_if, + [294812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, + ACTIONS(2815), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(2813), 29, sym__newline, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -295352,37 +304066,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [286995] = 8, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_PLUS, + [294855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 4, + ACTIONS(2819), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 6, + ACTIONS(2817), 29, sym__newline, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2469), 19, + anon_sym_for, 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, @@ -295397,30 +304106,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287048] = 5, + [294898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4876), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4016), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 4, + ACTIONS(3053), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2545), 26, - sym__newline, + ACTIONS(3055), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -295439,16 +304146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287095] = 3, + [294941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 4, + ACTIONS(3077), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 30, + ACTIONS(3079), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -295479,16 +304186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287138] = 3, + [294984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 4, + ACTIONS(3081), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3043), 30, + ACTIONS(3083), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -295519,20 +304226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287181] = 5, - ACTIONS(4820), 1, - anon_sym_in, - ACTIONS(4879), 1, - anon_sym_not, + [295027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3087), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(3089), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -295542,8 +304245,10 @@ 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_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -295561,69 +304266,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287228] = 5, - ACTIONS(1305), 1, - anon_sym_if, + [295070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 13, - sym_string_start, + ACTIONS(3091), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3093), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, + 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(2453), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, - 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, - [287275] = 5, - ACTIONS(4792), 1, - anon_sym_if, + 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, + [295113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, + ACTIONS(3095), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, - sym__newline, + ACTIONS(3097), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -295645,16 +304346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287322] = 3, + [295156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 4, + ACTIONS(3099), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3257), 30, + ACTIONS(3101), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -295685,46 +304386,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287365] = 13, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 2, + ACTIONS(2827), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4726), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2825), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_for, + 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, @@ -295735,87 +304425,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [287428] = 14, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4742), 1, anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 2, + ACTIONS(3107), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4726), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3109), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [287493] = 10, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4698), 1, anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(3115), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, - sym__newline, + ACTIONS(3117), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -295833,36 +304505,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [287550] = 10, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4698), 1, anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(3125), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, - sym__newline, + ACTIONS(3127), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -295880,27 +304545,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [287607] = 4, - STATE(3968), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [295371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 5, + ACTIONS(3043), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(3045), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, 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_QMARK_DOT, @@ -295908,6 +304572,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, @@ -295921,22 +304586,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287652] = 4, - STATE(5502), 1, - aux_sym_quant_target_repeat1, + [295414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3103), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 29, + ACTIONS(3105), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, @@ -295962,45 +304626,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287697] = 12, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4674), 2, + ACTIONS(3141), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 21, - sym__newline, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3143), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -296011,68 +304665,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [287758] = 15, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4734), 1, - anon_sym_CARET, - ACTIONS(4742), 1, anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 2, + ACTIONS(3147), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4726), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [287825] = 3, + anon_sym_QMARK_LBRACK, + [295543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 4, + ACTIONS(3151), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 30, + ACTIONS(3153), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -296103,35 +304746,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287868] = 6, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4796), 1, - anon_sym_PLUS, + [295586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 4, + ACTIONS(3155), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2455), 26, - sym__newline, + ACTIONS(3157), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -296146,25 +304786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287917] = 5, - ACTIONS(4792), 1, - anon_sym_if, + [295629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 4, + ACTIONS(2805), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2451), 27, + ACTIONS(2807), 29, sym__newline, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -296188,65 +304826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [287964] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4708), 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(4710), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [288007] = 3, + [295672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(2801), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 30, + ACTIONS(2803), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -296268,24 +304866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288050] = 4, - ACTIONS(2562), 1, - anon_sym_LF, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5), 2, + [295715] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 32, + ACTIONS(3165), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3163), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -296293,7 +304893,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, @@ -296301,24 +304900,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, - [288095] = 3, + [295758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(3169), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 30, + ACTIONS(3167), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -296349,69 +304946,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288138] = 16, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4688), 1, - anon_sym_AMP, - ACTIONS(4690), 1, - anon_sym_CARET, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [295801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4674), 2, + ACTIONS(3177), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, - sym__newline, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3175), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [288207] = 3, + anon_sym_QMARK_LBRACK, + [295844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 4, + ACTIONS(3181), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3153), 30, + ACTIONS(3179), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -296442,24 +305026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288250] = 4, - ACTIONS(2914), 1, - anon_sym_LF, - STATE(3748), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [295887] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 32, + ACTIONS(3185), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3183), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -296467,7 +305053,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, @@ -296475,34 +305060,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, - [288295] = 4, - STATE(4113), 1, - aux_sym_union_type_repeat1, + [295930] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, - anon_sym_EQ, + ACTIONS(3189), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 28, - sym__newline, + ACTIONS(3187), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -296524,23 +305106,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288340] = 3, - ACTIONS(2936), 1, - anon_sym_LF, - ACTIONS(5), 2, + [295973] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 33, + ACTIONS(2776), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2778), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -296548,7 +305133,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, @@ -296556,233 +305140,78 @@ 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, - [288383] = 20, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4680), 1, - anon_sym_not, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4688), 1, - anon_sym_AMP, - ACTIONS(4690), 1, - anon_sym_CARET, - ACTIONS(4696), 1, anon_sym_is, - ACTIONS(4698), 1, anon_sym_QMARK_LBRACK, - STATE(4144), 1, - aux_sym_comparison_operator_repeat1, - STATE(4191), 1, - sym_argument_list, + [296016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4674), 2, + ACTIONS(2811), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4694), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4672), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2367), 7, + ACTIONS(2809), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - [288460] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4872), 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(4874), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [288503] = 16, - ACTIONS(4712), 1, + anon_sym_for, anon_sym_LPAREN, - ACTIONS(4714), 1, anon_sym_LBRACK, - ACTIONS(4720), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4722), 1, anon_sym_QMARK_DOT, - ACTIONS(4732), 1, - anon_sym_AMP, - ACTIONS(4734), 1, - anon_sym_CARET, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4728), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 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, - [288572] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4816), 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(4818), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [288615] = 6, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4796), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [296059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, + ACTIONS(3201), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 26, - sym__newline, + ACTIONS(3199), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -296797,36 +305226,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288664] = 7, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_PLUS, + [296102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 4, + ACTIONS(3205), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 25, - sym__newline, + ACTIONS(3203), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -296841,45 +305266,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288715] = 12, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [296145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4718), 2, + ACTIONS(3205), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4728), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3203), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -296890,56 +305305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [288776] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4881), 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(4883), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [288819] = 3, + anon_sym_QMARK_LBRACK, + [296188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 4, + ACTIONS(3209), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3157), 30, + ACTIONS(3207), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -296970,36 +305346,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [288862] = 10, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [296231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(2772), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, + ACTIONS(2774), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_for, + 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, @@ -297017,36 +305385,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [288919] = 10, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4742), 1, anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [296274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(3217), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 23, + ACTIONS(3215), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -297064,172 +305425,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [288976] = 3, + anon_sym_QMARK_LBRACK, + [296317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4885), 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(4887), 22, - anon_sym_import, + ACTIONS(3217), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3215), 30, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [289019] = 6, - ACTIONS(1305), 1, + anon_sym_as, anon_sym_if, - ACTIONS(4770), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 12, - sym_string_start, anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2457), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, - 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, - [289068] = 20, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4724), 1, - anon_sym_not, - ACTIONS(4730), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(4732), 1, anon_sym_AMP, - ACTIONS(4734), 1, anon_sym_CARET, - ACTIONS(4740), 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, - ACTIONS(4742), 1, anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4701), 1, - aux_sym_comparison_operator_repeat1, + [296360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4718), 2, + ACTIONS(3221), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4726), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3219), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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(4728), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4738), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4716), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2367), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [289145] = 3, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [296403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, - anon_sym_EQ, + ACTIONS(3227), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(3225), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -297244,56 +305546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289188] = 3, + [296446] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4889), 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(4891), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [289231] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3133), 4, + ACTIONS(3231), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3135), 30, + ACTIONS(3229), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -297324,94 +305586,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289274] = 15, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4690), 1, - anon_sym_CARET, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [296489] = 3, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4674), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 16, - sym__newline, + sym_line_continuation, + ACTIONS(3235), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3233), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [289341] = 7, - ACTIONS(2863), 1, - anon_sym_LF, - ACTIONS(4896), 1, - anon_sym_not, - ACTIONS(4899), 1, - anon_sym_is, - STATE(4061), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + anon_sym_QMARK_LBRACK, + [296532] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4893), 7, - anon_sym_in, + ACTIONS(3239), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2861), 23, + ACTIONS(3237), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_RBRACK, + 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, @@ -297419,36 +305660,38 @@ 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, - [289392] = 6, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4796), 1, - anon_sym_PLUS, + [296575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 4, + ACTIONS(3243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 26, - sym__newline, + ACTIONS(3241), 30, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -297463,16 +305706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289441] = 3, + [296618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 4, + ACTIONS(3247), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3171), 30, + ACTIONS(3245), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -297503,97 +305746,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289484] = 14, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [296661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4674), 2, + ACTIONS(3251), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 17, - sym__newline, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3249), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [289549] = 13, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4698), 1, anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [296704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4674), 2, + ACTIONS(3193), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, - sym__newline, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3191), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, @@ -297604,11 +305825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [289612] = 3, + anon_sym_QMARK_LBRACK, + [296747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4904), 12, + ACTIONS(4698), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -297621,7 +305843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4902), 22, + ACTIONS(4700), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -297644,11 +305866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [289655] = 3, + [296790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4908), 12, + ACTIONS(4716), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -297661,7 +305883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(4906), 22, + ACTIONS(4718), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -297684,35 +305906,73 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [289698] = 5, + [296833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4910), 2, - anon_sym_DOT, + ACTIONS(4290), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(4068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2540), 4, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4292), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + 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_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [296876] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2035), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2545), 26, + ACTIONS(2033), 28, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -297726,25 +305986,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289745] = 3, + [296919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 4, + ACTIONS(1975), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3175), 30, + ACTIONS(1973), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, @@ -297752,7 +306013,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, @@ -297766,25 +306026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289788] = 3, + [296962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 4, + ACTIONS(2156), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3179), 30, + ACTIONS(2154), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, @@ -297792,7 +306053,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, @@ -297806,37 +306066,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289831] = 8, - ACTIONS(4658), 1, - anon_sym_if, - ACTIONS(4660), 1, - anon_sym_and, - ACTIONS(4662), 1, - anon_sym_PLUS, + [297005] = 5, + ACTIONS(5011), 1, + anon_sym_in, + ACTIONS(5015), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 6, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2469), 19, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_RBRACK, anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -297851,65 +306108,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289884] = 3, + [297052] = 4, + STATE(4179), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 12, - sym__dedent, - sym_string_start, + ACTIONS(2600), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2598), 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_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(4913), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [289927] = 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, + [297097] = 4, + STATE(4104), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 4, + ACTIONS(2298), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3299), 30, + ACTIONS(2300), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -297931,115 +306190,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [289970] = 3, - ACTIONS(3), 2, + [297142] = 3, + ACTIONS(2007), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4919), 12, - sym__dedent, - sym_string_start, + ACTIONS(2009), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4917), 22, - anon_sym_import, + 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, + [297185] = 4, + ACTIONS(201), 1, + anon_sym_LF, + STATE(4787), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 32, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290013] = 3, - ACTIONS(3), 2, + 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, + [297230] = 3, + ACTIONS(2791), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4904), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(2793), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4902), 22, - anon_sym_import, + 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, + [297273] = 3, + ACTIONS(2797), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2799), 33, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290056] = 5, - STATE(4076), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + 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, + [297316] = 3, + ACTIONS(2809), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4921), 2, + ACTIONS(2811), 33, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2550), 5, + 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, - ACTIONS(2555), 26, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297359] = 3, + ACTIONS(2813), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2815), 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, @@ -298047,19 +306423,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, - [290103] = 3, - ACTIONS(2896), 1, + [297402] = 3, + ACTIONS(2817), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 33, + ACTIONS(2819), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -298093,26 +306471,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [290146] = 3, - ACTIONS(3), 2, + [297445] = 3, + ACTIONS(3075), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 4, + ACTIONS(3073), 33, + 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_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(3183), 30, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297488] = 3, + ACTIONS(2821), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2823), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, anon_sym_not, @@ -298120,6 +306535,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, @@ -298127,49 +306543,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [290189] = 8, - ACTIONS(4927), 1, + [297531] = 7, + ACTIONS(2839), 1, + anon_sym_LF, + ACTIONS(5020), 1, anon_sym_not, - ACTIONS(4933), 1, + ACTIONS(5023), 1, anon_sym_is, - STATE(4079), 1, + STATE(4189), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4930), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2861), 3, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(4924), 5, + ACTIONS(5017), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2863), 21, + anon_sym_GT, + ACTIONS(2841), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_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, @@ -298178,66 +306595,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK_LBRACK, - [290242] = 3, - ACTIONS(3), 2, + [297582] = 3, + ACTIONS(2825), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4938), 12, - sym__dedent, - sym_string_start, + ACTIONS(2827), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4936), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290285] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3189), 4, - anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(3187), 30, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297625] = 4, + ACTIONS(2554), 1, + anon_sym_LF, + ACTIONS(4772), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2556), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -298245,6 +306660,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, @@ -298252,34 +306668,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, - [290328] = 5, - ACTIONS(4940), 1, - anon_sym_LBRACE, - STATE(4406), 1, - sym_dictionary, - ACTIONS(3), 2, + [297670] = 4, + ACTIONS(2758), 1, + anon_sym_LF, + STATE(3892), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2760), 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, @@ -298287,6 +306701,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, @@ -298294,117 +306709,71 @@ 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, - [290375] = 3, - ACTIONS(3), 2, + [297715] = 3, + ACTIONS(3123), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4908), 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(4906), 22, - anon_sym_import, + ACTIONS(3121), 33, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290418] = 6, - ACTIONS(1305), 1, + anon_sym_as, anon_sym_if, - ACTIONS(4770), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2532), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, - sym_string_start, 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_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_for, - anon_sym_else, - 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, - [290467] = 5, - ACTIONS(4942), 1, - anon_sym_EQ, - STATE(3999), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2560), 4, - anon_sym_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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2562), 28, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297758] = 3, + ACTIONS(2807), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2805), 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, @@ -298412,6 +306781,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, @@ -298419,72 +306789,71 @@ 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, - [290514] = 3, - ACTIONS(3), 2, + [297801] = 3, + ACTIONS(2803), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4946), 12, - sym__dedent, - sym_string_start, + ACTIONS(2801), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4944), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290557] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3193), 4, - anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(3191), 30, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297844] = 3, + ACTIONS(3171), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3173), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, anon_sym_not, @@ -298492,6 +306861,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, @@ -298499,164 +306869,148 @@ 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, - [290600] = 21, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4712), 1, + [297887] = 3, + ACTIONS(2778), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2776), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4714), 1, anon_sym_LBRACK, - ACTIONS(4720), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4722), 1, anon_sym_QMARK_DOT, - ACTIONS(4730), 1, + 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, - ACTIONS(4732), 1, anon_sym_AMP, - ACTIONS(4734), 1, anon_sym_CARET, - ACTIONS(4742), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [297930] = 3, + ACTIONS(3195), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2524), 2, + ACTIONS(3197), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4718), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4726), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4728), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4736), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [290679] = 3, - ACTIONS(3), 2, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297973] = 3, + ACTIONS(2774), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4950), 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(4948), 22, - anon_sym_import, + ACTIONS(2772), 33, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290722] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4952), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4954), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290765] = 3, - ACTIONS(2900), 1, + 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, + [298016] = 3, + ACTIONS(3211), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 33, + ACTIONS(3213), 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, @@ -298683,65 +307037,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [290808] = 5, - ACTIONS(1305), 1, + [298059] = 8, + ACTIONS(5002), 1, anon_sym_if, + ACTIONS(5004), 1, + anon_sym_and, + ACTIONS(5006), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym_string_start, + ACTIONS(2244), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2278), 21, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 18, + anon_sym_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, + [298112] = 4, + STATE(3985), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2770), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2768), 29, + sym__newline, anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_for, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [290855] = 3, - ACTIONS(2940), 1, - anon_sym_LF, - ACTIONS(5), 2, + 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, + [298157] = 4, + STATE(3985), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 33, + ACTIONS(2770), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2768), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -298749,7 +307151,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, @@ -298757,33 +307158,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, - [290898] = 3, + [298202] = 4, + STATE(3985), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 4, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3295), 30, + ACTIONS(2768), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -298805,25 +307205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [290941] = 3, + [298247] = 4, + STATE(3985), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 4, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3291), 30, + ACTIONS(2768), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -298845,39 +307246,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [290984] = 3, + [298292] = 10, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(576), 1, + anon_sym_QMARK_DOT, + ACTIONS(1347), 1, + anon_sym_if, + ACTIONS(5026), 1, + anon_sym_and, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5030), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4952), 12, - sym__dedent, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 11, sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4954), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + ACTIONS(2059), 15, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, sym_integer, sym_identifier, @@ -298885,56 +307293,59 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [291027] = 3, + [298349] = 6, + ACTIONS(1347), 1, + anon_sym_if, + ACTIONS(5030), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4950), 12, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 12, sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4948), 22, - anon_sym_import, + ACTIONS(2242), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291070] = 5, - ACTIONS(1305), 1, + [298398] = 5, + ACTIONS(1347), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, + STATE(2716), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, + ACTIONS(2266), 13, sym_string_start, anon_sym_COMMA, anon_sym_COLON, @@ -298948,7 +307359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 18, + ACTIONS(2264), 18, anon_sym_DOT, anon_sym_as, anon_sym_for, @@ -298967,265 +307378,325 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [291117] = 3, + [298445] = 6, + ACTIONS(1347), 1, + anon_sym_if, + ACTIONS(5030), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4889), 12, - sym__dedent, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4891), 22, - anon_sym_import, + ACTIONS(2256), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291160] = 3, + [298494] = 5, + ACTIONS(1347), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4946), 12, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4944), 22, - anon_sym_import, + ACTIONS(2252), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291203] = 3, + [298541] = 5, + ACTIONS(1347), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4826), 12, - sym__dedent, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4828), 22, - anon_sym_import, + ACTIONS(2252), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291246] = 3, + [298588] = 5, + ACTIONS(1347), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4840), 12, - sym__dedent, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 13, sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4842), 22, - anon_sym_import, + ACTIONS(2236), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291289] = 3, + [298635] = 8, + ACTIONS(5035), 1, + anon_sym_not, + ACTIONS(5041), 1, + anon_sym_is, + STATE(4213), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4885), 12, - sym__dedent, + ACTIONS(5038), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2841), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(5032), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 21, + 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_QMARK_LBRACK, + [298688] = 5, + ACTIONS(1347), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 13, sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4887), 22, - anon_sym_import, + ACTIONS(129), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291332] = 3, + [298735] = 5, + ACTIONS(1347), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4881), 12, - sym__dedent, + STATE(2716), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 13, sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, 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(4883), 22, - anon_sym_import, + ACTIONS(2400), 18, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, + anon_sym_as, + anon_sym_for, + 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_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [291375] = 3, + [298782] = 4, + STATE(3555), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 4, + ACTIONS(197), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3287), 30, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, 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_QMARK_DOT, @@ -299233,7 +307704,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, @@ -299247,150 +307717,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [291418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3281), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3283), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, + [298827] = 17, + ACTIONS(4961), 1, anon_sym_LPAREN, + ACTIONS(4963), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + ACTIONS(4969), 1, anon_sym_STAR_STAR, + ACTIONS(4971), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4979), 1, anon_sym_PIPE, + ACTIONS(4981), 1, anon_sym_AMP, + ACTIONS(4983), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(4991), 1, anon_sym_QMARK_LBRACK, - [291461] = 3, + STATE(4263), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2386), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3279), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4977), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4985), 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, - [291504] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4938), 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(4936), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [291547] = 10, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_LBRACK, - ACTIONS(4720), 1, - anon_sym_STAR_STAR, - ACTIONS(4722), 1, - anon_sym_QMARK_DOT, - ACTIONS(4742), 1, - anon_sym_QMARK_LBRACK, - STATE(4218), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2574), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2576), 23, + ACTIONS(2458), 14, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -299400,89 +307766,42 @@ 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, - [291604] = 4, - ACTIONS(4956), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2526), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2528), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, + [298898] = 7, + ACTIONS(5002), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + ACTIONS(5004), 1, anon_sym_and, - anon_sym_or, + ACTIONS(5006), 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, - [291649] = 4, - STATE(3549), 1, - sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 5, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(2244), 25, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -299496,34 +307815,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [291694] = 4, - STATE(3776), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [298949] = 4, + ACTIONS(2768), 1, + anon_sym_LF, + STATE(4189), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2914), 28, + ACTIONS(2770), 32, 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, @@ -299531,33 +307848,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, - [291739] = 4, - STATE(3963), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [298994] = 4, + ACTIONS(2768), 1, + anon_sym_LF, + STATE(4189), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2568), 28, - sym__newline, + ACTIONS(2770), 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, @@ -299565,6 +307881,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, @@ -299572,26 +307889,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, - [291784] = 3, - ACTIONS(3167), 1, + [299039] = 4, + ACTIONS(2768), 1, anon_sym_LF, + STATE(4189), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 33, + ACTIONS(2770), 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, @@ -299618,273 +307938,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [291827] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4844), 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(4846), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [291870] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4848), 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(4850), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [291913] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4854), 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(4856), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [291956] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 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(4913), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [291999] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4862), 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(4864), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + [299084] = 8, + ACTIONS(4405), 1, anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [292042] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4919), 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(4458), 1, + anon_sym_and, + ACTIONS(5044), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(4917), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_rule, - 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_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [292085] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4068), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2570), 4, + ACTIONS(2276), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 28, + ACTIONS(2244), 7, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2278), 18, 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, @@ -299899,26 +307983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292130] = 3, - ACTIONS(3), 2, + [299137] = 4, + ACTIONS(2768), 1, + anon_sym_LF, + STATE(4189), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3255), 30, + ACTIONS(2770), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -299926,6 +308008,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, @@ -299933,44 +308016,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, - [292173] = 9, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_PLUS, - ACTIONS(4958), 1, - anon_sym_or, + [299182] = 4, + STATE(4829), 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(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2357), 22, + ACTIONS(201), 29, sym__newline, + anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -299985,25 +308065,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292228] = 3, + [299227] = 5, + ACTIONS(5002), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 4, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3275), 30, + ACTIONS(2402), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -300025,138 +308107,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292271] = 21, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4688), 1, - anon_sym_AMP, - ACTIONS(4690), 1, - anon_sym_CARET, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [299274] = 5, + ACTIONS(5002), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2503), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(4674), 2, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [292350] = 21, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4668), 1, - anon_sym_LPAREN, - ACTIONS(4670), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_STAR_STAR, - ACTIONS(4678), 1, - anon_sym_QMARK_DOT, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4688), 1, - anon_sym_AMP, - ACTIONS(4690), 1, - anon_sym_CARET, - ACTIONS(4698), 1, - anon_sym_QMARK_LBRACK, - STATE(4191), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2491), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(2493), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4674), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4684), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [292429] = 3, - ACTIONS(3125), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3127), 32, + ACTIONS(133), 27, 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, @@ -300164,7 +308136,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, @@ -300172,82 +308143,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, - [292471] = 8, - ACTIONS(4963), 1, + [299321] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4396), 1, anon_sym_not, - ACTIONS(4969), 1, - anon_sym_is, - STATE(4128), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2861), 2, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4966), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4960), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 21, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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, - [292523] = 3, - ACTIONS(3183), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3185), 32, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACK, 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, @@ -300255,30 +308185,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, - [292565] = 3, - ACTIONS(3299), 1, - anon_sym_LF, - ACTIONS(5), 2, + [299368] = 5, + ACTIONS(5002), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 32, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 27, 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, @@ -300286,7 +308220,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, @@ -300294,28 +308227,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, - [292607] = 3, + [299415] = 5, + ACTIONS(5002), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 5, - anon_sym_EQ, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2930), 28, + ACTIONS(2254), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -300341,22 +308275,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292649] = 3, - ACTIONS(3187), 1, - anon_sym_LF, - ACTIONS(5), 2, + [299462] = 5, + ACTIONS(5002), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 32, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2254), 27, 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, @@ -300364,7 +308304,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, @@ -300372,28 +308311,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, - [292691] = 3, + [299509] = 6, + ACTIONS(5002), 1, + anon_sym_if, + ACTIONS(5006), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 5, - anon_sym_EQ, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2936), 28, + ACTIONS(2258), 26, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -300404,7 +308346,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, @@ -300419,20 +308360,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292733] = 3, + [299558] = 5, + ACTIONS(5002), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 5, - anon_sym_EQ, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2940), 28, + ACTIONS(2266), 27, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -300458,20 +308402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292775] = 3, + [299605] = 6, + ACTIONS(5002), 1, + anon_sym_if, + ACTIONS(5006), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 5, - anon_sym_EQ, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2944), 28, + ACTIONS(2244), 26, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -300482,7 +308431,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, @@ -300497,23 +308445,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292817] = 3, + [299654] = 4, + STATE(4240), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 6, + ACTIONS(2194), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 27, + ACTIONS(2192), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -300521,7 +308471,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, @@ -300536,22 +308486,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292859] = 3, - ACTIONS(3191), 1, - anon_sym_LF, - ACTIONS(5), 2, + [299699] = 4, + STATE(4240), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 32, + ACTIONS(2222), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2220), 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, @@ -300559,7 +308514,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, @@ -300567,24 +308521,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, - [292901] = 3, + [299744] = 4, + ACTIONS(5046), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 4, + ACTIONS(2156), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3073), 29, + ACTIONS(2154), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -300592,7 +308548,6 @@ 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, @@ -300600,7 +308555,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, @@ -300614,24 +308568,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292943] = 4, - STATE(4706), 1, - aux_sym_comparison_operator_repeat1, + [299789] = 4, + STATE(4240), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(2156), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, - sym__newline, + ACTIONS(2154), 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, @@ -300654,18 +308609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [292987] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, + [299834] = 4, + STATE(4240), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(1956), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(1954), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -300694,30 +308650,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293031] = 3, - ACTIONS(3079), 1, - anon_sym_LF, - ACTIONS(5), 2, + [299879] = 4, + ACTIONS(5048), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 32, + ACTIONS(1975), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1973), 27, 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, @@ -300725,42 +308685,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, - [293073] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4972), 1, - anon_sym_not, + [299924] = 4, + STATE(3974), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 5, + ACTIONS(2390), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(2392), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -300774,30 +308732,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293119] = 3, - ACTIONS(3043), 1, - anon_sym_LF, - ACTIONS(5), 2, + [299969] = 4, + ACTIONS(5050), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 32, + ACTIONS(2035), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2033), 27, 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, @@ -300805,33 +308767,136 @@ 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, + [300014] = 20, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_LBRACK, + ACTIONS(4969), 1, + anon_sym_STAR_STAR, + ACTIONS(4971), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_not, + ACTIONS(4979), 1, + anon_sym_PIPE, + ACTIONS(4981), 1, + anon_sym_AMP, + ACTIONS(4983), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_is, + ACTIONS(4991), 1, + anon_sym_QMARK_LBRACK, + STATE(4263), 1, + sym_argument_list, + STATE(4284), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4975), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4987), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(4965), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + ACTIONS(2356), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [300091] = 9, + ACTIONS(5002), 1, + anon_sym_if, + ACTIONS(5004), 1, + anon_sym_and, + ACTIONS(5006), 1, + anon_sym_PLUS, + ACTIONS(5052), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(760), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, + ACTIONS(2057), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, - [293161] = 4, - STATE(4128), 1, - aux_sym_comparison_operator_repeat1, + [300146] = 4, + ACTIONS(4753), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2556), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, - sym__newline, + ACTIONS(2554), 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, @@ -300839,7 +308904,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, @@ -300853,13 +308917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293205] = 3, - ACTIONS(3051), 1, + [300191] = 4, + ACTIONS(201), 1, anon_sym_LF, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 32, + ACTIONS(197), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -300892,23 +308958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [293247] = 3, + [300236] = 4, + STATE(4790), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 4, + ACTIONS(197), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3149), 29, - sym__newline, + ACTIONS(201), 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, @@ -300917,7 +308986,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, @@ -300931,25 +308999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293289] = 4, - STATE(4128), 1, + [300281] = 4, + STATE(4213), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2770), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, - sym__newline, + ACTIONS(2768), 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, @@ -300957,7 +309027,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, @@ -300971,23 +309040,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293333] = 3, + [300326] = 4, + STATE(4213), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 4, + ACTIONS(2770), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3113), 29, + ACTIONS(2768), 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, @@ -300996,7 +309068,47 @@ static const uint16_t ts_small_parse_table[] = { 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, + [300371] = 4, + STATE(4213), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2770), 5, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2768), 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, @@ -301010,23 +309122,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293375] = 4, - STATE(4128), 1, + [300416] = 4, + STATE(4204), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(201), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -301050,25 +309163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293419] = 4, - STATE(4201), 1, + [300461] = 4, + STATE(4213), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2770), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(2768), 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, @@ -301076,7 +309191,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, @@ -301090,13 +309204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293463] = 3, - ACTIONS(3287), 1, + [300506] = 4, + ACTIONS(201), 1, anon_sym_LF, + STATE(4223), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 32, + ACTIONS(197), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -301129,13 +309245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [293505] = 3, - ACTIONS(3055), 1, + [300551] = 3, + ACTIONS(3179), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 32, + ACTIONS(3181), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -301168,22 +309284,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [293547] = 3, + [300593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 5, - anon_sym_EQ, + ACTIONS(3221), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2900), 28, + ACTIONS(3219), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -301207,23 +309323,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293589] = 3, + [300635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 5, + ACTIONS(2793), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2924), 28, - sym__newline, + ACTIONS(2791), 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, @@ -301246,30 +309362,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [293631] = 3, - ACTIONS(3291), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300677] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(5054), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 32, + ACTIONS(197), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 26, 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_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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -301277,30 +309397,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, - [293673] = 3, - ACTIONS(3095), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300723] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 32, + ACTIONS(197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -301308,7 +309429,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, @@ -301316,30 +309436,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, - [293715] = 3, - ACTIONS(3063), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300765] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 32, + ACTIONS(2799), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2797), 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, @@ -301347,7 +309468,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, @@ -301355,30 +309475,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, - [293757] = 3, - ACTIONS(3175), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300807] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 32, + ACTIONS(2310), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2356), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -301386,7 +309507,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, @@ -301394,30 +309514,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, - [293799] = 3, - ACTIONS(3067), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300849] = 4, + STATE(4804), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 32, + ACTIONS(197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 28, + sym__newline, 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, @@ -301425,7 +309547,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, @@ -301433,30 +309554,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, - [293841] = 3, - ACTIONS(221), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300893] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 32, + ACTIONS(197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -301464,7 +309586,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, @@ -301472,30 +309593,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, - [293883] = 3, - ACTIONS(3171), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300935] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 32, + ACTIONS(3289), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3287), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -301503,7 +309625,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, @@ -301511,30 +309632,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, - [293925] = 3, - ACTIONS(3157), 1, - anon_sym_LF, - ACTIONS(5), 2, + [300977] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 32, + ACTIONS(3073), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 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, @@ -301542,7 +309664,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, @@ -301550,30 +309671,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, - [293967] = 3, - ACTIONS(3283), 1, - anon_sym_LF, - ACTIONS(5), 2, + [301019] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 32, + ACTIONS(2823), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2821), 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, @@ -301581,7 +309703,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, @@ -301589,40 +309710,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, - [294009] = 5, - ACTIONS(221), 1, - anon_sym_LF, - ACTIONS(3195), 1, - anon_sym_in, - ACTIONS(3197), 1, - anon_sym_not, - ACTIONS(5), 2, + [301061] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 30, + ACTIONS(3033), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3035), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, 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, @@ -301630,31 +309749,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, - [294055] = 4, - STATE(4128), 1, - aux_sym_comparison_operator_repeat1, + [301103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(3037), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(3039), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -301678,22 +309794,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294099] = 3, - ACTIONS(3153), 1, - anon_sym_LF, - ACTIONS(5), 2, + [301145] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 32, + ACTIONS(2772), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2774), 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, @@ -301701,7 +309820,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, @@ -301709,38 +309827,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, - [294141] = 3, - ACTIONS(3129), 1, - anon_sym_LF, - ACTIONS(5), 2, + [301187] = 5, + ACTIONS(5056), 1, + anon_sym_in, + ACTIONS(5058), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 32, + ACTIONS(197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -301748,25 +309868,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, - [294183] = 3, + [301233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 5, + ACTIONS(2009), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 28, + ACTIONS(2007), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -301795,23 +309913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294225] = 3, + [301275] = 4, + ACTIONS(4997), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2885), 5, - anon_sym_EQ, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2887), 28, - sym__newline, + ACTIONS(2554), 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, @@ -301834,22 +309953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294267] = 3, - ACTIONS(3279), 1, - anon_sym_LF, - ACTIONS(5), 2, + [301319] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 32, + ACTIONS(2776), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2778), 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, @@ -301857,7 +309979,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, @@ -301865,21 +309986,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, - [294309] = 3, - ACTIONS(3129), 1, + [301361] = 5, + ACTIONS(201), 1, anon_sym_LF, + ACTIONS(3029), 1, + anon_sym_in, + ACTIONS(3031), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 32, + ACTIONS(197), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -301887,11 +310010,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, @@ -301912,28 +310033,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [294351] = 3, + [301407] = 5, + ACTIONS(1383), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2402), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + 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_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301453] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4396), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 5, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2930), 28, + ACTIONS(201), 27, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -301951,57 +310115,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294393] = 4, - STATE(4201), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [301499] = 5, + ACTIONS(1383), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(133), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, 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, - [294437] = 3, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301545] = 4, + STATE(4829), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 5, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 28, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302030,176 +310196,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294479] = 3, - ACTIONS(3057), 1, - anon_sym_LF, + [301589] = 9, + ACTIONS(1383), 1, + anon_sym_if, + ACTIONS(5060), 1, + anon_sym_and, + ACTIONS(5062), 1, + anon_sym_or, + ACTIONS(5064), 1, + anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 32, + ACTIONS(732), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2057), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 23, anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301643] = 5, + ACTIONS(1383), 1, anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2238), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2236), 28, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, 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, - [294521] = 3, - ACTIONS(3), 2, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301689] = 5, + ACTIONS(1383), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3151), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3149), 29, + ACTIONS(2254), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 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_lambda, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, 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, - [294563] = 4, - STATE(4201), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301735] = 5, + ACTIONS(1383), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(2254), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 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_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, 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, - [294607] = 3, - ACTIONS(3), 2, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301781] = 6, + ACTIONS(1383), 1, + anon_sym_if, + ACTIONS(5064), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2952), 28, - sym__newline, + ACTIONS(2258), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 27, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301829] = 5, + ACTIONS(1383), 1, anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2266), 2, + sym_string_start, + anon_sym_LF, + STATE(2804), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 28, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_lambda, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, 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, - [294649] = 5, - ACTIONS(1335), 1, + anon_sym_TILDE, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301875] = 6, + ACTIONS(1383), 1, anon_sym_if, + ACTIONS(5064), 1, + anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2439), 2, + ACTIONS(2244), 2, sym_string_start, anon_sym_LF, - STATE(2754), 2, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2441), 28, + ACTIONS(2242), 27, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -302217,7 +310479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, @@ -302228,17 +310489,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [294695] = 3, + [301923] = 4, + STATE(4289), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 5, - anon_sym_EQ, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2924), 28, + ACTIONS(2768), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302267,17 +310529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294737] = 3, + [301967] = 4, + STATE(4289), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 5, - anon_sym_EQ, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2948), 28, + ACTIONS(2768), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302306,24 +310569,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294779] = 3, + [302011] = 4, + STATE(4289), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3115), 4, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3113), 29, - sym__newline, + ACTIONS(2768), 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_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -302345,22 +310609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [294821] = 3, - ACTIONS(3045), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302055] = 4, + STATE(4289), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 32, + ACTIONS(2770), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2768), 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, @@ -302368,7 +310636,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, @@ -302376,30 +310643,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, - [294863] = 3, - ACTIONS(3275), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302099] = 4, + STATE(4240), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 32, + ACTIONS(2760), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2758), 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, @@ -302407,7 +310676,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, @@ -302415,25 +310683,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, - [294905] = 3, + [302143] = 8, + ACTIONS(5069), 1, + anon_sym_not, + ACTIONS(5075), 1, + anon_sym_is, + STATE(4289), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2950), 5, - anon_sym_EQ, + ACTIONS(2841), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5072), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2952), 28, + ACTIONS(5066), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302441,10 +310719,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, @@ -302456,28 +310732,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, - [294947] = 3, - ACTIONS(3045), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302195] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 32, + ACTIONS(3121), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3123), 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, @@ -302485,7 +310759,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, @@ -302493,42 +310766,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, - [294989] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4974), 1, - anon_sym_not, + [302237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 5, + ACTIONS(2811), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(2809), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -302542,18 +310811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295035] = 4, - ACTIONS(4942), 1, - anon_sym_EQ, + [302279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(2801), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 28, + ACTIONS(2803), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302582,22 +310850,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295079] = 3, - ACTIONS(3069), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302321] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 32, + ACTIONS(2805), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2807), 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, @@ -302605,7 +310876,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, @@ -302613,26 +310883,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, - [295121] = 4, - STATE(3999), 1, - aux_sym_union_type_repeat1, + [302363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 4, + ACTIONS(2827), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2914), 28, + ACTIONS(2825), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302661,24 +310928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295165] = 3, + [302405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 4, + ACTIONS(3043), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3305), 29, + ACTIONS(3045), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -302700,22 +310967,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295207] = 3, - ACTIONS(2367), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302447] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 32, + ACTIONS(2819), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2817), 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, @@ -302723,7 +310993,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, @@ -302731,31 +311000,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, - [295249] = 3, + [302489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 5, + ACTIONS(2815), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2883), 28, - sym__newline, + ACTIONS(2813), 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, @@ -302778,30 +311045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295291] = 3, - ACTIONS(3237), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302531] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 32, + ACTIONS(197), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 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, @@ -302809,30 +311078,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, - [295333] = 3, - ACTIONS(3233), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302573] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 32, + ACTIONS(3251), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3249), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -302840,7 +311110,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, @@ -302848,32 +311117,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, - [295375] = 4, - STATE(4201), 1, - aux_sym_comparison_operator_repeat1, + [302615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(3247), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 28, + ACTIONS(3245), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -302896,68 +311162,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295419] = 10, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(836), 1, - anon_sym_if, - ACTIONS(4413), 1, - anon_sym_and, - ACTIONS(4976), 1, - anon_sym_or, - ACTIONS(4978), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 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(2355), 14, - anon_sym_as, - anon_sym_else, - 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, - [295475] = 3, + [302657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2550), 5, - anon_sym_EQ, + ACTIONS(3243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2555), 28, + ACTIONS(3241), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -302981,17 +311201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295517] = 3, + [302699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 5, - anon_sym_EQ, + ACTIONS(3173), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2896), 28, + ACTIONS(3171), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -302999,6 +311218,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, @@ -303020,23 +311240,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295559] = 3, + [302741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 5, - anon_sym_EQ, + ACTIONS(3239), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2900), 28, + ACTIONS(3237), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -303059,38 +311279,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295601] = 8, - ACTIONS(4983), 1, - anon_sym_not, - ACTIONS(4989), 1, - anon_sym_is, - STATE(4201), 1, - aux_sym_comparison_operator_repeat1, + [302783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2861), 2, + ACTIONS(3235), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4986), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4980), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 21, + ACTIONS(3233), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303102,37 +311312,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [295653] = 8, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4444), 1, - anon_sym_and, - ACTIONS(4992), 1, - anon_sym_PLUS, + [302825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2467), 4, + ACTIONS(3231), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 6, + ACTIONS(3229), 29, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2469), 18, 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, @@ -303147,22 +311357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [295705] = 3, - ACTIONS(3135), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302867] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 32, + ACTIONS(3053), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303170,7 +311383,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, @@ -303178,122 +311390,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, - [295747] = 6, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(4994), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2443), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_QMARK_DOT, + [302909] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(5078), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [295795] = 6, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(4994), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2447), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DQUOTE, + ACTIONS(197), 5, + anon_sym_STAR, anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [295843] = 3, - ACTIONS(3295), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3293), 32, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 26, 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_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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -303301,30 +311431,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, - [295885] = 3, - ACTIONS(3141), 1, - anon_sym_LF, - ACTIONS(5), 2, + [302955] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 32, + ACTIONS(3227), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3225), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303332,7 +311463,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, @@ -303340,40 +311470,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, - [295927] = 5, - ACTIONS(221), 1, - anon_sym_LF, - ACTIONS(4996), 1, - anon_sym_in, - ACTIONS(4998), 1, - anon_sym_not, - ACTIONS(5), 2, + [302997] = 4, + STATE(4796), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 30, + ACTIONS(197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 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, @@ -303381,66 +311510,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, - [295973] = 6, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(4994), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [303041] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 27, + ACTIONS(3197), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3195), 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_lambda, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DQUOTE, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [296021] = 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, + [303083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 4, + ACTIONS(3213), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3167), 29, + ACTIONS(3211), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -303470,22 +311594,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296063] = 3, + [303125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2894), 5, - anon_sym_EQ, + ACTIONS(3217), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2896), 28, + ACTIONS(3215), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -303509,22 +311633,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296105] = 3, - ACTIONS(3109), 1, - anon_sym_LF, - ACTIONS(5), 2, + [303167] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 32, + ACTIONS(3217), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3215), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303532,7 +311659,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, @@ -303540,73 +311666,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, - [296147] = 5, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(189), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [296193] = 4, - STATE(4702), 1, - aux_sym_comparison_operator_repeat1, + [303209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3077), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(3079), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -303629,22 +311711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296237] = 3, - ACTIONS(3179), 1, - anon_sym_LF, - ACTIONS(5), 2, + [303251] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 32, + ACTIONS(3209), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3207), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303652,7 +311737,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, @@ -303660,30 +311744,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, - [296279] = 3, - ACTIONS(3161), 1, - anon_sym_LF, - ACTIONS(5), 2, + [303293] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 32, + ACTIONS(3081), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3083), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303691,7 +311776,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, @@ -303699,30 +311783,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, - [296321] = 3, + [303335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2946), 5, - anon_sym_EQ, + ACTIONS(3087), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2948), 28, + ACTIONS(3089), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -303746,24 +311828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296363] = 3, + [303377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 4, + ACTIONS(3205), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3305), 29, + ACTIONS(3203), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -303785,63 +311867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296405] = 5, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2451), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2453), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [296451] = 3, - ACTIONS(3201), 1, - anon_sym_LF, - ACTIONS(5), 2, + [303419] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 32, + ACTIONS(3205), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3203), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303849,7 +311893,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, @@ -303857,30 +311900,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, - [296493] = 3, - ACTIONS(3137), 1, - anon_sym_LF, - ACTIONS(5), 2, + [303461] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 32, + ACTIONS(3091), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3093), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -303888,7 +311932,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, @@ -303896,70 +311939,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, - [296535] = 9, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(4994), 1, - anon_sym_PLUS, - ACTIONS(5000), 1, - anon_sym_and, - ACTIONS(5002), 1, - anon_sym_or, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(610), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2357), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [296589] = 3, + [303503] = 4, + STATE(4285), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2881), 5, - anon_sym_EQ, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2883), 28, + ACTIONS(201), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -303988,23 +311985,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296631] = 4, - STATE(4147), 1, - aux_sym_comparison_operator_repeat1, + [303547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3201), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(3199), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -304028,22 +312024,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296675] = 3, - ACTIONS(3145), 1, - anon_sym_LF, - ACTIONS(5), 2, + [303589] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 32, + ACTIONS(3095), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3097), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -304051,7 +312050,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, @@ -304059,31 +312057,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, - [296717] = 4, - ACTIONS(4860), 1, - anon_sym_EQ, + [303631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(3099), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 28, + ACTIONS(3101), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -304107,99 +312102,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [296761] = 5, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(5), 2, + [303673] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 28, + ACTIONS(3193), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3191), 29, + sym__newline, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [296807] = 5, - ACTIONS(1335), 1, anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2463), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 28, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, - anon_sym_else, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [296853] = 5, - ACTIONS(221), 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, + [303715] = 5, + ACTIONS(201), 1, anon_sym_LF, - ACTIONS(4996), 1, + ACTIONS(5080), 1, anon_sym_in, - ACTIONS(5004), 1, + ACTIONS(5082), 1, anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 30, + ACTIONS(197), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -304230,26 +312182,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [296899] = 4, - STATE(4733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [303761] = 3, + ACTIONS(2356), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, - sym__newline, + ACTIONS(2310), 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, @@ -304257,6 +312205,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, @@ -304264,19 +312213,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, - [296943] = 3, - ACTIONS(3079), 1, + [303803] = 3, + ACTIONS(3287), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 32, + ACTIONS(3289), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -304309,22 +312260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [296985] = 3, + [303845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2934), 5, - anon_sym_EQ, + ACTIONS(3189), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2936), 28, + ACTIONS(3187), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -304348,13 +312299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [297027] = 3, - ACTIONS(3255), 1, + [303887] = 3, + ACTIONS(3105), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 32, + ACTIONS(3103), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -304387,13 +312338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [297069] = 3, - ACTIONS(3257), 1, + [303929] = 3, + ACTIONS(3233), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 32, + ACTIONS(3235), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -304426,22 +312377,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [297111] = 3, + [303971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2938), 5, - anon_sym_EQ, + ACTIONS(3177), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2940), 28, + ACTIONS(3175), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -304465,25 +312416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [297153] = 3, - ACTIONS(3), 2, + [304013] = 3, + ACTIONS(3249), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3075), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3073), 29, - sym__newline, + ACTIONS(3251), 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, @@ -304491,6 +312439,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, @@ -304498,28 +312447,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, - [297195] = 3, + [304055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2942), 5, - anon_sym_EQ, + ACTIONS(3107), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2944), 28, + ACTIONS(3109), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -304543,54 +312494,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [297237] = 5, - ACTIONS(1335), 1, - anon_sym_if, - ACTIONS(5), 2, + [304097] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 2, - sym_string_start, - anon_sym_LF, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 28, + ACTIONS(3115), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3117), 29, + sym__newline, anon_sym_DOT, anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_lambda, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + 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_integer, - sym_float, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [297283] = 3, - ACTIONS(221), 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, + [304139] = 3, + ACTIONS(3245), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 32, + ACTIONS(3247), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -304623,24 +312572,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [297325] = 3, + [304181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3165), 4, + ACTIONS(3185), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3167), 29, + ACTIONS(3183), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -304662,26 +312611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [297367] = 4, - STATE(4113), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [304223] = 3, + ACTIONS(201), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2912), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2914), 28, - sym__newline, + ACTIONS(197), 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, @@ -304689,6 +312634,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, @@ -304696,32 +312642,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, - [297411] = 4, - STATE(4177), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [304265] = 3, + ACTIONS(201), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(197), 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, @@ -304729,6 +312673,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, @@ -304736,30 +312681,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, - [297455] = 3, - ACTIONS(3), 2, + [304307] = 3, + ACTIONS(3241), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3255), 28, - sym__newline, + ACTIONS(3243), 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, @@ -304767,6 +312712,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, @@ -304774,210 +312720,110 @@ 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, - [297496] = 14, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [304349] = 3, + ACTIONS(3237), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5010), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 15, + ACTIONS(3239), 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, - [297559] = 10, - ACTIONS(600), 1, - anon_sym_DOT, - ACTIONS(602), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_if, - ACTIONS(5016), 1, - anon_sym_and, - ACTIONS(5018), 1, - anon_sym_or, - ACTIONS(5020), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 9, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 15, - anon_sym_as, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_QMARK_LBRACK, + [304391] = 5, + ACTIONS(201), 1, + anon_sym_LF, + ACTIONS(5080), 1, + anon_sym_in, + ACTIONS(5084), 1, anon_sym_not, - anon_sym_DASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [297614] = 10, - ACTIONS(736), 1, - anon_sym_DOT, - ACTIONS(738), 1, - anon_sym_QMARK_DOT, - ACTIONS(1353), 1, - anon_sym_if, - ACTIONS(5022), 1, - anon_sym_and, - ACTIONS(5024), 1, - anon_sym_or, - ACTIONS(5026), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 10, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 14, + ACTIONS(197), 30, + anon_sym_DOT, anon_sym_as, - anon_sym_else, - 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, - [297669] = 6, - ACTIONS(1353), 1, anon_sym_if, - ACTIONS(5026), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 11, - sym__newline, - sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [297716] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3077), 4, - anon_sym_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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(3079), 28, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [304437] = 3, + ACTIONS(3035), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3033), 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, @@ -304985,6 +312831,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, @@ -304992,35 +312839,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, - [297757] = 5, - ACTIONS(5028), 1, - anon_sym_in, - ACTIONS(5030), 1, - anon_sym_not, + [304479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3181), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(3179), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, 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, @@ -305038,25 +312886,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [297802] = 4, - STATE(4706), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [304521] = 3, + ACTIONS(3039), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 27, - sym__newline, + ACTIONS(3037), 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, @@ -305064,6 +312909,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, @@ -305071,30 +312917,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, - [297845] = 3, - ACTIONS(3), 2, + [304563] = 3, + ACTIONS(3089), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3069), 28, - sym__newline, + ACTIONS(3087), 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, @@ -305102,6 +312948,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, @@ -305109,28 +312956,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, - [297886] = 3, + [304605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 4, + ACTIONS(3169), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3043), 28, + ACTIONS(3167), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -305153,24 +313003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [297927] = 3, - ACTIONS(3), 2, + [304647] = 3, + ACTIONS(3229), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3045), 28, - sym__newline, + ACTIONS(3231), 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, @@ -305178,6 +313026,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, @@ -305185,30 +313034,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, - [297968] = 3, - ACTIONS(3), 2, + [304689] = 3, + ACTIONS(3045), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3045), 28, - sym__newline, + ACTIONS(3043), 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, @@ -305216,6 +313065,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, @@ -305223,71 +313073,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, - [298009] = 6, - ACTIONS(1373), 1, - anon_sym_if, - ACTIONS(5032), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 11, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2445), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [298056] = 3, - ACTIONS(3), 2, + [304731] = 3, + ACTIONS(3225), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3279), 28, + ACTIONS(3227), 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, @@ -305295,6 +313104,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, @@ -305302,42 +313112,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, - [298097] = 8, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(5036), 1, - anon_sym_and, - ACTIONS(5038), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [304773] = 3, + ACTIONS(3219), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 4, + ACTIONS(3221), 32, anon_sym_DOT, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(2467), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2469), 19, + 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, @@ -305345,111 +313151,69 @@ 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, - [298148] = 6, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(5042), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [304815] = 3, + ACTIONS(3215), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 12, - sym_string_start, + ACTIONS(3217), 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2449), 16, - anon_sym_DOT, - anon_sym_as, - 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, - [298195] = 5, - ACTIONS(1373), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2465), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [298240] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(221), 28, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [304857] = 3, + ACTIONS(3215), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3217), 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, @@ -305457,6 +313221,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, @@ -305464,28 +313229,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, - [298281] = 3, + [304899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 4, + ACTIONS(3165), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 28, + ACTIONS(3163), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -305508,61 +313276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [298322] = 5, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 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(2453), 16, - anon_sym_DOT, - anon_sym_as, - 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, - [298367] = 3, + [304941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 4, + ACTIONS(3125), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3095), 28, + ACTIONS(3127), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -305586,107 +313315,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [298408] = 5, - ACTIONS(1359), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 11, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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_DASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [298453] = 10, - ACTIONS(740), 1, - anon_sym_DOT, - ACTIONS(742), 1, - anon_sym_QMARK_DOT, - ACTIONS(1373), 1, - anon_sym_if, - ACTIONS(5032), 1, - anon_sym_PLUS, - ACTIONS(5044), 1, - anon_sym_and, - ACTIONS(5046), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 10, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 14, - anon_sym_as, - anon_sym_else, - 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, - [298508] = 3, + [304983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 4, + ACTIONS(3043), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3135), 28, + ACTIONS(3045), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -305709,62 +313354,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [298549] = 5, - ACTIONS(1373), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(191), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [298594] = 3, + [305025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 4, + ACTIONS(3103), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2367), 28, + ACTIONS(3105), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -305787,65 +313393,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [298635] = 6, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(5042), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 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(2457), 16, - anon_sym_DOT, - anon_sym_as, - 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, - [298682] = 3, - ACTIONS(3), 2, + [305067] = 3, + ACTIONS(3207), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3079), 28, - sym__newline, + ACTIONS(3209), 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, @@ -305853,6 +313416,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, @@ -305860,70 +313424,69 @@ 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, - [298723] = 5, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(3), 2, + [305109] = 3, + ACTIONS(3203), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, - sym_string_start, + ACTIONS(3205), 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 16, - anon_sym_DOT, - anon_sym_as, - 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, - [298768] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3273), 4, - anon_sym_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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(3275), 28, - sym__newline, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305151] = 3, + ACTIONS(3203), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3205), 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, @@ -305931,6 +313494,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, @@ -305938,30 +313502,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, - [298809] = 3, - ACTIONS(3), 2, + [305193] = 3, + ACTIONS(3199), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3063), 28, + ACTIONS(3201), 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, @@ -305969,6 +313533,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, @@ -305976,32 +313541,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, - [298850] = 5, - ACTIONS(5048), 1, - anon_sym_EQ, - STATE(3847), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [305235] = 3, + ACTIONS(3191), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2562), 26, + ACTIONS(3193), 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, @@ -306009,6 +313572,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, @@ -306016,39 +313580,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, - [298895] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4347), 1, - anon_sym_not, - ACTIONS(3), 2, + [305277] = 3, + ACTIONS(3187), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(3189), 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, @@ -306056,30 +313619,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, - [298940] = 3, - ACTIONS(3), 2, + [305319] = 3, + ACTIONS(3183), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3041), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3043), 28, - sym__newline, + ACTIONS(3185), 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, @@ -306087,6 +313650,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, @@ -306094,22 +313658,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, - [298981] = 5, - ACTIONS(5040), 1, + [305361] = 10, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(1086), 1, anon_sym_if, + ACTIONS(4572), 1, + anon_sym_and, + ACTIONS(5086), 1, + anon_sym_or, + ACTIONS(5088), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 13, + ACTIONS(2057), 11, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -306117,47 +313693,41 @@ 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_TILDE, sym_float, - ACTIONS(2461), 16, - anon_sym_DOT, + ACTIONS(2059), 14, anon_sym_as, + anon_sym_else, 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, - [299026] = 3, - ACTIONS(3), 2, + [305417] = 3, + ACTIONS(3175), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 28, + ACTIONS(3177), 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, @@ -306165,6 +313735,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, @@ -306172,30 +313743,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, - [299067] = 3, - ACTIONS(3), 2, + [305459] = 3, + ACTIONS(3055), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3141), 28, - sym__newline, + ACTIONS(3053), 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, @@ -306203,6 +313774,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, @@ -306210,88 +313782,78 @@ 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, - [299108] = 11, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(5042), 1, - anon_sym_PLUS, - ACTIONS(5052), 1, - anon_sym_as, - ACTIONS(5056), 1, - anon_sym_and, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(3), 2, + [305501] = 3, + ACTIONS(3079), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(5054), 11, - sym_string_start, + ACTIONS(3077), 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(5050), 12, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [299165] = 9, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(5036), 1, anon_sym_and, - ACTIONS(5038), 1, - anon_sym_PLUS, - ACTIONS(5060), 1, 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, + [305543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2355), 4, + ACTIONS(3141), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2357), 20, + ACTIONS(3143), 29, + sym__newline, + anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_for, 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, @@ -306306,24 +313868,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [299218] = 3, - ACTIONS(3), 2, + [305585] = 3, + ACTIONS(3167), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3187), 28, + ACTIONS(3169), 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, @@ -306331,6 +313891,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, @@ -306338,85 +313899,69 @@ 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, - [299259] = 20, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - ACTIONS(5062), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_AMP, - ACTIONS(5066), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4408), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [305627] = 3, + ACTIONS(3163), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(3165), 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_SLASH, - ACTIONS(5010), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [299334] = 3, - ACTIONS(3), 2, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305669] = 3, + ACTIONS(3157), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3057), 28, - sym__newline, + ACTIONS(3155), 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, @@ -306424,6 +313969,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, @@ -306431,27 +313977,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, - [299375] = 3, + [305711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, + ACTIONS(3147), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3233), 28, + ACTIONS(3149), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -306475,21 +314024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [299416] = 3, + [305753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 4, + ACTIONS(3151), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3109), 28, + ACTIONS(3153), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -306513,144 +314063,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [299457] = 5, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(3), 2, + [305795] = 3, + ACTIONS(3153), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 13, - sym_string_start, + ACTIONS(3151), 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2465), 16, - anon_sym_DOT, - anon_sym_as, - 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, - [299502] = 5, - ACTIONS(1353), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 17, + 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, + [305837] = 3, + ACTIONS(3149), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 32, anon_sym_DOT, anon_sym_as, - anon_sym_else, - 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, - [299547] = 5, - ACTIONS(1373), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 12, - sym_string_start, 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [299592] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3077), 4, - anon_sym_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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(3079), 28, - sym__newline, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305879] = 3, + ACTIONS(3143), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 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, @@ -306658,6 +314164,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, @@ -306665,126 +314172,116 @@ 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, - [299633] = 10, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, - anon_sym_QMARK_DOT, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(5042), 1, - anon_sym_PLUS, - ACTIONS(5056), 1, - anon_sym_and, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(3), 2, + [305921] = 3, + ACTIONS(3045), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 11, - sym_string_start, + ACTIONS(3043), 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2355), 13, - anon_sym_as, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [299688] = 5, - ACTIONS(1353), 1, - anon_sym_if, - ACTIONS(3), 2, + 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, + [305963] = 3, + ACTIONS(3127), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 12, - sym__newline, - sym_string_start, + ACTIONS(3125), 32, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [299733] = 7, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(5036), 1, - anon_sym_and, - ACTIONS(5038), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, - anon_sym_STAR, + 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(2447), 23, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [306005] = 3, + ACTIONS(3117), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 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, @@ -306792,39 +314289,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, - [299782] = 5, - ACTIONS(4345), 1, - anon_sym_in, - ACTIONS(4347), 1, - anon_sym_not, - ACTIONS(3), 2, + [306047] = 3, + ACTIONS(3109), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 26, - sym__newline, + ACTIONS(3107), 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, @@ -306832,27 +314328,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, - [299827] = 3, + [306089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 4, + ACTIONS(3155), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3125), 28, + ACTIONS(3157), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_for, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -306876,24 +314375,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [299868] = 3, - ACTIONS(3), 2, + [306131] = 3, + ACTIONS(3101), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 28, + ACTIONS(3099), 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, @@ -306901,6 +314398,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, @@ -306908,30 +314406,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, - [299909] = 3, - ACTIONS(3), 2, + [306173] = 3, + ACTIONS(3097), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3201), 28, + ACTIONS(3095), 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, @@ -306939,6 +314437,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, @@ -306946,30 +314445,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, - [299950] = 3, - ACTIONS(3), 2, + [306215] = 3, + ACTIONS(3093), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3141), 28, + ACTIONS(3091), 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, @@ -306977,6 +314476,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, @@ -306984,39 +314484,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, - [299991] = 5, - ACTIONS(5028), 1, - anon_sym_in, - ACTIONS(5068), 1, - anon_sym_not, - ACTIONS(3), 2, + [306257] = 3, + ACTIONS(3083), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(3081), 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, @@ -307024,28 +314523,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, - [300036] = 3, + [306299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 4, + ACTIONS(3193), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3135), 28, - sym__newline, + ACTIONS(3191), 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, @@ -307068,16 +314569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300077] = 3, + [306340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, + ACTIONS(3209), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3233), 28, + ACTIONS(3207), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -307106,22 +314607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300118] = 3, + [306381] = 5, + ACTIONS(5090), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2400), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3237), 28, + ACTIONS(2402), 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, @@ -307144,22 +314647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300159] = 3, + [306426] = 5, + ACTIONS(5090), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 28, + ACTIONS(133), 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, @@ -307182,22 +314687,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300200] = 3, + [306471] = 6, + ACTIONS(1405), 1, + anon_sym_if, + ACTIONS(5092), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2242), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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, + [306518] = 5, + ACTIONS(5090), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3161), 28, + ACTIONS(2254), 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, @@ -307220,21 +314768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300241] = 3, + [306563] = 5, + ACTIONS(5090), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3279), 28, - sym__newline, + ACTIONS(2254), 25, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -307258,21 +314808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300282] = 3, + [306608] = 5, + ACTIONS(5090), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3049), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2264), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 28, - sym__newline, + ACTIONS(2266), 25, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -307296,30 +314848,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300323] = 3, + [306653] = 9, + ACTIONS(5090), 1, + anon_sym_if, + ACTIONS(5094), 1, + anon_sym_and, + ACTIONS(5096), 1, + anon_sym_or, + ACTIONS(5098), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 4, + ACTIONS(580), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2059), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 28, - sym__newline, - anon_sym_DOT, + ACTIONS(2057), 20, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, 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, @@ -307334,21 +314892,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300364] = 3, + [306706] = 4, + STATE(4804), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3287), 28, + ACTIONS(201), 27, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -307372,22 +314931,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300405] = 3, + [306749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(2310), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 28, - sym__newline, + ACTIONS(2356), 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, @@ -307410,22 +314969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300446] = 3, + [306790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 28, - sym__newline, + ACTIONS(201), 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, @@ -307448,77 +315007,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300487] = 20, - ACTIONS(4325), 1, + [306831] = 6, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(5100), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 10, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2242), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [306878] = 5, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 11, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - ACTIONS(5062), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_AMP, - ACTIONS(5066), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2264), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [306923] = 6, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(5100), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5010), 2, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 10, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2256), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [306970] = 5, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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_DASH, - ACTIONS(5012), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [307015] = 5, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 18, anon_sym_DOT, anon_sym_as, + anon_sym_else, + 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_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [307060] = 5, + ACTIONS(1397), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2236), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [300562] = 3, + anon_sym_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [307105] = 10, + ACTIONS(562), 1, + anon_sym_DOT, + ACTIONS(564), 1, + anon_sym_QMARK_DOT, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(5100), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, + anon_sym_and, + ACTIONS(5104), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 4, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 9, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 15, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [307160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3291), 28, - sym__newline, + ACTIONS(201), 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, @@ -307541,34 +315332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300603] = 10, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [307201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(3289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 21, + ACTIONS(3287), 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, @@ -307586,35 +315369,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [300658] = 10, - ACTIONS(4403), 1, + anon_sym_QMARK_LBRACK, + [307242] = 5, + ACTIONS(1397), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2322), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 11, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4405), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(129), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [307287] = 5, + ACTIONS(5106), 1, + anon_sym_in, + ACTIONS(5108), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 21, + ACTIONS(201), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, @@ -307631,43 +315449,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [300713] = 12, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [307332] = 5, + ACTIONS(5106), 1, + anon_sym_in, + ACTIONS(5110), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5012), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, @@ -307678,119 +315489,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [300772] = 16, - ACTIONS(4403), 1, + anon_sym_QMARK_LBRACK, + [307377] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, + ACTIONS(5114), 1, anon_sym_STAR_STAR, - ACTIONS(5064), 1, + ACTIONS(5120), 1, + anon_sym_PIPE, + ACTIONS(5122), 1, anon_sym_AMP, - ACTIONS(5066), 1, + ACTIONS(5124), 1, anon_sym_CARET, - STATE(3552), 1, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5112), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5010), 2, + ACTIONS(5116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 2, + ACTIONS(5118), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, + ACTIONS(5126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2330), 5, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [300839] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3049), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3051), 28, + ACTIONS(2458), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + [307452] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + ACTIONS(5120), 1, + anon_sym_PIPE, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5118), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(5126), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2330), 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, - [300880] = 6, - ACTIONS(1353), 1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [307527] = 5, + ACTIONS(1397), 1, anon_sym_if, - ACTIONS(5026), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 11, - sym__newline, + ACTIONS(2402), 11, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2445), 17, + ACTIONS(2400), 18, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -307802,33 +315633,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [300927] = 3, + [307572] = 5, + ACTIONS(4394), 1, + anon_sym_in, + ACTIONS(4396), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3295), 28, - sym__newline, + ACTIONS(201), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -307846,88 +315680,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [300968] = 11, - ACTIONS(442), 1, - anon_sym_DOT, - ACTIONS(444), 1, + [307617] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(5040), 1, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + ACTIONS(5120), 1, + anon_sym_PIPE, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5118), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(5042), 1, + anon_sym_and, + anon_sym_or, + [307692] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + ACTIONS(5120), 1, + anon_sym_PIPE, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, anon_sym_PLUS, - ACTIONS(5052), 1, + anon_sym_DASH, + ACTIONS(5118), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2458), 5, + anon_sym_DOT, anon_sym_as, - ACTIONS(5056), 1, + anon_sym_if, anon_sym_and, - ACTIONS(5058), 1, anon_sym_or, + [307767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(5072), 11, - sym_string_start, + ACTIONS(3033), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3035), 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(5070), 12, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [301025] = 15, - ACTIONS(4403), 1, + 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, + [307808] = 17, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, + ACTIONS(5114), 1, anon_sym_STAR_STAR, - ACTIONS(5066), 1, + ACTIONS(5120), 1, + anon_sym_PIPE, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, anon_sym_CARET, - STATE(3552), 1, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(4828), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, + ACTIONS(2386), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5112), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5010), 2, + ACTIONS(5116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 2, + ACTIONS(5118), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, + ACTIONS(5126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2520), 14, + ACTIONS(2458), 12, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -307935,23 +315875,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [301090] = 3, + [307877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 4, + ACTIONS(3087), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 28, + ACTIONS(3089), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -307980,22 +315918,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301131] = 3, + [307918] = 10, + ACTIONS(748), 1, + anon_sym_DOT, + ACTIONS(750), 1, + anon_sym_QMARK_DOT, + ACTIONS(1423), 1, + anon_sym_if, + ACTIONS(5128), 1, + anon_sym_and, + ACTIONS(5130), 1, + anon_sym_or, + ACTIONS(5132), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 4, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 10, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 14, + anon_sym_as, + anon_sym_else, + 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, + [307973] = 6, + ACTIONS(5090), 1, + anon_sym_if, + ACTIONS(5098), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3191), 28, + ACTIONS(2244), 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, @@ -308003,7 +315990,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, @@ -308018,33 +316004,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301172] = 6, - ACTIONS(5040), 1, + [308020] = 6, + ACTIONS(1423), 1, anon_sym_if, - ACTIONS(5042), 1, + ACTIONS(5132), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 12, + ACTIONS(2244), 11, + sym__newline, 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(2445), 16, + ACTIONS(2242), 17, anon_sym_DOT, anon_sym_as, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -308059,28 +316045,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [301219] = 5, - ACTIONS(1359), 1, + [308067] = 5, + ACTIONS(1423), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 11, + ACTIONS(133), 12, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(191), 18, + ACTIONS(129), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -308092,29 +316079,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [301264] = 3, + [308112] = 6, + ACTIONS(5090), 1, + anon_sym_if, + ACTIONS(5098), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2256), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3145), 28, + ACTIONS(2258), 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, @@ -308122,7 +316112,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, @@ -308137,57 +316126,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301305] = 6, - ACTIONS(1359), 1, - anon_sym_if, - ACTIONS(5020), 1, - anon_sym_PLUS, + [308159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 10, - sym_string_start, + ACTIONS(3037), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3039), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(2445), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [301352] = 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, + [308200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 4, + ACTIONS(3251), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3137), 28, + ACTIONS(3249), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -308216,44 +316202,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301393] = 13, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [308241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(3247), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5010), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2520), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3245), 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, @@ -308264,29 +316239,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [301454] = 6, - ACTIONS(1359), 1, + anon_sym_QMARK_LBRACK, + [308282] = 5, + ACTIONS(1423), 1, anon_sym_if, - ACTIONS(5020), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 10, + ACTIONS(2266), 12, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2449), 18, + ACTIONS(2264), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -308298,29 +316274,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [301501] = 3, + [308327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3053), 4, + ACTIONS(3243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 28, - sym__newline, + ACTIONS(3241), 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, + [308368] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3237), 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, @@ -308343,16 +316356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301542] = 3, + [308409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3127), 4, + ACTIONS(3235), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3125), 28, + ACTIONS(3233), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -308381,56 +316394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301583] = 5, - ACTIONS(1353), 1, - anon_sym_if, + [308450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2441), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [301628] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3273), 4, + ACTIONS(3231), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3275), 28, + ACTIONS(3229), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -308459,60 +316432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301669] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3155), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3153), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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, - [301710] = 3, + [308491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 4, + ACTIONS(3227), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3299), 28, - sym__newline, + ACTIONS(3225), 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, @@ -308535,22 +316470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301751] = 3, + [308532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3061), 4, + ACTIONS(3221), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3063), 28, - sym__newline, + ACTIONS(3219), 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, @@ -308573,22 +316508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301792] = 6, - ACTIONS(1373), 1, + [308573] = 6, + ACTIONS(1423), 1, anon_sym_if, - ACTIONS(5032), 1, + ACTIONS(5132), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 11, + ACTIONS(2258), 11, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_QMARK_DOT, @@ -308596,7 +316531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2449), 17, + ACTIONS(2256), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -308614,60 +316549,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [301839] = 5, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(5076), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(221), 26, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [301884] = 5, - ACTIONS(1373), 1, + [308620] = 5, + ACTIONS(1423), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 12, + ACTIONS(2402), 12, + sym__newline, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_QMARK_DOT, @@ -308676,7 +316571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 17, + ACTIONS(2400), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -308694,26 +316589,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [301929] = 6, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(5038), 1, - anon_sym_PLUS, + [308665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2445), 4, + ACTIONS(3217), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2443), 24, + ACTIONS(3215), 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, @@ -308721,6 +316612,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, @@ -308735,23 +316627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [301976] = 6, - ACTIONS(5034), 1, + [308706] = 7, + ACTIONS(5090), 1, anon_sym_if, - ACTIONS(5038), 1, + ACTIONS(5094), 1, + anon_sym_and, + ACTIONS(5098), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2449), 4, + ACTIONS(2242), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2447), 24, + ACTIONS(2244), 23, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -308760,7 +316654,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, @@ -308776,16 +316669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302023] = 3, + [308755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 4, + ACTIONS(3217), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3183), 28, + ACTIONS(3215), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -308814,66 +316707,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302064] = 5, - ACTIONS(5034), 1, + [308796] = 5, + ACTIONS(1423), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2453), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2451), 25, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2254), 12, + sym__newline, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [302109] = 6, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(5038), 1, - anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [308841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 4, + ACTIONS(3189), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2455), 24, + ACTIONS(3187), 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, @@ -308881,6 +316770,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, @@ -308895,22 +316785,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302156] = 3, + [308882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 4, + ACTIONS(3205), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3157), 28, - sym__newline, + ACTIONS(3203), 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, @@ -308933,16 +316823,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302197] = 3, + [308923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 4, + ACTIONS(3205), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3179), 28, + ACTIONS(3203), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -308971,24 +316861,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302238] = 5, - ACTIONS(5034), 1, - anon_sym_if, + [308964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, + ACTIONS(3201), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 25, + ACTIONS(3199), 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, @@ -309011,32 +316899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302283] = 5, - ACTIONS(5040), 1, + [309005] = 5, + ACTIONS(1423), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 13, + ACTIONS(2254), 12, + sym__newline, 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(191), 16, + ACTIONS(2252), 17, anon_sym_DOT, anon_sym_as, + anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -309051,67 +316939,117 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [302328] = 3, + [309050] = 5, + ACTIONS(1423), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3175), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2840), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 12, + sym__newline, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2236), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [309095] = 5, + STATE(3170), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5134), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2298), 4, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2300), 25, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_PLUS_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [302369] = 5, - ACTIONS(1359), 1, + 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, + [309140] = 10, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1405), 1, anon_sym_if, + ACTIONS(5092), 1, + anon_sym_PLUS, + ACTIONS(5136), 1, + anon_sym_and, + ACTIONS(5138), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 11, + ACTIONS(2057), 10, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2453), 18, - anon_sym_DOT, + ACTIONS(2059), 14, anon_sym_as, anon_sym_else, anon_sym_lambda, @@ -309120,35 +317058,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [302414] = 3, + [309195] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3111), 4, + ACTIONS(1942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3109), 28, + ACTIONS(1940), 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, @@ -309166,22 +317109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [302455] = 5, - ACTIONS(5034), 1, + [309250] = 5, + ACTIONS(5090), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 4, + ACTIONS(2236), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 25, + ACTIONS(2238), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -309207,166 +317149,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302500] = 20, - ACTIONS(4325), 1, + [309295] = 20, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - ACTIONS(4403), 1, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4413), 1, anon_sym_LBRACK, - ACTIONS(4409), 1, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - ACTIONS(4411), 1, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, + ACTIONS(5114), 1, anon_sym_STAR_STAR, - ACTIONS(5062), 1, + ACTIONS(5120), 1, anon_sym_PIPE, - ACTIONS(5064), 1, + ACTIONS(5122), 1, anon_sym_AMP, - ACTIONS(5066), 1, + ACTIONS(5124), 1, anon_sym_CARET, - STATE(3552), 1, + STATE(3556), 1, sym_argument_list, - STATE(4730), 1, + STATE(4509), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5112), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5010), 2, + ACTIONS(5116), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5012), 2, + ACTIONS(5118), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, + ACTIONS(5126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2367), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [302575] = 5, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2465), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2463), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2330), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [302620] = 20, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - ACTIONS(5062), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_AMP, - ACTIONS(5066), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5010), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5012), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, + ACTIONS(2356), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [302695] = 3, + [309370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 4, + ACTIONS(3185), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3171), 28, + ACTIONS(3183), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -309395,29 +317242,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302736] = 6, - ACTIONS(1359), 1, + [309411] = 5, + ACTIONS(1405), 1, anon_sym_if, - ACTIONS(5020), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 10, + ACTIONS(2266), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2457), 18, + ACTIONS(2264), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -309429,31 +317276,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [302783] = 5, - ACTIONS(5034), 1, - anon_sym_if, + [309456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(191), 4, + ACTIONS(3181), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(189), 25, + ACTIONS(3179), 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, @@ -309476,24 +317320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302828] = 5, - ACTIONS(5034), 1, - anon_sym_if, + [309497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 4, + ACTIONS(3177), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2439), 25, + ACTIONS(3175), 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, @@ -309516,30 +317358,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302873] = 3, + [309538] = 8, + ACTIONS(5090), 1, + anon_sym_if, + ACTIONS(5094), 1, + anon_sym_and, + ACTIONS(5098), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3065), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2244), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2276), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2278), 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, @@ -309554,66 +317401,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [302914] = 3, + [309589] = 6, + ACTIONS(1405), 1, + anon_sym_if, + ACTIONS(5092), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3173), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3171), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 11, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2256), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [302955] = 5, - ACTIONS(1359), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [309636] = 5, + ACTIONS(1405), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 11, + ACTIONS(2254), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 18, + ACTIONS(2252), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -309625,37 +317476,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [303000] = 6, - ACTIONS(1353), 1, + [309681] = 5, + ACTIONS(1405), 1, anon_sym_if, - ACTIONS(5026), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 11, - sym__newline, + ACTIONS(2254), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2457), 17, + ACTIONS(2252), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -309673,16 +317522,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [303047] = 3, + [309726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3159), 4, + ACTIONS(3169), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3157), 28, + ACTIONS(3167), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -309711,28 +317560,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303088] = 5, - ACTIONS(1359), 1, + [309767] = 5, + ACTIONS(1405), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 11, + ACTIONS(2238), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2461), 18, + ACTIONS(2236), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -309744,111 +317594,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [303133] = 3, + [309812] = 5, + ACTIONS(5140), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3177), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3175), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 13, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + 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(2400), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [303174] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [309857] = 5, + ACTIONS(5140), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3139), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3137), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(133), 13, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + 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(129), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [303215] = 5, - ACTIONS(1359), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [309902] = 5, + ACTIONS(1405), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2293), 2, + STATE(2892), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 11, + ACTIONS(133), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2465), 18, + ACTIONS(129), 17, anon_sym_DOT, anon_sym_as, anon_sym_else, @@ -309860,78 +317714,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [303260] = 20, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - ACTIONS(5062), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_AMP, - ACTIONS(5066), 1, - anon_sym_CARET, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [309947] = 5, + ACTIONS(5140), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5010), 2, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 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, - ACTIONS(5012), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(5014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2367), 5, + anon_sym_TILDE, + sym_float, + ACTIONS(2236), 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_not, anon_sym_and, anon_sym_or, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [303335] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [309992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3155), 4, + ACTIONS(3165), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3153), 28, + ACTIONS(3163), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -309960,34 +317798,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303376] = 10, - ACTIONS(4403), 1, - anon_sym_LPAREN, - ACTIONS(4405), 1, - anon_sym_LBRACK, - ACTIONS(4409), 1, - anon_sym_QMARK_DOT, - ACTIONS(4411), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(5008), 1, - anon_sym_STAR_STAR, - STATE(3552), 1, - sym_argument_list, - STATE(4730), 1, - aux_sym_comparison_operator_repeat1, + [310033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2574), 4, + ACTIONS(3155), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2576), 21, + ACTIONS(3157), 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, @@ -310005,16 +317835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [303431] = 3, + anon_sym_QMARK_LBRACK, + [310074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(3151), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 28, + ACTIONS(3153), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310043,16 +317874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303472] = 3, + [310115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3131), 4, + ACTIONS(3147), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3129), 28, + ACTIONS(3149), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310081,60 +317912,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303513] = 3, + [310156] = 11, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(5140), 1, + anon_sym_if, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_or, + ACTIONS(5152), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3283), 28, - anon_sym_DOT, - anon_sym_as, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5146), 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(5142), 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, + [310213] = 5, + ACTIONS(5140), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, + 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [303554] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [310258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 4, + ACTIONS(3141), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3145), 28, - sym__newline, + ACTIONS(3143), 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, @@ -310157,16 +318036,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303595] = 3, + [310299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 4, + ACTIONS(3103), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3287), 28, + ACTIONS(3105), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310195,29 +318074,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303636] = 5, - ACTIONS(5074), 1, - anon_sym_in, - ACTIONS(5078), 1, + [310340] = 11, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(5140), 1, + anon_sym_if, + ACTIONS(5144), 1, + anon_sym_as, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_or, + ACTIONS(5152), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5156), 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(5154), 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, + [310397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3043), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 26, - sym__newline, + ACTIONS(3045), 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, @@ -310235,30 +318158,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303681] = 3, + [310438] = 7, + ACTIONS(5090), 1, + anon_sym_if, + ACTIONS(5094), 1, + anon_sym_and, + ACTIONS(5098), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 4, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3257), 28, - sym__newline, + ACTIONS(2542), 23, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, 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, @@ -310273,16 +318200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303722] = 3, + [310487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 4, + ACTIONS(3043), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3257), 28, + ACTIONS(3045), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310311,21 +318238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303763] = 3, + [310528] = 5, + ACTIONS(5158), 1, + anon_sym_EQ, + STATE(3705), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3181), 4, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3179), 28, - sym__newline, + ACTIONS(2554), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -310349,26 +318278,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303804] = 3, + [310573] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3203), 4, + ACTIONS(2067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3201), 28, - sym__newline, + ACTIONS(2069), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - 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, @@ -310386,61 +318323,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [303845] = 3, + [310628] = 5, + ACTIONS(5140), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3291), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 13, + 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2252), 16, + anon_sym_DOT, + anon_sym_as, + 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, + [310673] = 10, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_QMARK_DOT, + ACTIONS(5140), 1, + anon_sym_if, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_or, + ACTIONS(5152), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 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_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, - [303886] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2059), 13, + anon_sym_as, + 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, + [310728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3185), 4, + ACTIONS(3125), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3183), 28, - sym__newline, + ACTIONS(3127), 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, @@ -310463,70 +318446,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [303927] = 3, + [310769] = 6, + ACTIONS(5140), 1, + anon_sym_if, + ACTIONS(5152), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3189), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3187), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2258), 12, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, 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(2256), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [303968] = 5, - ACTIONS(1353), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [310816] = 5, + ACTIONS(5140), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 12, - sym__newline, + ACTIONS(2266), 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(2453), 17, + ACTIONS(2264), 16, anon_sym_DOT, anon_sym_as, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -310541,71 +318527,128 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [304013] = 3, + [310861] = 5, + ACTIONS(1405), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3193), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3191), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 12, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2400), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_else, + 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, + [310906] = 20, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + ACTIONS(5120), 1, + anon_sym_PIPE, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5118), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(5126), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2330), 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, - [304054] = 6, - ACTIONS(1373), 1, + ACTIONS(2356), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [310981] = 6, + ACTIONS(5140), 1, anon_sym_if, - ACTIONS(5032), 1, + ACTIONS(5152), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 11, + ACTIONS(2244), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, 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(2457), 17, + ACTIONS(2242), 16, anon_sym_DOT, anon_sym_as, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -310620,60 +318663,119 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [304101] = 3, + [311028] = 13, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3059), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3057), 28, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5118), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 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_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, + [311089] = 14, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5118), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(5126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 15, + 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_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, - [304142] = 3, + [311152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(3115), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, - sym__newline, + ACTIONS(3117), 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, @@ -310696,94 +318798,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304183] = 5, - ACTIONS(1353), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, + [311193] = 15, + ACTIONS(4411), 1, anon_sym_LPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + ACTIONS(5124), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(191), 17, + ACTIONS(5118), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 14, anon_sym_DOT, anon_sym_as, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_if, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [304228] = 3, + 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, + [311258] = 16, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, + anon_sym_CARET, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3045), 28, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5116), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5118), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(5126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1940), 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, - [304269] = 3, + [311325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3047), 4, + ACTIONS(3107), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3045), 28, + ACTIONS(3109), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310812,16 +318937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304310] = 3, + [311366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3293), 4, + ACTIONS(3099), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3295), 28, + ACTIONS(3101), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310850,16 +318975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304351] = 3, + [311407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 4, + ACTIONS(3095), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3069), 28, + ACTIONS(3097), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -310888,22 +319013,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304392] = 3, + [311448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 4, + ACTIONS(3091), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2367), 28, - sym__newline, + ACTIONS(3093), 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, @@ -310926,114 +319051,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304433] = 5, - ACTIONS(1373), 1, - anon_sym_if, + [311489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [304478] = 5, - ACTIONS(1353), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2871), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 12, - sym__newline, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2465), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [304523] = 7, - ACTIONS(5034), 1, - anon_sym_if, - ACTIONS(5036), 1, - anon_sym_and, - ACTIONS(5038), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2479), 4, + ACTIONS(3081), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 23, + ACTIONS(3083), 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, @@ -311048,73 +319089,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304572] = 5, - ACTIONS(1373), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2815), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 12, - sym_string_start, - anon_sym_COMMA, + [311530] = 12, + ACTIONS(4411), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4413), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4421), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2461), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_else, - 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, - [304617] = 3, + ACTIONS(4443), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 28, - sym__newline, + ACTIONS(5112), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5118), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1940), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - 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, @@ -311125,27 +319136,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [311589] = 10, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_QMARK_DOT, + ACTIONS(4443), 1, anon_sym_QMARK_LBRACK, - [304658] = 3, + ACTIONS(5114), 1, + anon_sym_STAR_STAR, + STATE(3556), 1, + sym_argument_list, + STATE(4828), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 4, + ACTIONS(1942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3237), 28, - sym__newline, + ACTIONS(1940), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - 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, @@ -311163,23 +319181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [304699] = 3, + [311644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3163), 4, + ACTIONS(3077), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3161), 28, - sym__newline, + ACTIONS(3079), 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, @@ -311202,67 +319219,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304740] = 5, - ACTIONS(5040), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 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(2441), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + [311685] = 5, + ACTIONS(5056), 1, + anon_sym_in, + ACTIONS(5160), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [304785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3095), 28, + ACTIONS(201), 26, + 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, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -311280,16 +319259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304826] = 3, + [311730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 4, + ACTIONS(3053), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3299), 28, + ACTIONS(3055), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311318,18 +319297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304867] = 4, - STATE(4413), 1, - aux_sym_comparison_operator_repeat1, + [311771] = 4, + ACTIONS(5158), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 26, + ACTIONS(2554), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311356,18 +319335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304909] = 4, - STATE(4413), 1, + [311813] = 4, + STATE(4508), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 26, + ACTIONS(201), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311394,18 +319373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304951] = 4, - ACTIONS(5048), 1, - anon_sym_EQ, + [311855] = 4, + STATE(4506), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 26, + ACTIONS(2768), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311432,27 +319411,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [304993] = 4, - STATE(4413), 1, + [311897] = 8, + ACTIONS(5165), 1, + anon_sym_not, + ACTIONS(5171), 1, + anon_sym_is, + STATE(4506), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2841), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5168), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 26, + ACTIONS(5162), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2839), 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, @@ -311464,24 +319452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [305035] = 4, - STATE(4413), 1, + [311947] = 4, + STATE(4506), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 4, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2859), 26, + ACTIONS(2768), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311508,75 +319491,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [305077] = 5, - STATE(3217), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5080), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2471), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2473), 24, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_PLUS_EQ, - 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, - [305121] = 8, - ACTIONS(5085), 1, - anon_sym_not, - ACTIONS(5091), 1, - anon_sym_is, - STATE(4413), 1, + [311989] = 4, + STATE(4506), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2861), 2, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5088), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2863), 19, + ACTIONS(2768), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -311588,19 +319523,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, - [305171] = 4, - STATE(4411), 1, + [312031] = 4, + STATE(4506), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(2770), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 26, + ACTIONS(2768), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311627,16 +319567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [305213] = 3, + [312073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 27, + ACTIONS(201), 27, sym__newline, anon_sym_DOT, anon_sym_as, @@ -311664,20 +319604,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [305253] = 5, - ACTIONS(4345), 1, + [312113] = 5, + ACTIONS(4394), 1, anon_sym_in, - ACTIONS(5094), 1, + ACTIONS(5174), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(217), 4, + ACTIONS(197), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(221), 24, + ACTIONS(201), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -311702,13 +319642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [305296] = 4, - ACTIONS(5098), 1, + [312156] = 4, + ACTIONS(5178), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5100), 12, + ACTIONS(5180), 12, sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, @@ -311721,7 +319661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(5096), 13, + ACTIONS(5176), 13, anon_sym_DOT, anon_sym_lambda, anon_sym_all, @@ -311735,41 +319675,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [305333] = 14, - ACTIONS(732), 1, + [312193] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5184), 1, + anon_sym_COLON, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5106), 1, - anon_sym_RPAREN, - ACTIONS(5108), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5196), 1, sym_float, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(3483), 1, sym_string, - STATE(5365), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5545), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -311777,41 +319717,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305389] = 14, - ACTIONS(408), 1, + [312249] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5126), 1, + ACTIONS(5206), 1, anon_sym_RBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5579), 1, + STATE(3791), 1, + sym_string, + STATE(5691), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -311819,41 +319759,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305445] = 14, - ACTIONS(504), 1, + [312305] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5136), 1, - anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5218), 1, + anon_sym_RPAREN, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(4291), 1, sym_string, - STATE(5463), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5434), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -311861,41 +319801,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305501] = 14, - ACTIONS(408), 1, + [312361] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5150), 1, + ACTIONS(5230), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5601), 1, + STATE(3791), 1, + sym_string, + STATE(5604), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -311903,41 +319843,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305557] = 14, - ACTIONS(504), 1, + [312417] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5232), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5493), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5454), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -311945,41 +319885,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305613] = 14, - ACTIONS(408), 1, + [312473] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5154), 1, + ACTIONS(5234), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5701), 1, + STATE(3791), 1, + sym_string, + STATE(5527), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -311987,41 +319927,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305669] = 14, - ACTIONS(408), 1, + [312529] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5156), 1, + ACTIONS(5236), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5699), 1, + STATE(3791), 1, + sym_string, + STATE(5528), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312029,41 +319969,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305725] = 14, - ACTIONS(408), 1, + [312585] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5244), 1, + anon_sym_RBRACK, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5158), 1, - anon_sym_RBRACE, - STATE(3595), 1, + STATE(3803), 1, sym_string, - STATE(3596), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5464), 1, + STATE(5673), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312071,41 +320011,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305781] = 14, - ACTIONS(408), 1, + [312641] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5160), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5252), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5549), 1, + STATE(5707), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312113,41 +320053,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305837] = 14, - ACTIONS(504), 1, + [312697] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5162), 1, + ACTIONS(5254), 1, anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5440), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5689), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312155,41 +320095,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305893] = 14, - ACTIONS(408), 1, + [312753] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5164), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5256), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(3596), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5557), 1, + STATE(5586), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312197,41 +320137,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [305949] = 14, - ACTIONS(408), 1, + [312809] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5166), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5258), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3596), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5610), 1, + STATE(5455), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312239,41 +320179,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306005] = 14, - ACTIONS(408), 1, + [312865] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5168), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5260), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3596), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5636), 1, + STATE(5451), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312281,41 +320221,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306061] = 14, - ACTIONS(732), 1, + [312921] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5170), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5262), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(5354), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5789), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312323,41 +320263,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306117] = 14, - ACTIONS(408), 1, + [312977] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5172), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5264), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5597), 1, + STATE(5676), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312365,41 +320305,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306173] = 14, - ACTIONS(552), 1, + [313033] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5180), 1, - anon_sym_RBRACK, - ACTIONS(5182), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5212), 1, sym_float, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + ACTIONS(5266), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(5681), 1, + STATE(3791), 1, + sym_string, + STATE(5742), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312407,41 +320347,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306229] = 14, - ACTIONS(408), 1, + [313089] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5188), 1, + ACTIONS(5268), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5479), 1, + STATE(3791), 1, + sym_string, + STATE(5576), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312449,41 +320389,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306285] = 14, - ACTIONS(408), 1, + [313145] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5190), 1, + ACTIONS(5270), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5590), 1, + STATE(3791), 1, + sym_string, + STATE(5736), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312491,72 +320431,83 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306341] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1471), 12, + [313201] = 14, + ACTIONS(698), 1, sym_string_start, + ACTIONS(5214), 1, + sym_identifier, + ACTIONS(5216), 1, anon_sym_LPAREN, + ACTIONS(5220), 1, anon_sym_LBRACK, + ACTIONS(5222), 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(5228), 1, sym_float, - ACTIONS(5192), 13, - anon_sym_DOT, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + ACTIONS(5272), 1, + anon_sym_RPAREN, + STATE(4291), 1, + sym_string, + STATE(4297), 1, + sym_dotted_name, + STATE(5450), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5226), 3, sym_integer, - sym_identifier, sym_true, sym_false, - sym_none, - sym_undefined, - [306375] = 14, - ACTIONS(408), 1, + ACTIONS(5224), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4296), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313257] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5194), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5274), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(3596), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5509), 1, + STATE(5609), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312564,41 +320515,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306431] = 14, - ACTIONS(408), 1, + [313313] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5196), 1, + ACTIONS(5276), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5668), 1, + STATE(3791), 1, + sym_string, + STATE(5657), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312606,41 +320557,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306487] = 14, - ACTIONS(408), 1, + [313369] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5278), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5533), 1, + STATE(5602), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312648,41 +320599,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306543] = 14, - ACTIONS(408), 1, + [313425] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5280), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5443), 1, + STATE(5725), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312690,41 +320641,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306599] = 14, - ACTIONS(552), 1, + [313481] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5202), 1, - anon_sym_RBRACK, - STATE(3767), 1, + ACTIONS(5282), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3769), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5685), 1, + STATE(5671), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312732,41 +320683,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306655] = 14, - ACTIONS(408), 1, + [313537] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5204), 1, + ACTIONS(5284), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5660), 1, + STATE(3791), 1, + sym_string, + STATE(5721), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312774,41 +320725,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306711] = 14, - ACTIONS(504), 1, + [313593] = 14, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5286), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5206), 1, - anon_sym_COLON, - STATE(3476), 1, + STATE(4126), 1, sym_dotted_name, - STATE(3521), 1, + STATE(4154), 1, sym_string, - STATE(5500), 1, + STATE(5477), 1, sym_type, + STATE(6236), 1, + sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312816,41 +320767,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306767] = 14, - ACTIONS(408), 1, + [313649] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5208), 1, + ACTIONS(5300), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5616), 1, + STATE(3791), 1, + sym_string, + STATE(5723), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312858,41 +320809,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306823] = 14, - ACTIONS(552), 1, + [313705] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5210), 1, - anon_sym_RBRACK, - STATE(3767), 1, + ACTIONS(5302), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3769), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5600), 1, + STATE(5441), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312900,41 +320851,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306879] = 14, - ACTIONS(732), 1, + [313761] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, - sym_float, ACTIONS(5212), 1, - anon_sym_RPAREN, - STATE(4134), 1, + sym_float, + ACTIONS(5304), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5349), 1, + STATE(5720), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312942,41 +320893,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306935] = 14, - ACTIONS(732), 1, + [313817] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5214), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5306), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5371), 1, + STATE(5589), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -312984,41 +320935,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [306991] = 14, - ACTIONS(732), 1, + [313873] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5216), 1, + ACTIONS(5308), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5352), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5447), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313026,41 +320977,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307047] = 14, - ACTIONS(732), 1, + [313929] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5218), 1, + ACTIONS(5310), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5357), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5462), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313068,41 +321019,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307103] = 14, - ACTIONS(732), 1, + [313985] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5220), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5312), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(5374), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5781), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313110,41 +321061,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307159] = 14, - ACTIONS(732), 1, + [314041] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5222), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5314), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5342), 1, + STATE(5643), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313152,41 +321103,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307215] = 14, - ACTIONS(552), 1, + [314097] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, - sym_float, - ACTIONS(5224), 1, - anon_sym_RBRACK, - STATE(3767), 1, + ACTIONS(5228), 1, + sym_float, + ACTIONS(5316), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3769), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5442), 1, + STATE(5463), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313194,41 +321145,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307271] = 14, - ACTIONS(552), 1, + [314153] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5226), 1, - anon_sym_RBRACK, - STATE(3767), 1, + ACTIONS(5318), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3769), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5563), 1, + STATE(5653), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313236,41 +321187,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307327] = 14, - ACTIONS(504), 1, + [314209] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5228), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5320), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(5624), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5572), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313278,41 +321229,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307383] = 14, - ACTIONS(732), 1, + [314265] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5230), 1, + ACTIONS(5322), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5356), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5456), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313320,41 +321271,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307439] = 14, - ACTIONS(732), 1, + [314321] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5232), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5324), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5368), 1, + STATE(5616), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313362,41 +321313,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307495] = 14, - ACTIONS(408), 1, + [314377] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5234), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5326), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3596), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5432), 1, + STATE(5461), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313404,41 +321355,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307551] = 14, - ACTIONS(732), 1, + [314433] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5236), 1, + ACTIONS(5328), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5370), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5435), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313446,41 +321397,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307607] = 14, - ACTIONS(408), 1, + [314489] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5238), 1, + ACTIONS(5330), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5522), 1, + STATE(3791), 1, + sym_string, + STATE(5710), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313488,41 +321439,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307663] = 14, - ACTIONS(408), 1, + [314545] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5240), 1, + ACTIONS(5332), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5634), 1, + STATE(3791), 1, + sym_string, + STATE(5598), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313530,41 +321481,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307719] = 14, - ACTIONS(552), 1, + [314601] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5242), 1, + ACTIONS(5334), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5594), 1, + STATE(5724), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313572,41 +321523,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307775] = 14, - ACTIONS(732), 1, + [314657] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5244), 1, + ACTIONS(5336), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5363), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5444), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313614,41 +321565,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307831] = 14, - ACTIONS(408), 1, + [314713] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5338), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5702), 1, + STATE(5743), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313656,41 +321607,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307887] = 14, - ACTIONS(732), 1, + [314769] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5248), 1, + ACTIONS(5340), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5348), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5437), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313698,41 +321649,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307943] = 14, - ACTIONS(552), 1, + [314825] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5250), 1, - anon_sym_RBRACK, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + ACTIONS(5342), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(5562), 1, + STATE(3791), 1, + sym_string, + STATE(5766), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313740,41 +321691,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [307999] = 14, - ACTIONS(408), 1, + [314881] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5252), 1, + ACTIONS(5344), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5455), 1, + STATE(3791), 1, + sym_string, + STATE(5784), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313782,41 +321733,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308055] = 14, - ACTIONS(732), 1, + [314937] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5254), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5346), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(5375), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5635), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313824,41 +321775,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308111] = 14, - ACTIONS(504), 1, + [314993] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5256), 1, - anon_sym_COLON, - STATE(3476), 1, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(3521), 1, + STATE(3791), 1, sym_string, - STATE(5454), 1, + STATE(5706), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313866,41 +321817,72 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308167] = 14, - ACTIONS(408), 1, + [315049] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1467), 12, sym_string_start, - ACTIONS(5118), 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(5350), 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(5120), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [315083] = 14, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5258), 1, + ACTIONS(5352), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5626), 1, + STATE(3791), 1, + sym_string, + STATE(5756), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313908,41 +321890,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308223] = 14, - ACTIONS(504), 1, + [315139] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5260), 1, + ACTIONS(5354), 1, anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5606), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5716), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313950,41 +321932,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308279] = 14, - ACTIONS(732), 1, + [315195] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5262), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5356), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(5345), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5741), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -313992,41 +321974,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308335] = 14, - ACTIONS(504), 1, + [315251] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5264), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5588), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5459), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314034,41 +322016,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308391] = 14, - ACTIONS(408), 1, + [315307] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5266), 1, + ACTIONS(5360), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5694), 1, + STATE(3791), 1, + sym_string, + STATE(5585), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314076,41 +322058,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308447] = 14, - ACTIONS(552), 1, + [315363] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5268), 1, - anon_sym_RBRACK, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + ACTIONS(5362), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(5540), 1, + STATE(3791), 1, + sym_string, + STATE(5669), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314118,41 +322100,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308503] = 14, - ACTIONS(552), 1, + [315419] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5270), 1, + ACTIONS(5364), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5466), 1, + STATE(5520), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314160,41 +322142,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308559] = 14, - ACTIONS(504), 1, + [315475] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5272), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5366), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5618), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5436), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314202,41 +322184,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308615] = 14, - ACTIONS(732), 1, + [315531] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5274), 1, + ACTIONS(5368), 1, anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4291), 1, sym_string, - STATE(5355), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5446), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314244,41 +322226,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308671] = 14, - ACTIONS(552), 1, + [315587] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5276), 1, - anon_sym_RBRACK, - STATE(3767), 1, + ACTIONS(5370), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3769), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5698), 1, + STATE(5439), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314286,41 +322268,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308727] = 14, - ACTIONS(732), 1, + [315643] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5278), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5372), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(5353), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5617), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314328,41 +322310,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308783] = 14, - ACTIONS(504), 1, + [315699] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5280), 1, - anon_sym_COLON, - STATE(3476), 1, + ACTIONS(5374), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(3521), 1, + STATE(3791), 1, sym_string, - STATE(5470), 1, + STATE(5615), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314370,41 +322352,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308839] = 14, - ACTIONS(552), 1, + [315755] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5282), 1, + ACTIONS(5376), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5451), 1, + STATE(5771), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314412,41 +322394,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308895] = 14, - ACTIONS(732), 1, + [315811] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5284), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5378), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5343), 1, + STATE(5740), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314454,41 +322436,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [308951] = 14, - ACTIONS(408), 1, + [315867] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5286), 1, + ACTIONS(5380), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5569), 1, + STATE(3791), 1, + sym_string, + STATE(5593), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314496,41 +322478,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309007] = 14, - ACTIONS(552), 1, + [315923] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5288), 1, - anon_sym_RBRACK, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + ACTIONS(5382), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(5622), 1, + STATE(3791), 1, + sym_string, + STATE(5663), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314538,41 +322520,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309063] = 14, - ACTIONS(732), 1, + [315979] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5290), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5384), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5351), 1, + STATE(5626), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314580,41 +322562,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309119] = 14, - ACTIONS(408), 1, + [316035] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5292), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5386), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5495), 1, + STATE(5600), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314622,41 +322604,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309175] = 14, - ACTIONS(504), 1, + [316091] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5294), 1, - anon_sym_COLON, - STATE(3476), 1, + ACTIONS(5388), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(3521), 1, + STATE(3791), 1, sym_string, - STATE(5570), 1, + STATE(5530), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314664,41 +322646,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309231] = 14, - ACTIONS(504), 1, + [316147] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5296), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5390), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5552), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5449), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314706,41 +322688,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309287] = 14, - ACTIONS(408), 1, + [316203] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5298), 1, + ACTIONS(5392), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5487), 1, + STATE(3791), 1, + sym_string, + STATE(5587), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314748,41 +322730,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309343] = 14, - ACTIONS(732), 1, + [316259] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5300), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5394), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(5366), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5536), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314790,41 +322772,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309399] = 14, - ACTIONS(552), 1, + [316315] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5302), 1, + ACTIONS(5396), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5521), 1, + STATE(5603), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314832,41 +322814,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309455] = 14, - ACTIONS(504), 1, + [316371] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5304), 1, + ACTIONS(5398), 1, anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5534), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5599), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314874,41 +322856,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309511] = 14, - ACTIONS(408), 1, + [316427] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5306), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5400), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3596), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5527), 1, + STATE(5457), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314916,41 +322898,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309567] = 14, - ACTIONS(408), 1, + [316483] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5308), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5402), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(3596), 1, + STATE(4297), 1, sym_dotted_name, - STATE(5459), 1, + STATE(5460), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -314958,41 +322940,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309623] = 14, - ACTIONS(552), 1, + [316539] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5310), 1, + ACTIONS(5404), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5488), 1, + STATE(5562), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315000,41 +322982,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309679] = 14, - ACTIONS(408), 1, + [316595] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5312), 1, + ACTIONS(5406), 1, anon_sym_RBRACE, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(3789), 1, sym_dotted_name, - STATE(5507), 1, + STATE(3791), 1, + sym_string, + STATE(5557), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315042,41 +323024,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309735] = 14, - ACTIONS(504), 1, + [316651] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5314), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5408), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5516), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5442), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315084,41 +323066,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309791] = 14, - ACTIONS(552), 1, + [316707] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5316), 1, + ACTIONS(5410), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5449), 1, + STATE(5634), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315126,41 +323108,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309847] = 14, - ACTIONS(408), 1, + [316763] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5412), 1, + anon_sym_COLON, + STATE(3483), 1, sym_string, - STATE(3596), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5670), 1, + STATE(5522), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315168,41 +323150,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309903] = 14, - ACTIONS(732), 1, + [316819] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5320), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5414), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5358), 1, + STATE(5534), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315210,41 +323192,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [309959] = 14, - ACTIONS(732), 1, + [316875] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(4134), 1, + ACTIONS(5416), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(4135), 1, + STATE(3791), 1, sym_string, - STATE(5361), 1, + STATE(5758), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315252,41 +323234,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310015] = 14, - ACTIONS(408), 1, + [316931] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5324), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5418), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(3596), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5494), 1, + STATE(5622), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315294,41 +323276,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310071] = 14, - ACTIONS(552), 1, + [316987] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5326), 1, - anon_sym_RBRACK, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + ACTIONS(5420), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(5559), 1, + STATE(3791), 1, + sym_string, + STATE(5779), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315336,41 +323318,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310127] = 14, - ACTIONS(504), 1, + [317043] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5328), 1, + ACTIONS(5422), 1, anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5655), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5581), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315378,41 +323360,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310183] = 14, - ACTIONS(55), 1, + [317099] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5330), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5332), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5228), 1, sym_float, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + ACTIONS(5424), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5405), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5458), 1, sym_type, - STATE(5834), 1, - sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315420,41 +323402,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310239] = 14, - ACTIONS(552), 1, + [317155] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5344), 1, - anon_sym_RBRACK, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + ACTIONS(5426), 1, + anon_sym_RBRACE, + STATE(3789), 1, sym_dotted_name, - STATE(5543), 1, + STATE(3791), 1, + sym_string, + STATE(5551), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315462,41 +323444,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310295] = 14, - ACTIONS(732), 1, + [317211] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5428), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(5362), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5729), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315504,41 +323486,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310351] = 14, - ACTIONS(408), 1, + [317267] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5348), 1, - anon_sym_RBRACE, - STATE(3595), 1, + ACTIONS(5430), 1, + anon_sym_RBRACK, + STATE(3803), 1, sym_string, - STATE(3596), 1, + STATE(3888), 1, sym_dotted_name, - STATE(5700), 1, + STATE(5662), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315546,41 +323528,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310407] = 14, - ACTIONS(504), 1, + [317323] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5350), 1, + ACTIONS(5432), 1, anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5480), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5563), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315588,41 +323570,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310463] = 14, - ACTIONS(504), 1, + [317379] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5352), 1, - anon_sym_COLON, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(4291), 1, sym_string, - STATE(5498), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5443), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315630,41 +323612,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310519] = 14, - ACTIONS(732), 1, + [317435] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5354), 1, - anon_sym_RPAREN, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(3803), 1, sym_string, - STATE(5373), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5537), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315672,39 +323652,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310575] = 13, - ACTIONS(504), 1, + [317488] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5138), 1, - anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(3483), 1, sym_string, - STATE(5661), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(3729), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315712,80 +323692,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310628] = 14, - ACTIONS(434), 1, + [317541] = 14, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5356), 1, + ACTIONS(5440), 1, sym_identifier, - ACTIONS(5358), 1, + ACTIONS(5442), 1, anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5452), 1, sym_float, - STATE(2394), 1, + STATE(1787), 1, sym_type, - STATE(2436), 1, + STATE(1972), 1, sym_dotted_name, - STATE(2438), 1, + STATE(1973), 1, sym_string, - STATE(2527), 1, + STATE(2236), 1, sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 6, + STATE(1970), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [310683] = 13, - ACTIONS(528), 1, + [317596] = 13, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5440), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5442), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5452), 1, sym_float, - STATE(2563), 1, + STATE(1749), 1, + sym_type, + STATE(1972), 1, sym_dotted_name, - STATE(2565), 1, + STATE(1973), 1, sym_string, - STATE(2748), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(1970), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315793,120 +323773,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310736] = 13, - ACTIONS(732), 1, + [317649] = 14, + ACTIONS(638), 1, sym_string_start, - ACTIONS(5108), 1, + ACTIONS(5454), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_LPAREN, + ACTIONS(5458), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5466), 1, sym_float, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(3988), 1, + STATE(2744), 1, sym_type, - STATE(4134), 1, + STATE(2894), 1, sym_dotted_name, - STATE(4135), 1, + STATE(2895), 1, sym_string, + STATE(3016), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5464), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5462), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(2893), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [310789] = 14, - ACTIONS(179), 1, + [317704] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5388), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5390), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5228), 1, sym_float, - STATE(1930), 1, - sym_dotted_name, - STATE(1934), 1, + STATE(4291), 1, sym_string, - STATE(1959), 1, + STATE(4297), 1, + sym_dotted_name, + STATE(5513), 1, sym_type, - STATE(2226), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 6, + STATE(4296), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [310844] = 13, - ACTIONS(55), 1, + [317757] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5402), 1, + ACTIONS(5436), 1, sym_identifier, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(3483), 1, sym_string, - STATE(5416), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(3714), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315914,39 +323894,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310897] = 13, - ACTIONS(153), 1, + [317810] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5404), 1, - sym_identifier, - ACTIONS(5406), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5250), 1, sym_float, - STATE(1601), 1, + ACTIONS(5468), 1, + sym_identifier, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3803), 1, + sym_string, + STATE(3856), 1, sym_type, - STATE(2018), 1, + STATE(3888), 1, sym_dotted_name, - STATE(2024), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -315954,79 +323934,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [310950] = 13, - ACTIONS(652), 1, + [317863] = 14, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5418), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5420), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5484), 1, sym_float, - STATE(2764), 1, + STATE(2309), 1, sym_type, - STATE(3012), 1, + STATE(2366), 1, + sym_union_type, + STATE(2377), 1, sym_dotted_name, - STATE(3014), 1, + STATE(2378), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5428), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5426), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3011), 7, + STATE(2376), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311003] = 13, - ACTIONS(552), 1, + [317918] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5178), 1, + ACTIONS(5238), 1, + sym_identifier, + ACTIONS(5240), 1, + anon_sym_LPAREN, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5432), 1, - sym_identifier, - ACTIONS(5434), 1, - anon_sym_LPAREN, - STATE(3623), 1, - sym_type, - STATE(3767), 1, + STATE(3803), 1, sym_string, - STATE(3769), 1, + STATE(3888), 1, sym_dotted_name, + STATE(5547), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316034,39 +324015,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311056] = 13, - ACTIONS(700), 1, + [317971] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5436), 1, - sym_identifier, - ACTIONS(5438), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5212), 1, sym_float, - STATE(2800), 1, + ACTIONS(5486), 1, + sym_identifier, + ACTIONS(5488), 1, + anon_sym_LPAREN, + STATE(3646), 1, sym_type, - STATE(2971), 1, - sym_string, - STATE(3097), 1, + STATE(3789), 1, sym_dotted_name, + STATE(3791), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5446), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5444), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2972), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316074,39 +324055,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311109] = 13, - ACTIONS(55), 1, + [318024] = 13, + ACTIONS(638), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5454), 1, + sym_identifier, + ACTIONS(5456), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5458), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5466), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, + STATE(2894), 1, sym_dotted_name, - STATE(4237), 1, + STATE(2895), 1, sym_string, - STATE(5377), 1, + STATE(3012), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5464), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5462), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(2893), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316114,119 +324095,121 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311162] = 13, - ACTIONS(732), 1, + [318077] = 14, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5108), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5250), 1, sym_float, - ACTIONS(5384), 1, + ACTIONS(5468), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5470), 1, anon_sym_LPAREN, - STATE(3995), 1, + STATE(3757), 1, sym_type, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(3803), 1, sym_string, + STATE(3855), 1, + sym_union_type, + STATE(3888), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3813), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311215] = 13, - ACTIONS(598), 1, + [318132] = 14, + ACTIONS(730), 1, sym_string_start, - ACTIONS(5450), 1, + ACTIONS(5490), 1, sym_identifier, - ACTIONS(5452), 1, + ACTIONS(5492), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, + ACTIONS(5494), 1, anon_sym_LBRACK, - ACTIONS(5456), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5502), 1, sym_float, - STATE(2750), 1, + STATE(2905), 1, sym_type, - STATE(2811), 1, - sym_dotted_name, - STATE(2812), 1, + STATE(3127), 1, sym_string, + STATE(3128), 1, + sym_dotted_name, + STATE(3150), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 3, + ACTIONS(5500), 3, sym_integer, sym_true, sym_false, - ACTIONS(5458), 5, + ACTIONS(5498), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2809), 7, + STATE(3129), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311268] = 13, - ACTIONS(153), 1, + [318187] = 13, + ACTIONS(730), 1, sym_string_start, - ACTIONS(5404), 1, + ACTIONS(5490), 1, sym_identifier, - ACTIONS(5406), 1, + ACTIONS(5492), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5494), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5502), 1, sym_float, - STATE(1643), 1, - sym_type, - STATE(2018), 1, - sym_dotted_name, - STATE(2024), 1, + STATE(3127), 1, sym_string, + STATE(3128), 1, + sym_dotted_name, + STATE(3154), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5500), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(5498), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 7, + STATE(3129), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316234,79 +324217,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311321] = 13, - ACTIONS(179), 1, + [318240] = 14, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5388), 1, - sym_identifier, - ACTIONS(5390), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5212), 1, sym_float, - STATE(1930), 1, + ACTIONS(5486), 1, + sym_identifier, + ACTIONS(5488), 1, + anon_sym_LPAREN, + STATE(3651), 1, + sym_type, + STATE(3681), 1, + sym_union_type, + STATE(3789), 1, sym_dotted_name, - STATE(1934), 1, + STATE(3791), 1, sym_string, - STATE(1961), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 7, + STATE(3782), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311374] = 13, - ACTIONS(732), 1, + [318295] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5196), 1, sym_float, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + ACTIONS(5504), 1, + anon_sym_LPAREN, + STATE(3483), 1, sym_string, - STATE(5402), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5414), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316314,39 +324298,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311427] = 13, - ACTIONS(576), 1, + [318348] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5464), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5466), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5196), 1, sym_float, - STATE(3758), 1, - sym_type, - STATE(3916), 1, + STATE(3483), 1, sym_string, - STATE(4093), 1, + STATE(3484), 1, sym_dotted_name, + STATE(5346), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5474), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5472), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4042), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316354,120 +324338,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311480] = 14, - ACTIONS(732), 1, + [318401] = 14, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5108), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5384), 1, + ACTIONS(5506), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5508), 1, anon_sym_LPAREN, - STATE(4085), 1, + STATE(3923), 1, sym_type, - STATE(4134), 1, + STATE(3983), 1, + sym_union_type, + STATE(4126), 1, sym_dotted_name, - STATE(4135), 1, + STATE(4154), 1, sym_string, - STATE(4188), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 6, + STATE(4127), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311535] = 13, - ACTIONS(275), 1, + [318456] = 13, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5478), 1, + ACTIONS(5510), 1, sym_identifier, - ACTIONS(5480), 1, + ACTIONS(5512), 1, anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5522), 1, sym_float, - STATE(2284), 1, + STATE(894), 1, sym_type, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, + STATE(1778), 1, sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5488), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(5486), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(2343), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [311588] = 13, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5138), 1, - anon_sym_LPAREN, - ACTIONS(5140), 1, - anon_sym_LBRACK, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5148), 1, - sym_float, - STATE(3476), 1, + STATE(1779), 1, sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(5658), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(1780), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316475,80 +324419,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311641] = 14, - ACTIONS(652), 1, + [318509] = 13, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5418), 1, + ACTIONS(5510), 1, sym_identifier, - ACTIONS(5420), 1, + ACTIONS(5512), 1, anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5522), 1, sym_float, - STATE(2851), 1, + STATE(917), 1, sym_type, - STATE(3012), 1, - sym_dotted_name, - STATE(3013), 1, - sym_union_type, - STATE(3014), 1, + STATE(1778), 1, sym_string, + STATE(1779), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5428), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(5426), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3011), 6, + STATE(1780), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311696] = 13, - ACTIONS(732), 1, + [318562] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5108), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5384), 1, + ACTIONS(5506), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5508), 1, anon_sym_LPAREN, - STATE(4134), 1, + STATE(3984), 1, + sym_type, + STATE(4126), 1, sym_dotted_name, - STATE(4135), 1, + STATE(4154), 1, sym_string, - STATE(4190), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316556,79 +324499,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311749] = 13, - ACTIONS(652), 1, + [318615] = 14, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5418), 1, + ACTIONS(5510), 1, sym_identifier, - ACTIONS(5420), 1, + ACTIONS(5512), 1, anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5522), 1, sym_float, - STATE(3012), 1, - sym_dotted_name, - STATE(3014), 1, + STATE(1778), 1, sym_string, - STATE(3037), 1, + STATE(1779), 1, + sym_dotted_name, + STATE(1820), 1, sym_type, + STATE(2213), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5428), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(5426), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3011), 7, + STATE(1780), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311802] = 13, - ACTIONS(111), 1, + [318670] = 13, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5492), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5494), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5484), 1, sym_float, - STATE(804), 1, - sym_type, - STATE(1667), 1, - sym_string, - STATE(1668), 1, + STATE(2377), 1, sym_dotted_name, + STATE(2378), 1, + sym_string, + STATE(2396), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 7, + STATE(2376), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316636,79 +324580,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311855] = 13, - ACTIONS(652), 1, + [318723] = 14, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5418), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5420), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5484), 1, sym_float, - STATE(2770), 1, - sym_type, - STATE(3012), 1, + STATE(2377), 1, sym_dotted_name, - STATE(3014), 1, + STATE(2378), 1, sym_string, + STATE(2403), 1, + sym_type, + STATE(2566), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5428), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5426), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3011), 7, + STATE(2376), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [311908] = 13, - ACTIONS(504), 1, + [318778] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5250), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3803), 1, sym_string, - STATE(5656), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5525), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316716,39 +324661,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [311961] = 13, - ACTIONS(408), 1, + [318831] = 13, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5122), 1, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5522), 1, sym_float, - ACTIONS(5506), 1, - sym_identifier, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(3513), 1, - sym_type, - STATE(3595), 1, + STATE(1778), 1, sym_string, - STATE(3596), 1, + STATE(1779), 1, sym_dotted_name, + STATE(1822), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(1780), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316756,39 +324701,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312014] = 13, + [318884] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5402), 1, + ACTIONS(5524), 1, sym_identifier, - STATE(4235), 1, + STATE(4126), 1, sym_dotted_name, - STATE(4237), 1, + STATE(4154), 1, sym_string, - STATE(5427), 1, + STATE(5500), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316796,39 +324741,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312067] = 13, - ACTIONS(504), 1, + [318937] = 13, + ACTIONS(614), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5526), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5528), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5532), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5538), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(2851), 1, sym_string, - STATE(5654), 1, + STATE(2853), 1, + sym_dotted_name, + STATE(2871), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5536), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5534), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2858), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316836,79 +324781,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312120] = 13, - ACTIONS(472), 1, + [318990] = 14, + ACTIONS(614), 1, sym_string_start, - ACTIONS(5510), 1, + ACTIONS(5526), 1, sym_identifier, - ACTIONS(5512), 1, + ACTIONS(5528), 1, anon_sym_LPAREN, - ACTIONS(5514), 1, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5532), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, + ACTIONS(5538), 1, sym_float, - STATE(2474), 1, + STATE(2834), 1, sym_type, - STATE(2717), 1, + STATE(2851), 1, sym_string, - STATE(2719), 1, + STATE(2853), 1, sym_dotted_name, + STATE(2867), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5520), 3, + ACTIONS(5536), 3, sym_integer, sym_true, sym_false, - ACTIONS(5518), 5, + ACTIONS(5534), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2720), 7, + STATE(2858), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [312173] = 13, - ACTIONS(598), 1, + [319045] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5450), 1, - sym_identifier, - ACTIONS(5452), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5456), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5298), 1, sym_float, - STATE(2675), 1, - sym_type, - STATE(2811), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(2812), 1, + STATE(4154), 1, sym_string, + STATE(5489), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5458), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2809), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316916,80 +324862,115 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312226] = 14, - ACTIONS(111), 1, + [319098] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5492), 1, - sym_identifier, - ACTIONS(5494), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5298), 1, sym_float, - STATE(786), 1, - sym_type, - STATE(1667), 1, - sym_string, - STATE(1668), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(1710), 1, - sym_union_type, + STATE(4154), 1, + sym_string, + STATE(5517), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 6, + STATE(4127), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [312281] = 13, - ACTIONS(504), 1, + [319151] = 9, + ACTIONS(4757), 1, + anon_sym_not, + ACTIONS(4761), 1, + anon_sym_is, + ACTIONS(5540), 1, + anon_sym_COLON, + ACTIONS(5542), 1, + anon_sym_EQ, + STATE(4794), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4759), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4755), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(5544), 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, + [319196] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5288), 1, + anon_sym_LPAREN, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5298), 1, sym_float, ACTIONS(5524), 1, sym_identifier, - ACTIONS(5526), 1, - anon_sym_LPAREN, - STATE(3476), 1, + STATE(4126), 1, sym_dotted_name, - STATE(3521), 1, + STATE(4154), 1, sym_string, - STATE(3770), 1, + STATE(5592), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -316997,39 +324978,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312334] = 13, - ACTIONS(179), 1, + [319249] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5388), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5390), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5250), 1, sym_float, - STATE(1622), 1, - sym_type, - STATE(1930), 1, - sym_dotted_name, - STATE(1934), 1, + STATE(3803), 1, sym_string, + STATE(3888), 1, + sym_dotted_name, + STATE(5535), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317037,39 +325018,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312387] = 13, - ACTIONS(472), 1, + [319302] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5510), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5512), 1, - anon_sym_LPAREN, - ACTIONS(5514), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, + ACTIONS(5196), 1, sym_float, - STATE(2485), 1, - sym_type, - STATE(2717), 1, + ACTIONS(5504), 1, + anon_sym_LPAREN, + STATE(3483), 1, sym_string, - STATE(2719), 1, + STATE(3484), 1, sym_dotted_name, + STATE(5356), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5520), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5518), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2720), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317077,39 +325058,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312440] = 13, - ACTIONS(504), 1, + [319355] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5238), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5240), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5250), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3803), 1, sym_string, - STATE(5328), 1, + STATE(3888), 1, + sym_dotted_name, + STATE(5567), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317117,115 +325098,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312493] = 9, - ACTIONS(4680), 1, - anon_sym_not, - ACTIONS(4696), 1, - anon_sym_is, - ACTIONS(5528), 1, - anon_sym_COLON, - ACTIONS(5530), 1, - anon_sym_EQ, - STATE(4704), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4694), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4672), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(5532), 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, - [312538] = 13, - ACTIONS(275), 1, + [319408] = 14, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5478), 1, - sym_identifier, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5228), 1, sym_float, - STATE(2298), 1, + ACTIONS(5546), 1, + sym_identifier, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(4103), 1, sym_type, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, + STATE(4270), 1, + sym_union_type, + STATE(4291), 1, sym_string, + STATE(4297), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5486), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2343), 7, + STATE(4296), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [312591] = 13, - ACTIONS(408), 1, + [319463] = 13, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5550), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5554), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5556), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5562), 1, sym_float, - STATE(3595), 1, - sym_string, - STATE(3596), 1, - sym_dotted_name, - STATE(5435), 1, + STATE(929), 1, sym_type, + STATE(963), 1, + sym_dotted_name, + STATE(965), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(957), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317233,79 +325179,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312644] = 13, - ACTIONS(55), 1, + [319516] = 14, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5550), 1, + sym_identifier, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5554), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5556), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5562), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, + STATE(930), 1, + sym_type, + STATE(963), 1, sym_dotted_name, - STATE(4237), 1, + STATE(965), 1, sym_string, - STATE(5422), 1, - sym_type, + STATE(1350), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(957), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [312697] = 13, - ACTIONS(55), 1, + [319571] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5182), 1, + sym_identifier, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + STATE(3483), 1, sym_string, - STATE(5409), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5612), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317313,39 +325260,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312750] = 13, - ACTIONS(111), 1, + [319624] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5492), 1, - sym_identifier, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5228), 1, sym_float, - STATE(1667), 1, + ACTIONS(5546), 1, + sym_identifier, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(4288), 1, + sym_type, + STATE(4291), 1, sym_string, - STATE(1668), 1, + STATE(4297), 1, sym_dotted_name, - STATE(1711), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317353,39 +325300,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312803] = 13, - ACTIONS(153), 1, + [319677] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5404), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5406), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5196), 1, sym_float, - STATE(1634), 1, - sym_type, - STATE(2018), 1, - sym_dotted_name, - STATE(2024), 1, + STATE(3483), 1, sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(5553), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317393,39 +325340,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312856] = 13, + [319730] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(5334), 1, + ACTIONS(5288), 1, + anon_sym_LPAREN, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5534), 1, + ACTIONS(5524), 1, sym_identifier, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(3902), 1, - sym_type, - STATE(4235), 1, + STATE(4126), 1, sym_dotted_name, - STATE(4237), 1, + STATE(4154), 1, sym_string, + STATE(5492), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317433,39 +325380,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312909] = 13, - ACTIONS(504), 1, + [319783] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5140), 1, + ACTIONS(5186), 1, + anon_sym_LPAREN, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5526), 1, - anon_sym_LPAREN, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5310), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5618), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317473,39 +325420,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [312962] = 13, - ACTIONS(85), 1, + [319836] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5538), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5540), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5542), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5196), 1, sym_float, - STATE(771), 1, - sym_type, - STATE(1605), 1, - sym_dotted_name, - STATE(1606), 1, + STATE(3483), 1, sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(5621), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317513,39 +325460,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313015] = 13, - ACTIONS(576), 1, + [319889] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5464), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5466), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5196), 1, sym_float, - STATE(3849), 1, - sym_type, - STATE(3916), 1, + STATE(3483), 1, sym_string, - STATE(4093), 1, + STATE(3484), 1, sym_dotted_name, + STATE(5352), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5474), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5472), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4042), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317553,39 +325500,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313068] = 13, - ACTIONS(504), 1, + [319942] = 13, + ACTIONS(536), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5564), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5566), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5568), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5570), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5576), 1, sym_float, - STATE(3476), 1, + STATE(2735), 1, sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(5677), 1, + STATE(2786), 1, sym_type, + STATE(2839), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5574), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5572), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2769), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317593,39 +325540,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313121] = 13, - ACTIONS(732), 1, + [319995] = 13, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5578), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5580), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5582), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5590), 1, sym_float, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, + STATE(4184), 1, sym_string, - STATE(5410), 1, + STATE(4185), 1, + sym_dotted_name, + STATE(4192), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5588), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5586), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4186), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317633,39 +325580,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313174] = 13, - ACTIONS(552), 1, + [320048] = 13, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5592), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5604), 1, sym_float, - STATE(3767), 1, + STATE(524), 1, + sym_type, + STATE(908), 1, sym_string, - STATE(3769), 1, + STATE(910), 1, sym_dotted_name, - STATE(5630), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317673,39 +325620,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313227] = 13, - ACTIONS(504), 1, + [320101] = 13, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5510), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5512), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5522), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(5639), 1, + STATE(923), 1, sym_type, + STATE(1778), 1, + sym_string, + STATE(1779), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(1780), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317713,79 +325660,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313280] = 13, - ACTIONS(275), 1, + [320154] = 14, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5478), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5480), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5618), 1, sym_float, - STATE(2282), 1, - sym_type, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, + STATE(2443), 1, sym_string, + STATE(2444), 1, + sym_dotted_name, + STATE(2698), 1, + sym_type, + STATE(2746), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5486), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2343), 7, + STATE(2445), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [313333] = 13, - ACTIONS(552), 1, + [320209] = 13, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5618), 1, sym_float, - STATE(3767), 1, + STATE(2443), 1, sym_string, - STATE(3769), 1, + STATE(2444), 1, sym_dotted_name, - STATE(5439), 1, + STATE(2695), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317793,39 +325741,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313386] = 13, - ACTIONS(408), 1, + [320262] = 13, + ACTIONS(614), 1, sym_string_start, - ACTIONS(5122), 1, + ACTIONS(5526), 1, + sym_identifier, + ACTIONS(5528), 1, + anon_sym_LPAREN, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5532), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5538), 1, sym_float, - ACTIONS(5506), 1, - sym_identifier, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(3545), 1, + STATE(2812), 1, sym_type, - STATE(3595), 1, + STATE(2851), 1, sym_string, - STATE(3596), 1, + STATE(2853), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5536), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5534), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(2858), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317833,80 +325781,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313439] = 14, - ACTIONS(504), 1, + [320315] = 13, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5440), 1, + sym_identifier, + ACTIONS(5442), 1, + anon_sym_LPAREN, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5452), 1, sym_float, - ACTIONS(5524), 1, - sym_identifier, - ACTIONS(5552), 1, - anon_sym_LPAREN, - STATE(3476), 1, + STATE(878), 1, + sym_type, + STATE(1972), 1, sym_dotted_name, - STATE(3521), 1, + STATE(1973), 1, sym_string, - STATE(4274), 1, - sym_type, - STATE(4409), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 6, + STATE(1970), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [313494] = 13, + [320368] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5402), 1, + ACTIONS(5524), 1, sym_identifier, - STATE(4235), 1, + STATE(4126), 1, sym_dotted_name, - STATE(4237), 1, + STATE(4154), 1, sym_string, - STATE(5407), 1, + STATE(5483), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317914,39 +325861,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313547] = 13, - ACTIONS(55), 1, + [320421] = 13, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5440), 1, + sym_identifier, + ACTIONS(5442), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5452), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, + STATE(857), 1, + sym_type, + STATE(1972), 1, sym_dotted_name, - STATE(4237), 1, + STATE(1973), 1, sym_string, - STATE(5425), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(1970), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -317954,79 +325901,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313600] = 13, - ACTIONS(552), 1, + [320474] = 14, + ACTIONS(536), 1, sym_string_start, - ACTIONS(5178), 1, + ACTIONS(5564), 1, + sym_identifier, + ACTIONS(5566), 1, + anon_sym_LPAREN, + ACTIONS(5568), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5570), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5576), 1, sym_float, - ACTIONS(5432), 1, - sym_identifier, - ACTIONS(5434), 1, - anon_sym_LPAREN, - STATE(3664), 1, + STATE(2688), 1, sym_type, - STATE(3767), 1, - sym_string, - STATE(3769), 1, + STATE(2735), 1, sym_dotted_name, + STATE(2787), 1, + sym_union_type, + STATE(2839), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5574), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5572), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(2769), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [313653] = 13, + [320529] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5402), 1, + ACTIONS(5506), 1, sym_identifier, - STATE(4235), 1, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3882), 1, + sym_type, + STATE(4126), 1, sym_dotted_name, - STATE(4237), 1, + STATE(4154), 1, sym_string, - STATE(5418), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318034,39 +325982,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313706] = 13, - ACTIONS(700), 1, + [320582] = 13, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5436), 1, + ACTIONS(5440), 1, sym_identifier, - ACTIONS(5438), 1, + ACTIONS(5442), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5452), 1, sym_float, - STATE(2808), 1, + STATE(843), 1, sym_type, - STATE(2971), 1, - sym_string, - STATE(3097), 1, + STATE(1972), 1, sym_dotted_name, + STATE(1973), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5446), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5444), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2972), 7, + STATE(1970), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318074,39 +326022,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313759] = 13, - ACTIONS(504), 1, + [320635] = 13, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5440), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5442), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5452), 1, sym_float, - STATE(3476), 1, + STATE(824), 1, + sym_type, + STATE(1972), 1, sym_dotted_name, - STATE(3521), 1, + STATE(1973), 1, sym_string, - STATE(5651), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(1970), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318114,39 +326062,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313812] = 13, - ACTIONS(408), 1, + [320688] = 13, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5122), 1, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5522), 1, sym_float, - ACTIONS(5506), 1, - sym_identifier, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(3551), 1, + STATE(996), 1, sym_type, - STATE(3595), 1, + STATE(1778), 1, sym_string, - STATE(3596), 1, + STATE(1779), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(1780), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318154,39 +326102,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313865] = 13, - ACTIONS(179), 1, + [320741] = 13, + ACTIONS(638), 1, sym_string_start, - ACTIONS(5388), 1, + ACTIONS(5454), 1, sym_identifier, - ACTIONS(5390), 1, + ACTIONS(5456), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5458), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5466), 1, sym_float, - STATE(1620), 1, + STATE(2803), 1, sym_type, - STATE(1930), 1, + STATE(2894), 1, sym_dotted_name, - STATE(1934), 1, + STATE(2895), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5464), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(5462), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 7, + STATE(2893), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318194,39 +326142,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313918] = 13, - ACTIONS(179), 1, + [320794] = 13, + ACTIONS(638), 1, sym_string_start, - ACTIONS(5388), 1, + ACTIONS(5454), 1, sym_identifier, - ACTIONS(5390), 1, + ACTIONS(5456), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5458), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5466), 1, sym_float, - STATE(1617), 1, + STATE(2797), 1, sym_type, - STATE(1930), 1, + STATE(2894), 1, sym_dotted_name, - STATE(1934), 1, + STATE(2895), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5464), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(5462), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 7, + STATE(2893), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318234,39 +326182,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [313971] = 13, - ACTIONS(504), 1, + [320847] = 13, + ACTIONS(638), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5454), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5456), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5458), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5466), 1, sym_float, - STATE(3476), 1, + STATE(2784), 1, + sym_type, + STATE(2894), 1, sym_dotted_name, - STATE(3521), 1, + STATE(2895), 1, sym_string, - STATE(5314), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5464), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5462), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2893), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318274,39 +326222,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314024] = 13, - ACTIONS(528), 1, + [320900] = 13, + ACTIONS(638), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5454), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5456), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5458), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5466), 1, sym_float, - STATE(2563), 1, + STATE(2770), 1, + sym_type, + STATE(2894), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2895), 1, sym_string, - STATE(2742), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5464), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5462), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(2893), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318314,121 +326262,119 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314077] = 14, - ACTIONS(528), 1, + [320953] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5370), 1, - sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5298), 1, sym_float, - STATE(2563), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(2565), 1, + STATE(4154), 1, sym_string, - STATE(2741), 1, + STATE(5481), 1, sym_type, - STATE(2846), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 6, + STATE(4127), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [314132] = 14, - ACTIONS(408), 1, + [321006] = 13, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5122), 1, + ACTIONS(5592), 1, + sym_identifier, + ACTIONS(5594), 1, + anon_sym_LPAREN, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5604), 1, sym_float, - ACTIONS(5506), 1, - sym_identifier, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(3550), 1, + STATE(535), 1, sym_type, - STATE(3595), 1, + STATE(908), 1, sym_string, - STATE(3596), 1, + STATE(910), 1, sym_dotted_name, - STATE(3622), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 6, + STATE(911), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [314187] = 13, - ACTIONS(732), 1, + [321059] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5102), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5298), 1, sym_float, - STATE(4134), 1, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3897), 1, + sym_type, + STATE(4126), 1, sym_dotted_name, - STATE(4135), 1, + STATE(4154), 1, sym_string, - STATE(5396), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318436,39 +326382,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314240] = 13, - ACTIONS(408), 1, + [321112] = 13, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5578), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5580), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5582), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5590), 1, sym_float, - STATE(3595), 1, + STATE(3853), 1, + sym_type, + STATE(4184), 1, sym_string, - STATE(3596), 1, + STATE(4185), 1, sym_dotted_name, - STATE(5472), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5588), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5586), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4186), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318476,39 +326422,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314293] = 13, - ACTIONS(85), 1, + [321165] = 13, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5538), 1, + ACTIONS(5578), 1, sym_identifier, - ACTIONS(5540), 1, + ACTIONS(5580), 1, anon_sym_LPAREN, - ACTIONS(5542), 1, + ACTIONS(5582), 1, anon_sym_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5590), 1, sym_float, - STATE(769), 1, + STATE(3804), 1, sym_type, - STATE(1605), 1, - sym_dotted_name, - STATE(1606), 1, + STATE(4184), 1, sym_string, + STATE(4185), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5588), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(5586), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 7, + STATE(4186), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318516,80 +326462,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314346] = 14, - ACTIONS(504), 1, + [321218] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5524), 1, + ACTIONS(5546), 1, sym_identifier, - ACTIONS(5552), 1, + ACTIONS(5548), 1, anon_sym_LPAREN, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(3820), 1, + STATE(4238), 1, sym_type, - STATE(3913), 1, - sym_union_type, + STATE(4291), 1, + sym_string, + STATE(4297), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 6, + STATE(4296), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [314401] = 13, - ACTIONS(504), 1, + [321271] = 13, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5140), 1, - anon_sym_LBRACK, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5148), 1, - sym_float, - ACTIONS(5524), 1, + ACTIONS(5550), 1, sym_identifier, ACTIONS(5552), 1, anon_sym_LPAREN, - STATE(3476), 1, + ACTIONS(5554), 1, + anon_sym_LBRACK, + ACTIONS(5556), 1, + anon_sym_LBRACE, + ACTIONS(5562), 1, + sym_float, + STATE(649), 1, + sym_type, + STATE(963), 1, sym_dotted_name, - STATE(3521), 1, + STATE(965), 1, sym_string, - STATE(3736), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(957), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318597,39 +326542,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314454] = 13, - ACTIONS(576), 1, + [321324] = 13, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5464), 1, + ACTIONS(5578), 1, sym_identifier, - ACTIONS(5466), 1, + ACTIONS(5580), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5582), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5590), 1, sym_float, - STATE(3760), 1, + STATE(3829), 1, sym_type, - STATE(3916), 1, + STATE(4184), 1, sym_string, - STATE(4093), 1, + STATE(4185), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5474), 3, + ACTIONS(5588), 3, sym_integer, sym_true, sym_false, - ACTIONS(5472), 5, + ACTIONS(5586), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4042), 7, + STATE(4186), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318637,39 +326582,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314507] = 13, - ACTIONS(576), 1, + [321377] = 13, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5464), 1, + ACTIONS(5550), 1, sym_identifier, - ACTIONS(5466), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5554), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5556), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5562), 1, sym_float, - STATE(3804), 1, + STATE(666), 1, sym_type, - STATE(3916), 1, - sym_string, - STATE(4093), 1, + STATE(963), 1, sym_dotted_name, + STATE(965), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5474), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5472), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4042), 7, + STATE(957), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318677,39 +326622,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314560] = 13, - ACTIONS(700), 1, + [321430] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5436), 1, - sym_identifier, - ACTIONS(5438), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5298), 1, sym_float, - STATE(2825), 1, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3911), 1, sym_type, - STATE(2971), 1, - sym_string, - STATE(3097), 1, + STATE(4126), 1, sym_dotted_name, + STATE(4154), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5446), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5444), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2972), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318717,39 +326662,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314613] = 13, - ACTIONS(528), 1, + [321483] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5374), 1, + ACTIONS(5186), 1, + anon_sym_LPAREN, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5554), 1, - anon_sym_LPAREN, - STATE(2563), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(3483), 1, sym_string, - STATE(2861), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5628), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318757,39 +326702,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314666] = 13, - ACTIONS(111), 1, + [321536] = 13, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5492), 1, + ACTIONS(5578), 1, sym_identifier, - ACTIONS(5494), 1, + ACTIONS(5580), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5582), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5590), 1, sym_float, - STATE(801), 1, + STATE(3969), 1, sym_type, - STATE(1667), 1, + STATE(4184), 1, sym_string, - STATE(1668), 1, + STATE(4185), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5588), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(5586), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 7, + STATE(4186), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318797,39 +326742,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314719] = 13, - ACTIONS(504), 1, + [321589] = 13, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5550), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5554), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5556), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5562), 1, sym_float, - STATE(3476), 1, + STATE(660), 1, + sym_type, + STATE(963), 1, sym_dotted_name, - STATE(3521), 1, + STATE(965), 1, sym_string, - STATE(5647), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(957), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318837,39 +326782,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314772] = 13, - ACTIONS(576), 1, + [321642] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5464), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5466), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5196), 1, sym_float, - STATE(3916), 1, + STATE(3483), 1, sym_string, - STATE(4040), 1, - sym_type, - STATE(4093), 1, + STATE(3484), 1, sym_dotted_name, + STATE(5636), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5474), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5472), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4042), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318877,39 +326822,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314825] = 13, - ACTIONS(408), 1, + [321695] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5122), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5298), 1, sym_float, ACTIONS(5506), 1, sym_identifier, ACTIONS(5508), 1, anon_sym_LPAREN, - STATE(3523), 1, + STATE(3928), 1, sym_type, - STATE(3595), 1, - sym_string, - STATE(3596), 1, + STATE(4126), 1, sym_dotted_name, + STATE(4154), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318917,80 +326862,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314878] = 14, - ACTIONS(472), 1, + [321748] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5510), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5512), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5514), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, + ACTIONS(5196), 1, sym_float, - STATE(2515), 1, - sym_type, - STATE(2717), 1, + STATE(3483), 1, sym_string, - STATE(2719), 1, + STATE(3484), 1, sym_dotted_name, - STATE(2731), 1, - sym_union_type, + STATE(5640), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5520), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5518), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2720), 6, + STATE(3485), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [314933] = 13, - ACTIONS(55), 1, + [321801] = 13, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5334), 1, + ACTIONS(5550), 1, + sym_identifier, + ACTIONS(5552), 1, + anon_sym_LPAREN, + ACTIONS(5554), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5556), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5562), 1, sym_float, - ACTIONS(5534), 1, - sym_identifier, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(4041), 1, + STATE(655), 1, sym_type, - STATE(4235), 1, + STATE(963), 1, sym_dotted_name, - STATE(4237), 1, + STATE(965), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(957), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -318998,39 +326942,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [314986] = 13, - ACTIONS(504), 1, + [321854] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5524), 1, + ACTIONS(5546), 1, sym_identifier, - ACTIONS(5526), 1, + ACTIONS(5548), 1, anon_sym_LPAREN, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(4112), 1, + STATE(4237), 1, sym_type, + STATE(4291), 1, + sym_string, + STATE(4297), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319038,39 +326982,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315039] = 13, - ACTIONS(504), 1, + [321907] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5138), 1, - anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5228), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(5645), 1, + ACTIONS(5546), 1, + sym_identifier, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(4235), 1, sym_type, + STATE(4291), 1, + sym_string, + STATE(4297), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319078,39 +327022,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315092] = 13, - ACTIONS(275), 1, + [321960] = 13, + ACTIONS(614), 1, sym_string_start, - ACTIONS(5478), 1, + ACTIONS(5526), 1, sym_identifier, - ACTIONS(5480), 1, + ACTIONS(5528), 1, anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5532), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5538), 1, sym_float, - STATE(2300), 1, + STATE(2805), 1, sym_type, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, + STATE(2851), 1, sym_string, + STATE(2853), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 3, + ACTIONS(5536), 3, sym_integer, sym_true, sym_false, - ACTIONS(5486), 5, + ACTIONS(5534), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2343), 7, + STATE(2858), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319118,39 +327062,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315145] = 13, - ACTIONS(472), 1, + [322013] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5510), 1, - sym_identifier, - ACTIONS(5512), 1, - anon_sym_LPAREN, - ACTIONS(5514), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, + ACTIONS(5228), 1, sym_float, - STATE(2717), 1, + ACTIONS(5546), 1, + sym_identifier, + ACTIONS(5548), 1, + anon_sym_LPAREN, + STATE(4234), 1, + sym_type, + STATE(4291), 1, sym_string, - STATE(2719), 1, + STATE(4297), 1, sym_dotted_name, - STATE(2727), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5520), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5518), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2720), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319158,39 +327102,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315198] = 13, - ACTIONS(598), 1, + [322066] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5450), 1, - sym_identifier, - ACTIONS(5452), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5456), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5298), 1, sym_float, - STATE(2718), 1, - sym_type, - STATE(2811), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(2812), 1, + STATE(4154), 1, sym_string, + STATE(5490), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5458), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2809), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319198,39 +327142,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315251] = 13, - ACTIONS(700), 1, + [322119] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5436), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5438), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5196), 1, sym_float, - STATE(2834), 1, - sym_type, - STATE(2971), 1, + STATE(3483), 1, sym_string, - STATE(3097), 1, + STATE(3484), 1, sym_dotted_name, + STATE(5647), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5446), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5444), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2972), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319238,121 +327182,121 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315304] = 14, - ACTIONS(153), 1, + [322172] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5404), 1, - sym_identifier, - ACTIONS(5406), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5196), 1, sym_float, - STATE(1420), 1, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(3483), 1, + sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(3692), 1, sym_type, - STATE(1915), 1, + STATE(3916), 1, sym_union_type, - STATE(2018), 1, - sym_dotted_name, - STATE(2024), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 6, + STATE(3485), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [315359] = 14, - ACTIONS(576), 1, + [322227] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5464), 1, - sym_identifier, - ACTIONS(5466), 1, - anon_sym_LPAREN, - ACTIONS(5468), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5196), 1, sym_float, - STATE(3751), 1, - sym_type, - STATE(3916), 1, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(3483), 1, sym_string, - STATE(4036), 1, - sym_union_type, - STATE(4093), 1, + STATE(3484), 1, sym_dotted_name, + STATE(4478), 1, + sym_type, + STATE(4503), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5474), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5472), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4042), 6, + STATE(3485), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [315414] = 13, - ACTIONS(504), 1, + [322282] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5288), 1, + anon_sym_LPAREN, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5298), 1, sym_float, ACTIONS(5524), 1, sym_identifier, - ACTIONS(5552), 1, - anon_sym_LPAREN, - STATE(3476), 1, + STATE(4126), 1, sym_dotted_name, - STATE(3521), 1, + STATE(4154), 1, sym_string, - STATE(3846), 1, + STATE(5466), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319360,39 +327304,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315467] = 13, - ACTIONS(434), 1, + [322335] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5356), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5358), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5196), 1, sym_float, - STATE(2366), 1, - sym_type, - STATE(2436), 1, - sym_dotted_name, - STATE(2438), 1, + STATE(3483), 1, sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(5651), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319400,39 +327344,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315520] = 13, - ACTIONS(153), 1, + [322388] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5404), 1, + ACTIONS(5188), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, + sym_float, + ACTIONS(5436), 1, sym_identifier, - ACTIONS(5406), 1, + ACTIONS(5504), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + STATE(3483), 1, + sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(3927), 1, + sym_type, + STATE(4244), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5194), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5192), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3485), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [322443] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5288), 1, + anon_sym_LPAREN, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5298), 1, sym_float, - STATE(1619), 1, - sym_type, - STATE(2018), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(2024), 1, + STATE(4154), 1, sym_string, + STATE(5479), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319440,80 +327425,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315573] = 14, - ACTIONS(111), 1, + [322496] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5492), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5494), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5228), 1, sym_float, - STATE(1436), 1, - sym_type, - STATE(1667), 1, + STATE(4291), 1, sym_string, - STATE(1668), 1, + STATE(4297), 1, sym_dotted_name, - STATE(1926), 1, - sym_union_type, + STATE(5503), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 6, + STATE(4296), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [315628] = 13, - ACTIONS(552), 1, + [322549] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5178), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5432), 1, + ACTIONS(5436), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5504), 1, anon_sym_LPAREN, - STATE(3658), 1, - sym_type, - STATE(3767), 1, + STATE(3483), 1, sym_string, - STATE(3769), 1, + STATE(3484), 1, sym_dotted_name, + STATE(4046), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319521,39 +327505,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315681] = 13, - ACTIONS(434), 1, + [322602] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5356), 1, - sym_identifier, - ACTIONS(5358), 1, - anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5250), 1, sym_float, - STATE(2330), 1, + ACTIONS(5468), 1, + sym_identifier, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3734), 1, sym_type, - STATE(2436), 1, - sym_dotted_name, - STATE(2438), 1, + STATE(3803), 1, sym_string, + STATE(3888), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319561,39 +327545,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315734] = 13, - ACTIONS(552), 1, + [322655] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5178), 1, + ACTIONS(5214), 1, + sym_identifier, + ACTIONS(5216), 1, + anon_sym_LPAREN, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5432), 1, - sym_identifier, - ACTIONS(5434), 1, - anon_sym_LPAREN, - STATE(3621), 1, - sym_type, - STATE(3767), 1, + STATE(4291), 1, sym_string, - STATE(3769), 1, + STATE(4297), 1, sym_dotted_name, + STATE(5472), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319601,39 +327585,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315787] = 13, - ACTIONS(504), 1, + [322708] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5298), 1, sym_float, - STATE(3476), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(3521), 1, + STATE(4154), 1, sym_string, - STATE(5648), 1, + STATE(5487), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319641,39 +327625,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315840] = 13, - ACTIONS(598), 1, + [322761] = 13, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5450), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5452), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5456), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5618), 1, sym_float, - STATE(2698), 1, - sym_type, - STATE(2811), 1, - sym_dotted_name, - STATE(2812), 1, + STATE(2443), 1, sym_string, + STATE(2444), 1, + sym_dotted_name, + STATE(2677), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5458), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2809), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319681,39 +327665,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315893] = 13, - ACTIONS(504), 1, + [322814] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5140), 1, + ACTIONS(5288), 1, + anon_sym_LPAREN, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5298), 1, sym_float, - ACTIONS(5526), 1, - anon_sym_LPAREN, - STATE(3476), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(3521), 1, + STATE(4154), 1, sym_string, - STATE(5278), 1, + STATE(5494), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319721,39 +327705,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315946] = 13, - ACTIONS(111), 1, + [322867] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5492), 1, - sym_identifier, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5250), 1, sym_float, - STATE(805), 1, + ACTIONS(5468), 1, + sym_identifier, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3731), 1, sym_type, - STATE(1667), 1, + STATE(3803), 1, sym_string, - STATE(1668), 1, + STATE(3888), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319761,39 +327745,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [315999] = 13, - ACTIONS(85), 1, + [322920] = 13, + ACTIONS(560), 1, sym_string_start, - ACTIONS(5538), 1, - sym_identifier, - ACTIONS(5540), 1, - anon_sym_LPAREN, - ACTIONS(5542), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5250), 1, sym_float, - STATE(772), 1, + ACTIONS(5468), 1, + sym_identifier, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3728), 1, sym_type, - STATE(1605), 1, - sym_dotted_name, - STATE(1606), 1, + STATE(3803), 1, sym_string, + STATE(3888), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319801,39 +327785,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316052] = 13, - ACTIONS(434), 1, + [322973] = 13, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5356), 1, + ACTIONS(5592), 1, sym_identifier, - ACTIONS(5358), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5604), 1, sym_float, - STATE(2340), 1, + STATE(545), 1, sym_type, - STATE(2436), 1, - sym_dotted_name, - STATE(2438), 1, + STATE(908), 1, sym_string, + STATE(910), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 7, + STATE(911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319841,39 +327825,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316105] = 13, - ACTIONS(528), 1, + [323026] = 13, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5372), 1, - anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5618), 1, sym_float, - STATE(2563), 1, - sym_dotted_name, - STATE(2565), 1, + ACTIONS(5620), 1, + anon_sym_LPAREN, + STATE(2443), 1, sym_string, - STATE(2746), 1, + STATE(2444), 1, + sym_dotted_name, + STATE(2957), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319881,39 +327865,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316158] = 13, - ACTIONS(153), 1, + [323079] = 13, + ACTIONS(614), 1, sym_string_start, - ACTIONS(5404), 1, + ACTIONS(5526), 1, sym_identifier, - ACTIONS(5406), 1, + ACTIONS(5528), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5532), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5538), 1, sym_float, - STATE(1933), 1, + STATE(2799), 1, sym_type, - STATE(2018), 1, - sym_dotted_name, - STATE(2024), 1, + STATE(2851), 1, sym_string, + STATE(2853), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5536), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(5534), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 7, + STATE(2858), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319921,39 +327905,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316211] = 13, - ACTIONS(55), 1, + [323132] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5334), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5534), 1, + ACTIONS(5436), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5438), 1, anon_sym_LPAREN, - STATE(3912), 1, - sym_type, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + STATE(3483), 1, sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(3708), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -319961,39 +327945,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316264] = 13, - ACTIONS(472), 1, + [323185] = 13, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5510), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5512), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - ACTIONS(5514), 1, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, + ACTIONS(5484), 1, sym_float, - STATE(2467), 1, + STATE(2291), 1, sym_type, - STATE(2717), 1, - sym_string, - STATE(2719), 1, + STATE(2377), 1, sym_dotted_name, + STATE(2378), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5520), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5518), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2720), 7, + STATE(2376), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320001,39 +327985,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316317] = 13, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(5538), 1, - sym_identifier, - ACTIONS(5540), 1, - anon_sym_LPAREN, - ACTIONS(5542), 1, + [323238] = 13, + ACTIONS(560), 1, + sym_string_start, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5246), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5250), 1, sym_float, - STATE(1573), 1, + ACTIONS(5468), 1, + sym_identifier, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3727), 1, sym_type, - STATE(1605), 1, - sym_dotted_name, - STATE(1606), 1, + STATE(3803), 1, sym_string, + STATE(3888), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5248), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(1365), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 7, + STATE(3813), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320041,80 +328025,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316370] = 14, - ACTIONS(153), 1, + [323291] = 14, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5404), 1, + ACTIONS(5622), 1, sym_identifier, - ACTIONS(5406), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5634), 1, sym_float, - STATE(1877), 1, + STATE(2562), 1, sym_type, - STATE(2018), 1, - sym_dotted_name, - STATE(2024), 1, + STATE(2622), 1, sym_string, - STATE(2103), 1, + STATE(2623), 1, + sym_dotted_name, + STATE(2650), 1, sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5414), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5412), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2017), 6, + STATE(2671), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [316425] = 13, + [323346] = 13, ACTIONS(504), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5618), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(2443), 1, sym_string, - STATE(5643), 1, + STATE(2444), 1, + sym_dotted_name, + STATE(2657), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320122,39 +328106,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316478] = 13, - ACTIONS(55), 1, + [323399] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5182), 1, + sym_identifier, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + STATE(3483), 1, sym_string, - STATE(5387), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5754), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320162,80 +328146,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316531] = 14, - ACTIONS(85), 1, + [323452] = 13, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5538), 1, + ACTIONS(5472), 1, sym_identifier, - ACTIONS(5540), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - ACTIONS(5542), 1, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5484), 1, sym_float, - STATE(775), 1, + STATE(2321), 1, sym_type, - STATE(1574), 1, - sym_union_type, - STATE(1605), 1, + STATE(2377), 1, sym_dotted_name, - STATE(1606), 1, + STATE(2378), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 6, + STATE(2376), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [316586] = 13, - ACTIONS(55), 1, + [323505] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5182), 1, + sym_identifier, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + STATE(3483), 1, sym_string, - STATE(5404), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5339), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320243,39 +328226,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316639] = 13, - ACTIONS(55), 1, + [323558] = 13, + ACTIONS(730), 1, sym_string_start, - ACTIONS(5334), 1, + ACTIONS(5490), 1, + sym_identifier, + ACTIONS(5492), 1, + anon_sym_LPAREN, + ACTIONS(5494), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5502), 1, sym_float, - ACTIONS(5534), 1, - sym_identifier, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(3978), 1, + STATE(2943), 1, sym_type, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + STATE(3127), 1, sym_string, + STATE(3128), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5500), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5498), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3129), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320283,39 +328266,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316692] = 13, - ACTIONS(434), 1, + [323611] = 13, + ACTIONS(614), 1, sym_string_start, - ACTIONS(5356), 1, + ACTIONS(5526), 1, sym_identifier, - ACTIONS(5358), 1, + ACTIONS(5528), 1, anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5530), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5532), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5538), 1, sym_float, - STATE(2349), 1, + STATE(2816), 1, sym_type, - STATE(2436), 1, - sym_dotted_name, - STATE(2438), 1, + STATE(2851), 1, sym_string, + STATE(2853), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5536), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(5534), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 7, + STATE(2858), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320323,39 +328306,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316745] = 13, - ACTIONS(504), 1, + [323664] = 13, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5622), 1, + sym_identifier, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5634), 1, sym_float, - ACTIONS(5524), 1, - sym_identifier, - ACTIONS(5552), 1, - anon_sym_LPAREN, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(3837), 1, + STATE(2560), 1, sym_type, + STATE(2622), 1, + sym_string, + STATE(2623), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2671), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320363,39 +328346,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316798] = 13, - ACTIONS(732), 1, + [323717] = 13, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5108), 1, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5474), 1, + anon_sym_LPAREN, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5484), 1, sym_float, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(3980), 1, + STATE(2312), 1, sym_type, - STATE(4134), 1, + STATE(2377), 1, sym_dotted_name, - STATE(4135), 1, + STATE(2378), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(2376), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320403,39 +328386,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316851] = 13, - ACTIONS(504), 1, + [323770] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5138), 1, - anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(3483), 1, sym_string, - STATE(5641), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(3711), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320443,39 +328426,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316904] = 13, - ACTIONS(111), 1, + [323823] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5492), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5494), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5196), 1, sym_float, - STATE(797), 1, - sym_type, - STATE(1667), 1, + STATE(3483), 1, sym_string, - STATE(1668), 1, + STATE(3484), 1, sym_dotted_name, + STATE(5654), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5502), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5500), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1669), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320483,39 +328466,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [316957] = 13, - ACTIONS(732), 1, + [323876] = 13, + ACTIONS(281), 1, sym_string_start, - ACTIONS(5108), 1, + ACTIONS(5472), 1, + sym_identifier, + ACTIONS(5474), 1, + anon_sym_LPAREN, + ACTIONS(5476), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5478), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5484), 1, sym_float, - ACTIONS(5384), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(3975), 1, + STATE(2302), 1, sym_type, - STATE(4134), 1, + STATE(2377), 1, sym_dotted_name, - STATE(4135), 1, + STATE(2378), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5482), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5480), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(2376), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320523,79 +328506,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317010] = 13, - ACTIONS(85), 1, + [323929] = 14, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5538), 1, + ACTIONS(5578), 1, sym_identifier, - ACTIONS(5540), 1, + ACTIONS(5580), 1, anon_sym_LPAREN, - ACTIONS(5542), 1, + ACTIONS(5582), 1, anon_sym_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, + ACTIONS(5590), 1, sym_float, - STATE(770), 1, + STATE(3957), 1, sym_type, - STATE(1605), 1, - sym_dotted_name, - STATE(1606), 1, + STATE(4184), 1, sym_string, + STATE(4185), 1, + sym_dotted_name, + STATE(4191), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5588), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(5586), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 7, + STATE(4186), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317063] = 13, - ACTIONS(408), 1, + [323984] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5122), 1, + ACTIONS(5214), 1, + sym_identifier, + ACTIONS(5216), 1, + anon_sym_LPAREN, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5228), 1, sym_float, - ACTIONS(5506), 1, - sym_identifier, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(3497), 1, - sym_type, - STATE(3595), 1, + STATE(4291), 1, sym_string, - STATE(3596), 1, + STATE(4297), 1, sym_dotted_name, + STATE(5501), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(4296), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320603,162 +328587,161 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317116] = 14, - ACTIONS(598), 1, + [324037] = 14, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5450), 1, + ACTIONS(5592), 1, sym_identifier, - ACTIONS(5452), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5456), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5604), 1, sym_float, - STATE(2758), 1, + STATE(868), 1, sym_type, - STATE(2775), 1, - sym_union_type, - STATE(2811), 1, - sym_dotted_name, - STATE(2812), 1, + STATE(908), 1, sym_string, + STATE(910), 1, + sym_dotted_name, + STATE(1395), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(5458), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2809), 6, + STATE(911), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317171] = 14, - ACTIONS(434), 1, + [324092] = 14, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5356), 1, + ACTIONS(5592), 1, sym_identifier, - ACTIONS(5358), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5604), 1, sym_float, - STATE(2436), 1, - sym_dotted_name, - STATE(2438), 1, - sym_string, - STATE(2999), 1, + STATE(735), 1, sym_type, - STATE(3225), 1, + STATE(845), 1, sym_union_type, + STATE(908), 1, + sym_string, + STATE(910), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 6, + STATE(911), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317226] = 14, - ACTIONS(504), 1, + [324147] = 13, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5592), 1, + sym_identifier, + ACTIONS(5594), 1, + anon_sym_LPAREN, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5604), 1, sym_float, - ACTIONS(5524), 1, - sym_identifier, - ACTIONS(5526), 1, - anon_sym_LPAREN, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(3854), 1, + STATE(565), 1, sym_type, - STATE(3937), 1, - sym_union_type, + STATE(908), 1, + sym_string, + STATE(910), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 6, + STATE(911), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317281] = 13, - ACTIONS(652), 1, + [324200] = 13, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5418), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5420), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5618), 1, sym_float, - STATE(2787), 1, - sym_type, - STATE(3012), 1, - sym_dotted_name, - STATE(3014), 1, + STATE(2443), 1, sym_string, + STATE(2444), 1, + sym_dotted_name, + STATE(2661), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5428), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5426), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3011), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320766,80 +328749,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317334] = 14, - ACTIONS(179), 1, + [324253] = 13, + ACTIONS(698), 1, sym_string_start, - ACTIONS(5388), 1, + ACTIONS(5214), 1, sym_identifier, - ACTIONS(5390), 1, + ACTIONS(5216), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5220), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5228), 1, sym_float, - STATE(1471), 1, - sym_type, - STATE(1930), 1, - sym_dotted_name, - STATE(1934), 1, + STATE(4291), 1, sym_string, - STATE(2041), 1, - sym_union_type, + STATE(4297), 1, + sym_dotted_name, + STATE(5505), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5226), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(5224), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 6, + STATE(4296), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317389] = 13, - ACTIONS(732), 1, + [324306] = 13, + ACTIONS(730), 1, sym_string_start, - ACTIONS(5102), 1, + ACTIONS(5490), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5492), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5494), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5502), 1, sym_float, - STATE(4134), 1, - sym_dotted_name, - STATE(4135), 1, - sym_string, - STATE(5382), 1, + STATE(2950), 1, sym_type, + STATE(3127), 1, + sym_string, + STATE(3128), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5500), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5498), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(3129), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320847,39 +328829,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317442] = 13, - ACTIONS(504), 1, + [324359] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5134), 1, - sym_identifier, - ACTIONS(5138), 1, - anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5212), 1, sym_float, - STATE(3476), 1, + ACTIONS(5486), 1, + sym_identifier, + ACTIONS(5488), 1, + anon_sym_LPAREN, + STATE(3592), 1, + sym_type, + STATE(3789), 1, sym_dotted_name, - STATE(3521), 1, + STATE(3791), 1, sym_string, - STATE(5631), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320887,39 +328869,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317495] = 13, - ACTIONS(552), 1, + [324412] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5196), 1, sym_float, - STATE(3767), 1, + STATE(3483), 1, sym_string, - STATE(3769), 1, + STATE(3484), 1, sym_dotted_name, - STATE(5520), 1, + STATE(5665), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320927,39 +328909,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317548] = 13, - ACTIONS(528), 1, + [324465] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5196), 1, sym_float, - STATE(2563), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(3483), 1, sym_string, - STATE(2744), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5672), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -320967,39 +328949,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317601] = 13, - ACTIONS(700), 1, + [324518] = 13, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5436), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5438), 1, + ACTIONS(5608), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5618), 1, sym_float, - STATE(2963), 1, - sym_type, - STATE(2971), 1, + STATE(2443), 1, sym_string, - STATE(3097), 1, + STATE(2444), 1, sym_dotted_name, + STATE(2601), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5446), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5444), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2972), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321007,80 +328989,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317654] = 14, - ACTIONS(552), 1, + [324571] = 14, + ACTIONS(161), 1, sym_string_start, - ACTIONS(5178), 1, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5516), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5522), 1, sym_float, - ACTIONS(5432), 1, - sym_identifier, - ACTIONS(5434), 1, - anon_sym_LPAREN, - STATE(3667), 1, + STATE(829), 1, sym_type, - STATE(3767), 1, + STATE(1778), 1, sym_string, - STATE(3769), 1, + STATE(1779), 1, sym_dotted_name, - STATE(3789), 1, + STATE(2064), 1, sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5520), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5518), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 6, + STATE(1780), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317709] = 13, - ACTIONS(528), 1, + [324626] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5374), 1, + ACTIONS(5186), 1, + anon_sym_LPAREN, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5554), 1, - anon_sym_LPAREN, - STATE(2563), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(3483), 1, sym_string, - STATE(2983), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5679), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321088,80 +329070,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317762] = 14, - ACTIONS(528), 1, + [324679] = 13, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5622), 1, sym_identifier, - ACTIONS(5374), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5634), 1, sym_float, - ACTIONS(5554), 1, - anon_sym_LPAREN, - STATE(2563), 1, - sym_dotted_name, - STATE(2565), 1, - sym_string, - STATE(2909), 1, + STATE(2422), 1, sym_type, - STATE(3044), 1, - sym_union_type, + STATE(2622), 1, + sym_string, + STATE(2623), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 6, + STATE(2671), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [317817] = 13, - ACTIONS(408), 1, + [324732] = 13, + ACTIONS(85), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5592), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5596), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5598), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5604), 1, sym_float, - STATE(3595), 1, + STATE(869), 1, + sym_type, + STATE(908), 1, sym_string, - STATE(3596), 1, + STATE(910), 1, sym_dotted_name, - STATE(5476), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5602), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5600), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321169,39 +329150,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317870] = 13, - ACTIONS(55), 1, + [324785] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5334), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5534), 1, + ACTIONS(5486), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5488), 1, anon_sym_LPAREN, - STATE(4235), 1, + STATE(3581), 1, + sym_type, + STATE(3789), 1, sym_dotted_name, - STATE(4237), 1, + STATE(3791), 1, sym_string, - STATE(4241), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321209,39 +329190,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317923] = 13, - ACTIONS(504), 1, + [324838] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5524), 1, + ACTIONS(5436), 1, sym_identifier, - ACTIONS(5552), 1, + ACTIONS(5504), 1, anon_sym_LPAREN, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(3840), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(3912), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321249,39 +329230,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [317976] = 13, - ACTIONS(504), 1, + [324891] = 13, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5622), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5634), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, - sym_string, - STATE(5637), 1, + STATE(2454), 1, sym_type, + STATE(2622), 1, + sym_string, + STATE(2623), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2671), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321289,39 +329270,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318029] = 13, - ACTIONS(408), 1, + [324944] = 13, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5118), 1, + ACTIONS(5622), 1, sym_identifier, - ACTIONS(5120), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5634), 1, sym_float, - STATE(3595), 1, + STATE(2485), 1, + sym_type, + STATE(2622), 1, sym_string, - STATE(3596), 1, + STATE(2623), 1, sym_dotted_name, - STATE(5474), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5130), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5128), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3598), 7, + STATE(2671), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321329,39 +329310,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318082] = 13, - ACTIONS(652), 1, + [324997] = 13, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5418), 1, + ACTIONS(5622), 1, sym_identifier, - ACTIONS(5420), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(5634), 1, sym_float, - STATE(2862), 1, + STATE(2497), 1, sym_type, - STATE(3012), 1, - sym_dotted_name, - STATE(3014), 1, + STATE(2622), 1, sym_string, + STATE(2623), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5428), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5426), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3011), 7, + STATE(2671), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321369,39 +329350,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318135] = 13, - ACTIONS(55), 1, + [325050] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5332), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5402), 1, + ACTIONS(5486), 1, sym_identifier, - STATE(4235), 1, + ACTIONS(5488), 1, + anon_sym_LPAREN, + STATE(3604), 1, + sym_type, + STATE(3789), 1, sym_dotted_name, - STATE(4237), 1, + STATE(3791), 1, sym_string, - STATE(5378), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321409,39 +329390,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318188] = 13, - ACTIONS(504), 1, + [325103] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5196), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + STATE(3483), 1, sym_string, - STATE(5283), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5682), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321449,121 +329430,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318241] = 14, - ACTIONS(700), 1, + [325156] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5436), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5438), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5196), 1, sym_float, - STATE(2918), 1, - sym_type, - STATE(2964), 1, - sym_union_type, - STATE(2971), 1, + STATE(3483), 1, sym_string, - STATE(3097), 1, + STATE(3484), 1, sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5446), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(5444), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(2972), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [318296] = 14, - ACTIONS(85), 1, - sym_string_start, - ACTIONS(5538), 1, - sym_identifier, - ACTIONS(5540), 1, - anon_sym_LPAREN, - ACTIONS(5542), 1, - anon_sym_LBRACK, - ACTIONS(5544), 1, - anon_sym_LBRACE, - ACTIONS(5550), 1, - sym_float, - STATE(1568), 1, + STATE(5684), 1, sym_type, - STATE(1605), 1, - sym_dotted_name, - STATE(1606), 1, - sym_string, - STATE(2068), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5546), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1604), 6, + STATE(3485), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [318351] = 13, - ACTIONS(504), 1, + [325209] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5140), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5524), 1, + ACTIONS(5486), 1, sym_identifier, - ACTIONS(5552), 1, + ACTIONS(5488), 1, anon_sym_LPAREN, - STATE(3476), 1, + STATE(3595), 1, + sym_type, + STATE(3789), 1, sym_dotted_name, - STATE(3521), 1, + STATE(3791), 1, sym_string, - STATE(3845), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321571,39 +329510,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318404] = 13, - ACTIONS(552), 1, + [325262] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5178), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5432), 1, + ACTIONS(5436), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5438), 1, anon_sym_LPAREN, - STATE(3767), 1, + STATE(3483), 1, sym_string, - STATE(3769), 1, + STATE(3484), 1, sym_dotted_name, - STATE(3772), 1, + STATE(3710), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321611,39 +329550,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318457] = 13, - ACTIONS(55), 1, + [325315] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5182), 1, + sym_identifier, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5196), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, + STATE(3483), 1, sym_string, - STATE(5388), 1, + STATE(3484), 1, + sym_dotted_name, + STATE(5690), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321651,39 +329590,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318510] = 13, - ACTIONS(528), 1, + [325368] = 13, + ACTIONS(536), 1, sym_string_start, - ACTIONS(5370), 1, + ACTIONS(5564), 1, sym_identifier, - ACTIONS(5372), 1, + ACTIONS(5566), 1, anon_sym_LPAREN, - ACTIONS(5374), 1, + ACTIONS(5568), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, + ACTIONS(5570), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, + ACTIONS(5576), 1, sym_float, - STATE(2563), 1, + STATE(2605), 1, + sym_type, + STATE(2735), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2839), 1, sym_string, - STATE(2745), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5380), 3, + ACTIONS(5574), 3, sym_integer, sym_true, sym_false, - ACTIONS(5378), 5, + ACTIONS(5572), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2562), 7, + STATE(2769), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321691,39 +329630,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318563] = 13, - ACTIONS(504), 1, + [325421] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5212), 1, sym_float, - STATE(3476), 1, + STATE(3789), 1, sym_dotted_name, - STATE(3521), 1, + STATE(3791), 1, sym_string, - STATE(5633), 1, + STATE(5623), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321731,39 +329670,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318616] = 13, - ACTIONS(179), 1, + [325474] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5388), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5390), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5196), 1, sym_float, - STATE(1628), 1, - sym_type, - STATE(1930), 1, - sym_dotted_name, - STATE(1934), 1, + STATE(3483), 1, sym_string, + STATE(3484), 1, + sym_dotted_name, + STATE(5353), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5398), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5396), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1925), 7, + STATE(3485), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321771,39 +329710,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318669] = 13, - ACTIONS(598), 1, + [325527] = 13, + ACTIONS(536), 1, sym_string_start, - ACTIONS(5450), 1, + ACTIONS(5564), 1, sym_identifier, - ACTIONS(5452), 1, + ACTIONS(5566), 1, anon_sym_LPAREN, - ACTIONS(5454), 1, + ACTIONS(5568), 1, anon_sym_LBRACK, - ACTIONS(5456), 1, + ACTIONS(5570), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5576), 1, sym_float, - STATE(2774), 1, + STATE(2616), 1, sym_type, - STATE(2811), 1, + STATE(2735), 1, sym_dotted_name, - STATE(2812), 1, + STATE(2839), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 3, + ACTIONS(5574), 3, sym_integer, sym_true, sym_false, - ACTIONS(5458), 5, + ACTIONS(5572), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2809), 7, + STATE(2769), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321811,39 +329750,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318722] = 13, - ACTIONS(732), 1, + [325580] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5102), 1, - sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5288), 1, anon_sym_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5290), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5292), 1, anon_sym_LBRACE, - ACTIONS(5116), 1, + ACTIONS(5298), 1, sym_float, - STATE(4134), 1, + ACTIONS(5524), 1, + sym_identifier, + STATE(4126), 1, sym_dotted_name, - STATE(4135), 1, + STATE(4154), 1, sym_string, - STATE(5381), 1, + STATE(5509), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5114), 3, + ACTIONS(5296), 3, sym_integer, sym_true, sym_false, - ACTIONS(5112), 5, + ACTIONS(5294), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4133), 7, + STATE(4127), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321851,39 +329790,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318775] = 13, - ACTIONS(552), 1, + [325633] = 13, + ACTIONS(536), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5564), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5566), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5568), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5570), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5576), 1, sym_float, - STATE(3767), 1, - sym_string, - STATE(3769), 1, - sym_dotted_name, - STATE(5519), 1, + STATE(2639), 1, sym_type, + STATE(2735), 1, + sym_dotted_name, + STATE(2839), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5574), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5572), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(2769), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321891,39 +329830,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318828] = 13, + [325686] = 13, ACTIONS(504), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5606), 1, sym_identifier, - ACTIONS(5138), 1, - anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5618), 1, sym_float, - STATE(3476), 1, - sym_dotted_name, - STATE(3521), 1, + ACTIONS(5620), 1, + anon_sym_LPAREN, + STATE(2443), 1, sym_string, - STATE(5683), 1, + STATE(2444), 1, + sym_dotted_name, + STATE(3181), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2445), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -321931,80 +329870,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318881] = 14, - ACTIONS(55), 1, + [325739] = 14, + ACTIONS(504), 1, sym_string_start, - ACTIONS(5334), 1, + ACTIONS(5606), 1, + sym_identifier, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5618), 1, sym_float, - ACTIONS(5534), 1, - sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5620), 1, anon_sym_LPAREN, - STATE(3993), 1, + STATE(2443), 1, + sym_string, + STATE(2444), 1, + sym_dotted_name, + STATE(2956), 1, sym_type, - STATE(4226), 1, + STATE(3043), 1, sym_union_type, - STATE(4235), 1, - sym_dotted_name, - STATE(4237), 1, - sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5616), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5614), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 6, + STATE(2445), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [318936] = 13, - ACTIONS(434), 1, + [325794] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5356), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5358), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5360), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5362), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5212), 1, sym_float, - STATE(2392), 1, - sym_type, - STATE(2436), 1, + STATE(3789), 1, sym_dotted_name, - STATE(2438), 1, + STATE(3791), 1, sym_string, + STATE(5629), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5366), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5364), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2435), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -322012,39 +329951,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [318989] = 13, - ACTIONS(504), 1, + [325847] = 13, + ACTIONS(536), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5564), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5566), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5568), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5570), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5576), 1, sym_float, - STATE(3476), 1, + STATE(2660), 1, + sym_type, + STATE(2735), 1, sym_dotted_name, - STATE(3521), 1, + STATE(2839), 1, sym_string, - STATE(5672), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5574), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5572), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(2769), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -322052,120 +329991,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [319042] = 14, - ACTIONS(275), 1, + [325900] = 13, + ACTIONS(730), 1, sym_string_start, - ACTIONS(5478), 1, + ACTIONS(5490), 1, sym_identifier, - ACTIONS(5480), 1, + ACTIONS(5492), 1, anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5494), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5502), 1, sym_float, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, - sym_string, - STATE(2385), 1, + STATE(2934), 1, sym_type, - STATE(2514), 1, - sym_union_type, + STATE(3127), 1, + sym_string, + STATE(3128), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 3, + ACTIONS(5500), 3, sym_integer, sym_true, sym_false, - ACTIONS(5486), 5, + ACTIONS(5498), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2343), 6, + STATE(3129), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [319097] = 13, - ACTIONS(275), 1, + [325953] = 14, + ACTIONS(446), 1, sym_string_start, - ACTIONS(5478), 1, + ACTIONS(5622), 1, sym_identifier, - ACTIONS(5480), 1, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5628), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5634), 1, sym_float, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, + STATE(2622), 1, sym_string, - STATE(2384), 1, + STATE(2623), 1, + sym_dotted_name, + STATE(3172), 1, sym_type, + STATE(3255), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 3, + ACTIONS(5632), 3, sym_integer, sym_true, sym_false, - ACTIONS(5486), 5, + ACTIONS(5630), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2343), 7, + STATE(2671), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [319150] = 13, - ACTIONS(552), 1, + [326008] = 13, + ACTIONS(730), 1, sym_string_start, - ACTIONS(5174), 1, + ACTIONS(5490), 1, sym_identifier, - ACTIONS(5176), 1, + ACTIONS(5492), 1, anon_sym_LPAREN, - ACTIONS(5178), 1, + ACTIONS(5494), 1, anon_sym_LBRACK, - ACTIONS(5182), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5502), 1, sym_float, - STATE(3767), 1, + STATE(2962), 1, + sym_type, + STATE(3127), 1, sym_string, - STATE(3769), 1, + STATE(3128), 1, sym_dotted_name, - STATE(5491), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5184), 3, + ACTIONS(5500), 3, sym_integer, sym_true, sym_false, - ACTIONS(1327), 5, + ACTIONS(5498), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3780), 7, + STATE(3129), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -322173,79 +330112,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [319203] = 13, - ACTIONS(504), 1, + [326061] = 14, + ACTIONS(187), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5440), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5442), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5446), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5452), 1, sym_float, - STATE(3476), 1, + STATE(861), 1, + sym_type, + STATE(1898), 1, + sym_union_type, + STATE(1972), 1, sym_dotted_name, - STATE(3521), 1, + STATE(1973), 1, sym_string, - STATE(5635), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5450), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5448), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(1970), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [319256] = 13, - ACTIONS(55), 1, + [326116] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5332), 1, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5334), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5212), 1, sym_float, - ACTIONS(5402), 1, - sym_identifier, - STATE(4235), 1, + STATE(3789), 1, sym_dotted_name, - STATE(4237), 1, + STATE(3791), 1, sym_string, - STATE(5429), 1, + STATE(5631), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5340), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5338), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(4232), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -322253,39 +330193,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [319309] = 13, - ACTIONS(472), 1, + [326169] = 13, + ACTIONS(393), 1, sym_string_start, - ACTIONS(5510), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5512), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5514), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5204), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, + ACTIONS(5212), 1, sym_float, - STATE(2466), 1, - sym_type, - STATE(2717), 1, - sym_string, - STATE(2719), 1, + STATE(3789), 1, sym_dotted_name, + STATE(3791), 1, + sym_string, + STATE(5632), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5520), 3, + ACTIONS(5210), 3, sym_integer, sym_true, sym_false, - ACTIONS(5518), 5, + ACTIONS(5208), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2720), 7, + STATE(3782), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -322293,144 +330233,144 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [319362] = 13, - ACTIONS(504), 1, + [326222] = 14, + ACTIONS(111), 1, sym_string_start, - ACTIONS(5134), 1, + ACTIONS(5550), 1, sym_identifier, - ACTIONS(5138), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5140), 1, + ACTIONS(5554), 1, anon_sym_LBRACK, - ACTIONS(5142), 1, + ACTIONS(5556), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, + ACTIONS(5562), 1, sym_float, - STATE(3476), 1, + STATE(816), 1, + sym_type, + STATE(822), 1, + sym_union_type, + STATE(963), 1, sym_dotted_name, - STATE(3521), 1, + STATE(965), 1, sym_string, - STATE(5323), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5146), 3, + ACTIONS(5560), 3, sym_integer, sym_true, sym_false, - ACTIONS(5144), 5, + ACTIONS(5558), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(3471), 7, + STATE(957), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [319415] = 14, - ACTIONS(275), 1, + [326277] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5478), 1, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(5480), 1, + ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5482), 1, + ACTIONS(5188), 1, anon_sym_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5190), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5196), 1, sym_float, - STATE(2286), 1, - sym_type, - STATE(2345), 1, - sym_dotted_name, - STATE(2346), 1, + STATE(3483), 1, sym_string, - STATE(2364), 1, - sym_union_type, + STATE(3484), 1, + sym_dotted_name, + STATE(5768), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 3, + ACTIONS(5194), 3, sym_integer, sym_true, sym_false, - ACTIONS(5486), 5, + ACTIONS(5192), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(2343), 6, + STATE(3485), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [319470] = 8, - ACTIONS(4303), 1, + [326330] = 8, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4441), 1, anon_sym_is, - STATE(3553), 1, + STATE(3709), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4319), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [319512] = 8, - ACTIONS(4303), 1, + anon_sym_then, + [326372] = 8, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(3553), 1, + STATE(3645), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322442,226 +330382,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [319554] = 8, - ACTIONS(4303), 1, + [326414] = 8, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4441), 1, anon_sym_is, - STATE(3553), 1, + STATE(3709), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4319), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [319596] = 8, - ACTIONS(4303), 1, + anon_sym_then, + [326456] = 8, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4441), 1, anon_sym_is, - STATE(3553), 1, + STATE(3709), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4319), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [319638] = 8, - ACTIONS(4421), 1, + anon_sym_then, + [326498] = 8, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(4439), 1, + ACTIONS(4441), 1, anon_sym_is, - STATE(3730), 1, + STATE(3709), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4437), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4417), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [319679] = 8, - ACTIONS(4421), 1, + [326540] = 8, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4439), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(3730), 1, + STATE(3645), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4437), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4417), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [319720] = 8, - ACTIONS(4421), 1, + [326582] = 8, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4439), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(3730), 1, + STATE(3645), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4437), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4417), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [319761] = 8, - ACTIONS(4421), 1, + [326624] = 8, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4439), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(3730), 1, + STATE(3645), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2857), 2, + ACTIONS(2770), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(4437), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4417), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [319802] = 7, - ACTIONS(4512), 1, + [326666] = 7, + ACTIONS(4589), 1, anon_sym_not, - ACTIONS(4516), 1, + ACTIONS(4593), 1, anon_sym_is, - STATE(3778), 1, + STATE(3857), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 5, + ACTIONS(4587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322673,26 +330617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [319840] = 7, - ACTIONS(4512), 1, + [326704] = 7, + ACTIONS(4589), 1, anon_sym_not, - ACTIONS(4516), 1, + ACTIONS(4593), 1, anon_sym_is, - STATE(3778), 1, + STATE(3857), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 5, + ACTIONS(4587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322704,26 +330648,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [319878] = 7, - ACTIONS(4512), 1, + [326742] = 7, + ACTIONS(4589), 1, anon_sym_not, - ACTIONS(4516), 1, + ACTIONS(4593), 1, anon_sym_is, - STATE(3778), 1, + STATE(3857), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 5, + ACTIONS(4587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322735,26 +330679,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [319916] = 7, - ACTIONS(4512), 1, + [326780] = 7, + ACTIONS(4589), 1, anon_sym_not, - ACTIONS(4516), 1, + ACTIONS(4593), 1, anon_sym_is, - STATE(3778), 1, + STATE(3857), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 5, + ACTIONS(4587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 11, + ACTIONS(2768), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322766,79 +330710,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [319954] = 7, - ACTIONS(4536), 1, + [326818] = 7, + ACTIONS(2768), 1, + anon_sym_LF, + ACTIONS(4724), 1, anon_sym_not, - ACTIONS(4554), 1, + ACTIONS(4728), 1, anon_sym_is, - STATE(4079), 1, + STATE(4189), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4530), 5, + ACTIONS(4722), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + anon_sym_GT, + ACTIONS(2770), 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, - [319991] = 7, - ACTIONS(4536), 1, + [326855] = 7, + ACTIONS(2768), 1, + anon_sym_LF, + ACTIONS(4724), 1, anon_sym_not, - ACTIONS(4554), 1, + ACTIONS(4728), 1, anon_sym_is, - STATE(4079), 1, + STATE(4189), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4530), 5, + ACTIONS(4722), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + anon_sym_GT, + ACTIONS(2770), 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, - [320028] = 7, - ACTIONS(2859), 1, + [326892] = 7, + ACTIONS(2768), 1, anon_sym_LF, - ACTIONS(4642), 1, + ACTIONS(4724), 1, anon_sym_not, - ACTIONS(4644), 1, + ACTIONS(4728), 1, anon_sym_is, - STATE(4061), 1, + STATE(4189), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 7, + ACTIONS(4722), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -322846,7 +330790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2857), 9, + ACTIONS(2770), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322856,19 +330800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320065] = 7, - ACTIONS(2859), 1, + [326929] = 7, + ACTIONS(2768), 1, anon_sym_LF, - ACTIONS(4642), 1, + ACTIONS(4724), 1, anon_sym_not, - ACTIONS(4644), 1, + ACTIONS(4728), 1, anon_sym_is, - STATE(4061), 1, + STATE(4189), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 7, + ACTIONS(4722), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -322876,7 +330820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(2857), 9, + ACTIONS(2770), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322886,26 +330830,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320102] = 7, - ACTIONS(4536), 1, + [326966] = 7, + ACTIONS(4619), 1, anon_sym_not, - ACTIONS(4554), 1, + ACTIONS(4637), 1, anon_sym_is, - STATE(4079), 1, + STATE(4213), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, + ACTIONS(4635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4530), 5, + ACTIONS(4615), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + ACTIONS(2768), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322916,56 +330860,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320139] = 7, - ACTIONS(2859), 1, - anon_sym_LF, - ACTIONS(4642), 1, + [327003] = 7, + ACTIONS(4619), 1, anon_sym_not, - ACTIONS(4644), 1, + ACTIONS(4637), 1, anon_sym_is, - STATE(4061), 1, + STATE(4213), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 7, - anon_sym_in, + ACTIONS(4635), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(4615), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(2857), 9, + ACTIONS(2768), 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, - [320176] = 7, - ACTIONS(4536), 1, + [327040] = 7, + ACTIONS(4619), 1, anon_sym_not, - ACTIONS(4554), 1, + ACTIONS(4637), 1, anon_sym_is, - STATE(4079), 1, + STATE(4213), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, + ACTIONS(4635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4530), 5, + ACTIONS(4615), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 10, + ACTIONS(2768), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -322976,56 +330920,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320213] = 7, - ACTIONS(2859), 1, - anon_sym_LF, - ACTIONS(4642), 1, + [327077] = 7, + ACTIONS(4619), 1, anon_sym_not, - ACTIONS(4644), 1, + ACTIONS(4637), 1, anon_sym_is, - STATE(4061), 1, + STATE(4213), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 7, - anon_sym_in, + ACTIONS(4635), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(4615), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(2857), 9, + ACTIONS(2768), 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, - [320250] = 7, - ACTIONS(4680), 1, + [327114] = 7, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(4696), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(4128), 1, + STATE(3985), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4672), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, sym__newline, anon_sym_DOT, anon_sym_as, @@ -323035,63 +330979,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320286] = 15, - ACTIONS(504), 1, + [327150] = 15, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(1173), 1, + ACTIONS(1215), 1, anon_sym_STAR_STAR, - ACTIONS(1251), 1, + ACTIONS(1227), 1, anon_sym_LF, - ACTIONS(1267), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5558), 1, + ACTIONS(5638), 1, anon_sym_LBRACE, - ACTIONS(5560), 1, + ACTIONS(5640), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6097), 1, + STATE(6350), 1, sym_config_entries, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(5562), 2, + ACTIONS(5642), 2, sym_integer, sym_float, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320338] = 7, - ACTIONS(4724), 1, + [327202] = 7, + ACTIONS(4973), 1, anon_sym_not, - ACTIONS(4740), 1, + ACTIONS(4989), 1, anon_sym_is, - STATE(4201), 1, + STATE(4289), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4738), 2, + ACTIONS(4987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4716), 5, + ACTIONS(4965), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -323101,55 +331045,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320374] = 7, - ACTIONS(4724), 1, + [327238] = 7, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(4740), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(4201), 1, + STATE(3985), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4738), 2, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4716), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320410] = 7, - ACTIONS(4724), 1, + [327274] = 7, + ACTIONS(4973), 1, anon_sym_not, - ACTIONS(4740), 1, + ACTIONS(4989), 1, anon_sym_is, - STATE(4201), 1, + STATE(4289), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4738), 2, + ACTIONS(4987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4716), 5, + ACTIONS(4965), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -323159,55 +331103,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320446] = 7, - ACTIONS(4680), 1, + [327310] = 15, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1203), 1, + anon_sym_if, + ACTIONS(1215), 1, + anon_sym_STAR_STAR, + ACTIONS(1239), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_LF, + ACTIONS(5636), 1, + sym_identifier, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(5508), 1, + sym_config_entry, + STATE(5774), 1, + sym_test, + STATE(5928), 1, + sym_config_entries, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5642), 2, + sym_integer, + sym_float, + STATE(5773), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(5688), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [327362] = 15, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1203), 1, + anon_sym_if, + ACTIONS(1215), 1, + anon_sym_STAR_STAR, + ACTIONS(1239), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LF, + ACTIONS(5636), 1, + sym_identifier, + ACTIONS(5638), 1, + anon_sym_LBRACE, + ACTIONS(5646), 1, + anon_sym_RBRACE, + STATE(5508), 1, + sym_config_entry, + STATE(5774), 1, + sym_test, + STATE(6036), 1, + sym_config_entries, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5642), 2, + sym_integer, + sym_float, + STATE(5773), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(5688), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [327414] = 7, + ACTIONS(4973), 1, anon_sym_not, - ACTIONS(4696), 1, + ACTIONS(4989), 1, anon_sym_is, - STATE(4128), 1, + STATE(4289), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, + ACTIONS(4987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4672), 5, + ACTIONS(4965), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, - sym__newline, + ACTIONS(2768), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320482] = 7, - ACTIONS(4724), 1, + [327450] = 7, + ACTIONS(4973), 1, anon_sym_not, - ACTIONS(4740), 1, + ACTIONS(4989), 1, anon_sym_is, - STATE(4201), 1, + STATE(4289), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4738), 2, + ACTIONS(4987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4716), 5, + ACTIONS(4965), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -323217,26 +331235,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320518] = 7, - ACTIONS(4680), 1, + [327486] = 7, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(4696), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(4128), 1, + STATE(3985), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4672), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, sym__newline, anon_sym_DOT, anon_sym_as, @@ -323246,63 +331264,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320554] = 15, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1161), 1, - anon_sym_if, - ACTIONS(1173), 1, - anon_sym_STAR_STAR, - ACTIONS(1239), 1, - anon_sym_LF, - ACTIONS(1267), 1, - anon_sym_LPAREN, - ACTIONS(5556), 1, - sym_identifier, - ACTIONS(5558), 1, - anon_sym_LBRACE, - ACTIONS(5564), 1, - anon_sym_RBRACE, - STATE(5420), 1, - sym_config_entry, - STATE(5692), 1, - sym_test, - STATE(6101), 1, - sym_config_entries, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5562), 2, - sym_integer, - sym_float, - STATE(5693), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(5565), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [320606] = 7, - ACTIONS(4680), 1, + [327522] = 7, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(4696), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(4128), 1, + STATE(3985), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4672), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 9, + ACTIONS(2768), 9, sym__newline, anon_sym_DOT, anon_sym_as, @@ -323312,833 +331293,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [320642] = 15, - ACTIONS(504), 1, + [327558] = 15, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(1173), 1, - anon_sym_STAR_STAR, - ACTIONS(1245), 1, - anon_sym_LF, - ACTIONS(1267), 1, - anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5558), 1, + ACTIONS(5642), 1, + sym_integer, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, + ACTIONS(5650), 1, anon_sym_RBRACE, - STATE(5420), 1, + ACTIONS(5652), 1, + anon_sym_STAR_STAR, + ACTIONS(5654), 1, + sym_float, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5924), 1, + STATE(6160), 1, sym_config_entries, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5562), 2, - sym_integer, - sym_float, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320694] = 14, - ACTIONS(504), 1, + [327609] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(1173), 1, + ACTIONS(1215), 1, anon_sym_STAR_STAR, - ACTIONS(1267), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5558), 1, + ACTIONS(5638), 1, anon_sym_LBRACE, - ACTIONS(5568), 1, + ACTIONS(5656), 1, anon_sym_RBRACE, - ACTIONS(5570), 1, + ACTIONS(5658), 1, anon_sym_LF, - STATE(5667), 1, + STATE(5578), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(5562), 2, + ACTIONS(5642), 2, sym_integer, sym_float, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320743] = 15, - ACTIONS(486), 1, + [327658] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5574), 1, - anon_sym_RBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - STATE(5420), 1, + ACTIONS(5660), 1, + anon_sym_RBRACE, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5927), 1, + STATE(6175), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320794] = 15, - ACTIONS(486), 1, + [327709] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5580), 1, + ACTIONS(5662), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6303), 1, + STATE(6355), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320845] = 15, - ACTIONS(486), 1, + [327760] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5582), 1, + ACTIONS(5664), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6209), 1, + STATE(6253), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320896] = 15, - ACTIONS(486), 1, + [327811] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5584), 1, + ACTIONS(5666), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5887), 1, + STATE(5977), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320947] = 15, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(504), 1, + [327862] = 14, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(1215), 1, + anon_sym_STAR_STAR, + ACTIONS(1239), 1, + anon_sym_LPAREN, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, - sym_integer, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - sym_float, - ACTIONS(5586), 1, + ACTIONS(5668), 1, anon_sym_RBRACE, - STATE(5420), 1, + ACTIONS(5670), 1, + anon_sym_LF, + STATE(5578), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5843), 1, - sym_config_entries, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + ACTIONS(5642), 2, + sym_integer, + sym_float, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [320998] = 15, - ACTIONS(486), 1, + [327911] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5588), 1, + ACTIONS(5672), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6016), 1, + STATE(6277), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321049] = 15, - ACTIONS(486), 1, + [327962] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5590), 1, + ACTIONS(5674), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6019), 1, + STATE(6336), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321100] = 15, - ACTIONS(486), 1, + [328013] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5592), 1, + ACTIONS(5676), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5885), 1, + STATE(6227), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321151] = 15, - ACTIONS(486), 1, + [328064] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5594), 1, + ACTIONS(5678), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6192), 1, + STATE(6191), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321202] = 15, - ACTIONS(486), 1, + [328115] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5596), 1, + ACTIONS(5680), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6138), 1, + STATE(5956), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321253] = 15, - ACTIONS(486), 1, + [328166] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5598), 1, + ACTIONS(5682), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5826), 1, + STATE(6285), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321304] = 15, - ACTIONS(486), 1, + [328217] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5600), 1, + ACTIONS(5684), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(5893), 1, + STATE(6141), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321355] = 15, - ACTIONS(486), 1, + [328268] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5602), 1, + ACTIONS(5686), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6144), 1, + STATE(6404), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321406] = 15, - ACTIONS(486), 1, + [328319] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5604), 1, + ACTIONS(5688), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6261), 1, + STATE(6380), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321457] = 14, - ACTIONS(504), 1, + [328370] = 15, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(1173), 1, - anon_sym_STAR_STAR, - ACTIONS(1267), 1, - anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5558), 1, + ACTIONS(5642), 1, + sym_integer, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5606), 1, + ACTIONS(5652), 1, + anon_sym_STAR_STAR, + ACTIONS(5654), 1, + sym_float, + ACTIONS(5690), 1, anon_sym_RBRACE, - ACTIONS(5608), 1, - anon_sym_LF, - STATE(5667), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - ACTIONS(5), 2, + STATE(6097), 1, + sym_config_entries, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5562), 2, - sym_integer, - sym_float, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321506] = 15, - ACTIONS(486), 1, + [328421] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5610), 1, + ACTIONS(5692), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6226), 1, + STATE(5974), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321557] = 15, - ACTIONS(486), 1, + [328472] = 15, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5612), 1, + ACTIONS(5694), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5508), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6020), 1, + STATE(6493), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321608] = 15, - ACTIONS(486), 1, + [328523] = 7, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + STATE(4506), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [328557] = 14, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5614), 1, + ACTIONS(5696), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(5770), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, - STATE(6252), 1, - sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321659] = 14, - ACTIONS(486), 1, + [328605] = 14, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5616), 1, + ACTIONS(5698), 1, anon_sym_RBRACE, - STATE(5605), 1, + STATE(5578), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321707] = 7, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - STATE(4413), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 7, - anon_sym_DOT, - anon_sym_as, + [328653] = 14, + ACTIONS(462), 1, + anon_sym_LPAREN, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(1203), 1, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [321741] = 7, - ACTIONS(4325), 1, - anon_sym_not, - ACTIONS(4327), 1, - anon_sym_is, - STATE(4413), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5636), 1, + sym_identifier, + ACTIONS(5642), 1, + sym_integer, + ACTIONS(5648), 1, + anon_sym_LBRACE, + ACTIONS(5652), 1, + anon_sym_STAR_STAR, + ACTIONS(5654), 1, + sym_float, + ACTIONS(5696), 1, + anon_sym_RBRACE, + STATE(5578), 1, + sym_config_entry, + STATE(5774), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(2859), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [321775] = 7, - ACTIONS(4325), 1, + STATE(5773), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(5688), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [328701] = 7, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - STATE(4413), 1, + STATE(4506), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 5, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 7, + ACTIONS(2768), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -324146,26 +332131,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [321809] = 7, - ACTIONS(4325), 1, + [328735] = 7, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_is, - STATE(4413), 1, + STATE(4506), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 5, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(2859), 7, + ACTIONS(2768), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -324173,219 +332158,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [321843] = 13, - ACTIONS(504), 1, + [328769] = 13, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(1173), 1, + ACTIONS(1215), 1, anon_sym_STAR_STAR, - ACTIONS(1267), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5558), 1, + ACTIONS(5638), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, + ACTIONS(5700), 1, anon_sym_LF, - STATE(5667), 1, + STATE(5578), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(5562), 2, + ACTIONS(5642), 2, sym_integer, sym_float, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [321889] = 14, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1161), 1, - anon_sym_if, - ACTIONS(5556), 1, - sym_identifier, - ACTIONS(5562), 1, - sym_integer, - ACTIONS(5572), 1, - anon_sym_LBRACE, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - sym_float, - ACTIONS(5620), 1, - anon_sym_RBRACE, - STATE(5605), 1, - sym_config_entry, - STATE(5692), 1, - sym_test, + [328815] = 7, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + STATE(4506), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(5565), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [321937] = 14, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(1161), 1, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2768), 7, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(5556), 1, - sym_identifier, - ACTIONS(5562), 1, - sym_integer, - ACTIONS(5572), 1, - anon_sym_LBRACE, - ACTIONS(5576), 1, - anon_sym_STAR_STAR, - ACTIONS(5578), 1, - sym_float, - ACTIONS(5622), 1, - anon_sym_RBRACE, - STATE(5667), 1, - sym_config_entry, - STATE(5692), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5693), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(5565), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [321985] = 14, - ACTIONS(486), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [328849] = 14, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - ACTIONS(5616), 1, + ACTIONS(5702), 1, anon_sym_RBRACE, - STATE(5667), 1, + STATE(5770), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [322033] = 13, - ACTIONS(486), 1, + [328897] = 13, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - STATE(5605), 1, + STATE(5770), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [322078] = 13, - ACTIONS(486), 1, + [328942] = 13, + ACTIONS(462), 1, anon_sym_LPAREN, - ACTIONS(504), 1, + ACTIONS(480), 1, sym_string_start, - ACTIONS(1161), 1, + ACTIONS(1203), 1, anon_sym_if, - ACTIONS(5556), 1, + ACTIONS(5636), 1, sym_identifier, - ACTIONS(5562), 1, + ACTIONS(5642), 1, sym_integer, - ACTIONS(5572), 1, + ACTIONS(5648), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, + ACTIONS(5652), 1, anon_sym_STAR_STAR, - ACTIONS(5578), 1, + ACTIONS(5654), 1, sym_float, - STATE(5667), 1, + STATE(5578), 1, sym_config_entry, - STATE(5692), 1, + STATE(5774), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5693), 2, + STATE(5773), 2, sym_dictionary_splat, sym_if_entry, - STATE(5565), 4, + STATE(5688), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [322123] = 5, - STATE(3973), 1, + [328987] = 5, + STATE(3835), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5704), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2471), 3, + ACTIONS(2298), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 10, + ACTIONS(2300), 10, sym__newline, anon_sym_as, anon_sym_in, @@ -324396,73 +332340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [322152] = 14, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6032), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [322198] = 5, - ACTIONS(2465), 1, - anon_sym_PLUS, - ACTIONS(5642), 1, + [329016] = 5, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [322226] = 5, - ACTIONS(2441), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5642), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 11, + ACTIONS(2258), 11, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -324474,750 +332363,572 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [322254] = 14, - ACTIONS(5626), 1, + [329044] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(5884), 1, + STATE(6384), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [322300] = 14, - ACTIONS(5626), 1, + [329090] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(6193), 1, + STATE(5950), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [322346] = 5, - ACTIONS(191), 1, - anon_sym_PLUS, - ACTIONS(5642), 1, + [329136] = 5, + ACTIONS(5726), 1, anon_sym_if, + ACTIONS(5728), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 11, + ACTIONS(2244), 11, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [322374] = 14, - ACTIONS(5626), 1, + anon_sym_then, + [329164] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(6254), 1, + STATE(6094), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [322420] = 5, - ACTIONS(2461), 1, - anon_sym_PLUS, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [322448] = 14, - ACTIONS(5626), 1, + [329210] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(6021), 1, + STATE(6287), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [322494] = 14, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, + [329256] = 5, + ACTIONS(2264), 1, anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6194), 1, - sym__comprehension_clauses, + ACTIONS(5726), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [322540] = 10, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(5644), 1, - anon_sym_rule, - ACTIONS(5646), 1, - anon_sym_LBRACK, - ACTIONS(5648), 1, - anon_sym_schema, - ACTIONS(5650), 1, - anon_sym_mixin, - ACTIONS(5652), 1, - anon_sym_protocol, - ACTIONS(5654), 1, - anon_sym_check, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5198), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(3899), 6, - sym_rule_statement, - sym_schema_index_signature, - sym_schema_statement, - sym_mixin_statement, - sym_protocol_statement, - sym_check_statement, - [322578] = 14, - ACTIONS(5626), 1, + ACTIONS(2266), 11, + anon_sym_DOT, anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, + anon_sym_COLON, anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(5827), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [322624] = 5, - ACTIONS(5642), 1, + anon_sym_PLUS_EQ, + anon_sym_then, + [329284] = 5, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5728), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 11, + ACTIONS(2258), 11, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [322652] = 8, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5656), 1, + anon_sym_then, + [329312] = 5, + ACTIONS(2252), 1, anon_sym_PLUS, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, + ACTIONS(5726), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 7, + ACTIONS(2254), 11, + anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - [322686] = 14, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, + anon_sym_PLUS_EQ, + anon_sym_then, + [329340] = 5, + ACTIONS(2252), 1, anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6210), 1, - sym__comprehension_clauses, + ACTIONS(5726), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [322732] = 14, - ACTIONS(5626), 1, + ACTIONS(2254), 11, + anon_sym_DOT, anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, + anon_sym_COLON, anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, + anon_sym_PLUS_EQ, + anon_sym_then, + [329368] = 5, + ACTIONS(2236), 1, anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6280), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [322778] = 5, - ACTIONS(5642), 1, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5656), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 11, + ACTIONS(2238), 11, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [322806] = 14, - ACTIONS(5626), 1, + anon_sym_then, + [329396] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(6015), 1, + STATE(6071), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [322852] = 10, + [329442] = 10, ACTIONS(41), 1, anon_sym_AT, - ACTIONS(5662), 1, + ACTIONS(5730), 1, anon_sym_rule, - ACTIONS(5664), 1, + ACTIONS(5732), 1, anon_sym_LBRACK, - ACTIONS(5666), 1, + ACTIONS(5734), 1, anon_sym_schema, - ACTIONS(5668), 1, + ACTIONS(5736), 1, anon_sym_mixin, - ACTIONS(5670), 1, + ACTIONS(5738), 1, anon_sym_protocol, - ACTIONS(5672), 1, + ACTIONS(5740), 1, anon_sym_check, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5198), 2, + STATE(5252), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(3896), 6, + STATE(3981), 6, sym_rule_statement, sym_schema_index_signature, sym_schema_statement, sym_mixin_statement, sym_protocol_statement, sym_check_statement, - [322890] = 14, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6137), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [322936] = 5, - ACTIONS(2461), 1, + [329480] = 5, + ACTIONS(129), 1, anon_sym_PLUS, - ACTIONS(5642), 1, + ACTIONS(5726), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 11, + ACTIONS(133), 11, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [322964] = 14, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, + anon_sym_then, + [329508] = 5, + ACTIONS(2400), 1, anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6182), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [323010] = 5, - ACTIONS(5642), 1, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5656), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 11, + ACTIONS(2402), 11, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_COLON, anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [323038] = 14, - ACTIONS(5626), 1, + anon_sym_then, + [329536] = 10, + ACTIONS(41), 1, + anon_sym_AT, + ACTIONS(5742), 1, + anon_sym_rule, + ACTIONS(5744), 1, + anon_sym_LBRACK, + ACTIONS(5746), 1, + anon_sym_schema, + ACTIONS(5748), 1, + anon_sym_mixin, + ACTIONS(5750), 1, + anon_sym_protocol, + ACTIONS(5752), 1, + anon_sym_check, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5252), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(4041), 6, + sym_rule_statement, + sym_schema_index_signature, + sym_schema_statement, + sym_mixin_statement, + sym_protocol_statement, + sym_check_statement, + [329574] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(5903), 1, + STATE(6199), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323084] = 14, - ACTIONS(5626), 1, + [329620] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(5897), 1, + STATE(6226), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323130] = 14, - ACTIONS(5626), 1, + [329666] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(5853), 1, + STATE(6489), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323176] = 14, - ACTIONS(5626), 1, + [329712] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5630), 1, + ACTIONS(5714), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(5634), 1, + ACTIONS(5718), 1, anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - STATE(5264), 1, + STATE(5365), 1, sym_for_in_clause, - STATE(5586), 1, + STATE(5712), 1, aux_sym__collection_elements_repeat1, - STATE(6304), 1, + STATE(6144), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323222] = 14, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [329758] = 8, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(5636), 1, + ACTIONS(5708), 1, + anon_sym_PLUS, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - STATE(5264), 1, - sym_for_in_clause, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, - STATE(6146), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323268] = 5, - ACTIONS(2453), 1, + ACTIONS(2057), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + [329792] = 5, + ACTIONS(2252), 1, anon_sym_PLUS, - ACTIONS(5642), 1, + ACTIONS(5706), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 11, + ACTIONS(2254), 11, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -325229,426 +332940,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [323296] = 5, - ACTIONS(5674), 1, + [329820] = 5, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5676), 1, + ACTIONS(5708), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 10, + ACTIONS(2244), 11, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [323323] = 5, - ACTIONS(2441), 1, + [329848] = 5, + ACTIONS(2264), 1, anon_sym_PLUS, - ACTIONS(5674), 1, + ACTIONS(5706), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 10, + ACTIONS(2266), 11, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [323350] = 5, - ACTIONS(191), 1, + [329876] = 5, + ACTIONS(2236), 1, anon_sym_PLUS, - ACTIONS(5674), 1, + ACTIONS(5706), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 10, + ACTIONS(2238), 11, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [323377] = 5, - ACTIONS(5674), 1, - anon_sym_if, - ACTIONS(5676), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2447), 10, - anon_sym_DOT, + [329904] = 14, + ACTIONS(5710), 1, anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_QMARK_DOT, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, anon_sym_and, + ACTIONS(5722), 1, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [323404] = 5, - ACTIONS(2465), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5674), 1, - anon_sym_if, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(6403), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 10, + ACTIONS(736), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [323431] = 5, - ACTIONS(2461), 1, - anon_sym_PLUS, - ACTIONS(5674), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [323458] = 5, - ACTIONS(2453), 1, + [329950] = 5, + ACTIONS(129), 1, anon_sym_PLUS, - ACTIONS(5674), 1, + ACTIONS(5706), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 10, + ACTIONS(133), 11, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_for, anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [323485] = 5, - ACTIONS(2461), 1, - anon_sym_PLUS, - ACTIONS(5674), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 10, - anon_sym_DOT, + [329978] = 14, + ACTIONS(5710), 1, anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_QMARK_DOT, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, anon_sym_and, + ACTIONS(5722), 1, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [323512] = 5, - ACTIONS(5674), 1, - anon_sym_if, - ACTIONS(5676), 1, + ACTIONS(5724), 1, anon_sym_PLUS, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(6313), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 10, - anon_sym_DOT, + [330024] = 14, + ACTIONS(5710), 1, anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [323539] = 8, - ACTIONS(4421), 1, - anon_sym_not, - ACTIONS(4439), 1, - anon_sym_is, - ACTIONS(5680), 1, - anon_sym_EQ, - STATE(4684), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4437), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5678), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(4417), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [323571] = 10, - ACTIONS(5642), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5656), 1, - anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5686), 1, - anon_sym_RBRACE, + ACTIONS(5724), 1, + anon_sym_PLUS, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(5973), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [323607] = 4, - ACTIONS(5628), 1, + [330070] = 5, + ACTIONS(2400), 1, + anon_sym_PLUS, + ACTIONS(5706), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 10, + ACTIONS(2402), 11, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - [323631] = 12, - ACTIONS(5626), 1, + anon_sym_PLUS_EQ, + [330098] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_COMMA, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5692), 1, - anon_sym_RBRACK, - STATE(5515), 1, - aux_sym_subscript_repeat1, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(5937), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323671] = 12, - ACTIONS(5626), 1, + [330144] = 14, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5694), 1, - anon_sym_COMMA, - ACTIONS(5696), 1, - anon_sym_RBRACK, - STATE(5614), 1, - aux_sym_subscript_repeat1, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(6174), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323711] = 8, - ACTIONS(5628), 1, + [330190] = 14, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(6251), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 5, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, - [323743] = 5, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5640), 1, + [330236] = 5, + ACTIONS(2252), 1, anon_sym_PLUS, + ACTIONS(5706), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 9, + ACTIONS(2254), 11, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [323769] = 5, - ACTIONS(5628), 1, + anon_sym_PLUS_EQ, + [330264] = 14, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5640), 1, + ACTIONS(5714), 1, + anon_sym_COMMA, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, anon_sym_PLUS, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(6358), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 9, - anon_sym_DOT, + [330310] = 14, + ACTIONS(5710), 1, anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5714), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5716), 1, anon_sym_for, + ACTIONS(5718), 1, anon_sym_RBRACK, - anon_sym_QMARK_DOT, + ACTIONS(5720), 1, anon_sym_and, + ACTIONS(5722), 1, anon_sym_or, - [323795] = 4, - ACTIONS(5628), 1, - anon_sym_if, + ACTIONS(5724), 1, + anon_sym_PLUS, + STATE(5365), 1, + sym_for_in_clause, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, + STATE(6293), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 10, + ACTIONS(736), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [323819] = 4, - ACTIONS(5628), 1, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [330356] = 4, + ACTIONS(5712), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 10, + ACTIONS(133), 10, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -325659,484 +333354,663 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [323843] = 12, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [330380] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5708), 1, + anon_sym_PLUS, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5698), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACK, - STATE(5628), 1, - aux_sym_subscript_repeat1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5762), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323883] = 12, - ACTIONS(5626), 1, + ACTIONS(5760), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [330416] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5702), 1, + ACTIONS(5764), 1, anon_sym_COMMA, - ACTIONS(5704), 1, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5768), 1, anon_sym_RBRACK, - STATE(5575), 1, + STATE(5775), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323923] = 12, - ACTIONS(5626), 1, + [330456] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5706), 1, + ACTIONS(5770), 1, anon_sym_COMMA, - ACTIONS(5708), 1, + ACTIONS(5772), 1, anon_sym_RBRACK, - STATE(5501), 1, + STATE(5646), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [323963] = 10, - ACTIONS(5642), 1, + [330496] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5710), 1, + ACTIONS(5774), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [323999] = 10, - ACTIONS(5642), 1, + [330532] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5656), 1, - anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5776), 1, + anon_sym_COMMA, + ACTIONS(5778), 1, + anon_sym_RBRACK, + STATE(5697), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [330572] = 12, + ACTIONS(5710), 1, anon_sym_as, ACTIONS(5712), 1, - anon_sym_RBRACE, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5780), 1, + anon_sym_COMMA, + ACTIONS(5782), 1, + anon_sym_RBRACK, + STATE(5541), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [324035] = 12, - ACTIONS(5626), 1, + [330612] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5714), 1, + ACTIONS(5784), 1, anon_sym_COMMA, - ACTIONS(5716), 1, + ACTIONS(5786), 1, anon_sym_RBRACK, - STATE(5469), 1, + STATE(5718), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324075] = 10, - ACTIONS(5642), 1, + [330652] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5718), 1, + ACTIONS(5788), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324111] = 12, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [330688] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5708), 1, + anon_sym_PLUS, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5720), 1, - anon_sym_COMMA, - ACTIONS(5722), 1, - anon_sym_RBRACK, - STATE(5613), 1, - aux_sym_subscript_repeat1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5790), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324151] = 10, - ACTIONS(5642), 1, + ACTIONS(5760), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [330724] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5792), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324187] = 5, - ACTIONS(5628), 1, + [330760] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5640), 1, + ACTIONS(5708), 1, anon_sym_PLUS, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5794), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5760), 3, anon_sym_COLON, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [324213] = 8, - ACTIONS(4303), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [330796] = 8, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4441), 1, anon_sym_is, - ACTIONS(5680), 1, + ACTIONS(5798), 1, anon_sym_EQ, - STATE(4681), 1, + STATE(4777), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5678), 2, + ACTIONS(5796), 2, anon_sym_COLON, anon_sym_PLUS_EQ, - ACTIONS(4295), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [324245] = 10, - ACTIONS(5642), 1, + [330828] = 8, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + ACTIONS(5798), 1, + anon_sym_EQ, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5796), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [330860] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5656), 1, - anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5726), 1, - anon_sym_RBRACE, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5800), 1, + anon_sym_COMMA, + ACTIONS(5802), 1, + anon_sym_RBRACK, + STATE(5701), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [324281] = 10, - ACTIONS(5642), 1, + [330900] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5728), 1, + ACTIONS(5804), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324317] = 10, - ACTIONS(5642), 1, + [330936] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5656), 1, - anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5730), 1, - anon_sym_RBRACE, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5806), 1, + anon_sym_COMMA, + ACTIONS(5808), 1, + anon_sym_RBRACK, + STATE(5732), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [324353] = 10, - ACTIONS(5642), 1, + [330976] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5732), 1, + ACTIONS(5810), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324389] = 4, - ACTIONS(5628), 1, + [331012] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_COMMA, + ACTIONS(5814), 1, + anon_sym_RBRACK, + STATE(5700), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 10, - anon_sym_DOT, + [331052] = 12, + ACTIONS(5710), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, anon_sym_COLON, - anon_sym_for, + ACTIONS(5816), 1, + anon_sym_COMMA, + ACTIONS(5818), 1, anon_sym_RBRACK, + STATE(5731), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331092] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, anon_sym_and, + ACTIONS(5722), 1, anon_sym_or, + ACTIONS(5724), 1, anon_sym_PLUS, - [324413] = 10, - ACTIONS(5642), 1, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5820), 1, + anon_sym_COMMA, + ACTIONS(5822), 1, + anon_sym_RBRACK, + STATE(5763), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331132] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5734), 1, + ACTIONS(5824), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324449] = 10, - ACTIONS(5642), 1, + [331168] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5736), 1, + ACTIONS(5826), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324485] = 5, - STATE(1571), 1, + [331204] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5828), 1, + anon_sym_COMMA, + ACTIONS(5830), 1, + anon_sym_RBRACK, + STATE(5518), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331244] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_COMMA, + ACTIONS(5834), 1, + anon_sym_RBRACK, + STATE(5605), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331284] = 5, + STATE(945), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 2, + ACTIONS(2298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5738), 2, + ACTIONS(5836), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2473), 8, + ACTIONS(2300), 8, sym_string_start, anon_sym_in, anon_sym_not, @@ -326145,116 +334019,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [324511] = 10, - ACTIONS(5642), 1, + [331310] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5740), 1, + ACTIONS(5838), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324547] = 4, - ACTIONS(5628), 1, + [331346] = 10, + ACTIONS(5706), 1, anon_sym_if, + ACTIONS(5708), 1, + anon_sym_PLUS, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5840), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 10, + ACTIONS(5760), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [331382] = 8, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2057), 5, anon_sym_as, anon_sym_COMMA, anon_sym_COLON, anon_sym_for, anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [324571] = 12, - ACTIONS(5626), 1, + [331414] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5742), 1, + ACTIONS(5842), 1, anon_sym_COMMA, - ACTIONS(5744), 1, + ACTIONS(5844), 1, anon_sym_RBRACK, - STATE(5554), 1, + STATE(5630), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324611] = 10, - ACTIONS(5642), 1, + [331454] = 5, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5746), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [324647] = 4, - ACTIONS(5628), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 10, + ACTIONS(2244), 9, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -326264,869 +334144,847 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - [324671] = 12, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [331480] = 8, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5728), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5848), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5748), 1, - anon_sym_COMMA, - ACTIONS(5750), 1, - anon_sym_RBRACK, - STATE(5665), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324711] = 10, - ACTIONS(5642), 1, + ACTIONS(2057), 5, + anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_then, + [331512] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5752), 1, + ACTIONS(5850), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324747] = 10, - ACTIONS(5642), 1, + [331548] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5754), 1, + ACTIONS(5852), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324783] = 12, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [331584] = 4, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5756), 1, - anon_sym_COMMA, - ACTIONS(5758), 1, - anon_sym_RBRACK, - STATE(5678), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324823] = 8, - ACTIONS(5674), 1, - anon_sym_if, - ACTIONS(5676), 1, - anon_sym_PLUS, - ACTIONS(5760), 1, + ACTIONS(2266), 10, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5762), 1, anon_sym_or, + anon_sym_PLUS, + [331608] = 5, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5724), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 5, + ACTIONS(2258), 9, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_then, - [324855] = 12, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5764), 1, - anon_sym_COMMA, - ACTIONS(5766), 1, - anon_sym_RBRACK, - STATE(5506), 1, - aux_sym_subscript_repeat1, + [331634] = 4, + ACTIONS(5712), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324895] = 12, - ACTIONS(5626), 1, + ACTIONS(2254), 10, + anon_sym_DOT, anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5768), 1, - anon_sym_COMMA, - ACTIONS(5770), 1, - anon_sym_RBRACK, - STATE(5437), 1, - aux_sym_subscript_repeat1, + [331658] = 4, + ACTIONS(5712), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [324935] = 10, - ACTIONS(5642), 1, + ACTIONS(2254), 10, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [331682] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5772), 1, + ACTIONS(5854), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [324971] = 12, - ACTIONS(5626), 1, + [331718] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5774), 1, + ACTIONS(5856), 1, anon_sym_COMMA, - ACTIONS(5776), 1, + ACTIONS(5858), 1, anon_sym_RBRACK, - STATE(5608), 1, + STATE(5639), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325011] = 10, - ACTIONS(5642), 1, + [331758] = 10, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5656), 1, + ACTIONS(5708), 1, anon_sym_PLUS, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5778), 1, + ACTIONS(5860), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, + ACTIONS(5760), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [325047] = 12, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [331794] = 4, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2402), 10, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, - ACTIONS(5780), 1, - anon_sym_COMMA, - ACTIONS(5782), 1, - anon_sym_RBRACK, - STATE(5525), 1, - aux_sym_subscript_repeat1, + [331818] = 10, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5708), 1, + anon_sym_PLUS, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5862), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325087] = 12, - ACTIONS(5626), 1, + ACTIONS(5760), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [331854] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5784), 1, + ACTIONS(5864), 1, anon_sym_COMMA, - ACTIONS(5786), 1, + ACTIONS(5866), 1, anon_sym_RBRACK, - STATE(5664), 1, + STATE(5750), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325127] = 12, - ACTIONS(5626), 1, + [331894] = 4, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 10, + anon_sym_DOT, anon_sym_as, - ACTIONS(5628), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [331918] = 12, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5788), 1, + ACTIONS(5868), 1, anon_sym_COMMA, - ACTIONS(5790), 1, + ACTIONS(5870), 1, anon_sym_RBRACK, - STATE(5460), 1, + STATE(5661), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325167] = 12, - ACTIONS(5626), 1, + [331958] = 12, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_COLON, - ACTIONS(5792), 1, + ACTIONS(5872), 1, anon_sym_COMMA, - ACTIONS(5794), 1, + ACTIONS(5874), 1, anon_sym_RBRACK, - STATE(5652), 1, + STATE(5554), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325207] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5795), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [325238] = 4, - ACTIONS(5796), 1, + [331998] = 5, + ACTIONS(2238), 1, + anon_sym_LF, + ACTIONS(5876), 1, anon_sym_if, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 9, + ACTIONS(2236), 8, anon_sym_DOT, anon_sym_as, 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, - [325261] = 6, - ACTIONS(2443), 1, - anon_sym_LF, - ACTIONS(5798), 1, + [332023] = 4, + ACTIONS(5878), 1, anon_sym_if, - ACTIONS(5800), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2445), 7, + ACTIONS(133), 9, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [325288] = 11, - ACTIONS(5802), 1, + anon_sym_PLUS, + [332046] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5806), 1, + ACTIONS(5884), 1, anon_sym_COMMA, - ACTIONS(5808), 1, + ACTIONS(5886), 1, anon_sym_RPAREN, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - STATE(5671), 1, + STATE(5549), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325325] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5741), 1, - sym_string, - ACTIONS(3), 2, + [332083] = 6, + ACTIONS(2244), 1, + anon_sym_LF, + ACTIONS(5876), 1, + anon_sym_if, + ACTIONS(5894), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [325356] = 11, - ACTIONS(5802), 1, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2242), 7, + anon_sym_DOT, anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5812), 1, anon_sym_or, - ACTIONS(5814), 1, + [332110] = 9, + ACTIONS(2057), 1, + anon_sym_LF, + ACTIONS(5876), 1, + anon_sym_if, + ACTIONS(5894), 1, anon_sym_PLUS, - ACTIONS(5816), 1, - anon_sym_COMMA, - ACTIONS(5818), 1, - anon_sym_RPAREN, - STATE(5611), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + ACTIONS(5896), 1, + anon_sym_and, + ACTIONS(5898), 1, + anon_sym_or, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325393] = 8, - ACTIONS(408), 1, + ACTIONS(2059), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + [332143] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5746), 1, + STATE(5864), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325424] = 11, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(5820), 1, - anon_sym_COMMA, - ACTIONS(5822), 1, - anon_sym_RPAREN, - STATE(5604), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [325461] = 8, - ACTIONS(408), 1, + [332174] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5790), 1, + STATE(5801), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325492] = 9, - ACTIONS(2357), 1, + [332205] = 5, + ACTIONS(133), 1, anon_sym_LF, - ACTIONS(5798), 1, + ACTIONS(5876), 1, anon_sym_if, - ACTIONS(5800), 1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(129), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - ACTIONS(5824), 1, + [332230] = 9, + ACTIONS(5878), 1, + anon_sym_if, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5904), 1, anon_sym_and, - ACTIONS(5826), 1, + ACTIONS(5906), 1, anon_sym_or, - ACTIONS(5), 2, + ACTIONS(5908), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3808), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2355), 3, - anon_sym_as, + ACTIONS(5902), 3, anon_sym_COMMA, - anon_sym_RBRACE, - [325525] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5794), 1, - sym_string, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [332263] = 10, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(5766), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [325556] = 8, - ACTIONS(408), 1, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5910), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332298] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5735), 1, + STATE(5809), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325587] = 8, - ACTIONS(408), 1, + [332329] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5736), 1, + STATE(5874), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325618] = 6, - ACTIONS(2447), 1, - anon_sym_LF, - ACTIONS(5798), 1, - anon_sym_if, - ACTIONS(5800), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2449), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [325645] = 11, - ACTIONS(5802), 1, + [332360] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5828), 1, + ACTIONS(5912), 1, anon_sym_COMMA, - ACTIONS(5830), 1, + ACTIONS(5914), 1, anon_sym_RPAREN, - STATE(5438), 1, + STATE(5648), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325682] = 9, - ACTIONS(5796), 1, - anon_sym_if, - ACTIONS(5832), 1, + [332397] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5836), 1, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5838), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5840), 1, + ACTIONS(5892), 1, anon_sym_PLUS, + ACTIONS(5916), 1, + anon_sym_COMMA, + ACTIONS(5918), 1, + anon_sym_RPAREN, + STATE(5633), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5834), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [325715] = 11, - ACTIONS(5802), 1, + [332434] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5842), 1, + ACTIONS(5920), 1, anon_sym_COMMA, - ACTIONS(5844), 1, + ACTIONS(5922), 1, anon_sym_RPAREN, - STATE(5490), 1, + STATE(5565), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325752] = 9, - ACTIONS(5642), 1, + [332471] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5882), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [332502] = 9, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5728), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5848), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5924), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5054), 3, - anon_sym_COMMA, - anon_sym_for, - anon_sym_RBRACE, - [325785] = 8, - ACTIONS(408), 1, + ACTIONS(5926), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [332535] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5785), 1, + STATE(5841), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325816] = 8, - ACTIONS(408), 1, + [332566] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5786), 1, + STATE(5807), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325847] = 5, - ACTIONS(2463), 1, + [332597] = 5, + ACTIONS(2266), 1, anon_sym_LF, - ACTIONS(5798), 1, + ACTIONS(5876), 1, anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2465), 8, + ACTIONS(2264), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -327135,89 +334993,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [325872] = 10, - ACTIONS(5642), 1, + [332622] = 10, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5848), 1, - anon_sym_COMMA, + ACTIONS(5928), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5850), 2, - anon_sym_for, - anon_sym_RBRACE, - STATE(3454), 2, + ACTIONS(1961), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332657] = 6, + ACTIONS(2258), 1, + anon_sym_LF, + ACTIONS(5876), 1, + anon_sym_if, + ACTIONS(5894), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [325907] = 8, - ACTIONS(408), 1, + ACTIONS(2256), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [332684] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5796), 1, + STATE(5832), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325938] = 8, - ACTIONS(408), 1, + [332715] = 5, + ACTIONS(2254), 1, + anon_sym_LF, + ACTIONS(5876), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2252), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [332740] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5793), 1, + STATE(5799), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [325969] = 5, - ACTIONS(189), 1, + [332771] = 5, + ACTIONS(2254), 1, anon_sym_LF, - ACTIONS(5798), 1, + ACTIONS(5876), 1, anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(191), 8, + ACTIONS(2252), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -327226,307 +335125,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [325994] = 11, - ACTIONS(5802), 1, + [332796] = 10, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5852), 1, + ACTIONS(5930), 1, anon_sym_COMMA, - ACTIONS(5854), 1, - anon_sym_RPAREN, - STATE(5528), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + ACTIONS(5932), 2, + anon_sym_for, + anon_sym_RBRACK, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326031] = 11, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [332831] = 9, + ACTIONS(5878), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5904), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5906), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5908), 1, anon_sym_PLUS, - ACTIONS(5856), 1, - anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RPAREN, - STATE(5458), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326068] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5761), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [326099] = 9, - ACTIONS(5674), 1, + ACTIONS(5934), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [332864] = 10, + ACTIONS(5146), 1, + anon_sym_LF, + ACTIONS(5876), 1, anon_sym_if, - ACTIONS(5676), 1, + ACTIONS(5894), 1, anon_sym_PLUS, - ACTIONS(5760), 1, + ACTIONS(5896), 1, anon_sym_and, - ACTIONS(5762), 1, + ACTIONS(5898), 1, anon_sym_or, - ACTIONS(5860), 1, + ACTIONS(5936), 1, anon_sym_as, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(756), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(5684), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [326132] = 11, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(5862), 1, + ACTIONS(5142), 2, anon_sym_COMMA, - ACTIONS(5864), 1, - anon_sym_RPAREN, - STATE(5666), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, + anon_sym_RBRACE, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326169] = 10, - ACTIONS(1716), 1, - anon_sym_COLON, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [332899] = 9, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5938), 1, + anon_sym_as, + ACTIONS(5940), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5942), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1714), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326204] = 8, - ACTIONS(408), 1, + ACTIONS(5934), 3, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + [332932] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5766), 1, + STATE(5810), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326235] = 9, - ACTIONS(5674), 1, + [332963] = 11, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5676), 1, + ACTIONS(5888), 1, + anon_sym_and, + ACTIONS(5890), 1, + anon_sym_or, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5760), 1, + ACTIONS(5944), 1, + anon_sym_COMMA, + ACTIONS(5946), 1, + anon_sym_RPAREN, + STATE(5787), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(760), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333000] = 8, + ACTIONS(5878), 1, + anon_sym_if, + ACTIONS(5904), 1, anon_sym_and, - ACTIONS(5762), 1, + ACTIONS(5906), 1, anon_sym_or, - ACTIONS(5860), 1, - anon_sym_as, + ACTIONS(5908), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5866), 3, + ACTIONS(2057), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [333031] = 10, + ACTIONS(1784), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [326268] = 11, - ACTIONS(5802), 1, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5868), 1, - anon_sym_COMMA, - ACTIONS(5870), 1, - anon_sym_RPAREN, - STATE(5430), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + ACTIONS(1782), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326305] = 11, - ACTIONS(5802), 1, + [333066] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5872), 1, + ACTIONS(5948), 1, anon_sym_COMMA, - ACTIONS(5874), 1, + ACTIONS(5950), 1, anon_sym_RPAREN, - STATE(5513), 1, + STATE(5687), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326342] = 8, - ACTIONS(408), 1, + [333103] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5789), 1, + STATE(5797), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326373] = 4, - ACTIONS(5796), 1, + [333134] = 11, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, + ACTIONS(5888), 1, + anon_sym_and, + ACTIONS(5890), 1, + anon_sym_or, + ACTIONS(5892), 1, + anon_sym_PLUS, + ACTIONS(5952), 1, + anon_sym_COMMA, + ACTIONS(5954), 1, + anon_sym_RPAREN, + STATE(5569), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 9, + ACTIONS(760), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [326396] = 4, - ACTIONS(5796), 1, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333171] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5803), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [333202] = 4, + ACTIONS(5878), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 9, + ACTIONS(2402), 9, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -327536,1137 +335437,1109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [326419] = 8, - ACTIONS(408), 1, + [333225] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5739), 1, + STATE(5821), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326450] = 8, - ACTIONS(5796), 1, + [333256] = 11, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5836), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5838), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5840), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2357), 4, - anon_sym_as, + ACTIONS(5956), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [326481] = 10, - ACTIONS(5798), 1, - anon_sym_if, - ACTIONS(5800), 1, - anon_sym_PLUS, - ACTIONS(5824), 1, - anon_sym_and, - ACTIONS(5826), 1, - anon_sym_or, - ACTIONS(5876), 1, - anon_sym_as, - ACTIONS(5880), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5958), 1, + anon_sym_RPAREN, + STATE(5519), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(734), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5878), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3808), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326516] = 8, - ACTIONS(408), 1, + [333293] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5738), 1, + STATE(5907), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326547] = 8, - ACTIONS(408), 1, + [333324] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5726), 1, + STATE(5796), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326578] = 8, - ACTIONS(408), 1, + [333355] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5722), 1, + STATE(5802), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326609] = 5, - ACTIONS(2439), 1, - anon_sym_LF, - ACTIONS(5798), 1, - anon_sym_if, - ACTIONS(5), 2, + [333386] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5818), 1, + sym_string, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2441), 8, - anon_sym_DOT, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [333417] = 11, + ACTIONS(5880), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, + ACTIONS(5890), 1, anon_sym_or, + ACTIONS(5892), 1, anon_sym_PLUS, - [326634] = 4, - ACTIONS(5796), 1, - anon_sym_if, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_RPAREN, + STATE(5762), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(760), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 9, - anon_sym_DOT, + [333454] = 11, + ACTIONS(5880), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, + ACTIONS(5890), 1, anon_sym_or, + ACTIONS(5892), 1, anon_sym_PLUS, - [326657] = 4, - ACTIONS(5796), 1, - anon_sym_if, + ACTIONS(5964), 1, + anon_sym_COMMA, + ACTIONS(5966), 1, + anon_sym_RPAREN, + STATE(5753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 9, + ACTIONS(760), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_QMARK_DOT, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333491] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5876), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [333522] = 10, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, + ACTIONS(5756), 1, anon_sym_or, - anon_sym_PLUS, - [326680] = 5, - ACTIONS(5796), 1, - anon_sym_if, - ACTIONS(5840), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5968), 1, + anon_sym_COMMA, + ACTIONS(5970), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2455), 8, + ACTIONS(570), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [326705] = 4, - ACTIONS(5796), 1, - anon_sym_if, + ACTIONS(5932), 2, + anon_sym_for, + anon_sym_RBRACE, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333557] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5836), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [326728] = 8, - ACTIONS(408), 1, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [333588] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5805), 1, + STATE(5830), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326759] = 8, - ACTIONS(408), 1, + [333619] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5772), 1, + STATE(5865), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326790] = 11, - ACTIONS(5802), 1, + [333650] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5882), 1, + ACTIONS(5972), 1, anon_sym_COMMA, - ACTIONS(5884), 1, + ACTIONS(5974), 1, anon_sym_RPAREN, - STATE(5553), 1, + STATE(5704), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326827] = 11, - ACTIONS(5802), 1, + [333687] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5886), 1, + ACTIONS(5976), 1, anon_sym_COMMA, - ACTIONS(5888), 1, + ACTIONS(5978), 1, anon_sym_RPAREN, - STATE(5612), 1, + STATE(5734), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [326864] = 8, - ACTIONS(408), 1, + [333724] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5723), 1, + STATE(5905), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326895] = 8, - ACTIONS(408), 1, + [333755] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5729), 1, + STATE(5798), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326926] = 5, - ACTIONS(2459), 1, - anon_sym_LF, - ACTIONS(5798), 1, + [333786] = 4, + ACTIONS(5878), 1, anon_sym_if, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 8, + ACTIONS(2238), 9, anon_sym_DOT, anon_sym_as, 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, + [333809] = 4, + ACTIONS(5878), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [333832] = 4, + ACTIONS(5878), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3386), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [326951] = 8, - ACTIONS(408), 1, + [333855] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5763), 1, + STATE(5854), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [326982] = 8, - ACTIONS(408), 1, + [333886] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5757), 1, + STATE(5846), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327013] = 5, - ACTIONS(2459), 1, - anon_sym_LF, - ACTIONS(5798), 1, + [333917] = 5, + ACTIONS(5878), 1, anon_sym_if, - ACTIONS(5), 2, + ACTIONS(5908), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2461), 8, + ACTIONS(2258), 8, anon_sym_DOT, anon_sym_as, 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, - [327038] = 11, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [333942] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5819), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [333973] = 4, + ACTIONS(5878), 1, anon_sym_if, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(5890), 1, - anon_sym_COMMA, - ACTIONS(5892), 1, - anon_sym_RPAREN, - STATE(5679), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327075] = 11, - ACTIONS(5802), 1, + ACTIONS(2266), 9, + anon_sym_DOT, anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5812), 1, anon_sym_or, - ACTIONS(5814), 1, anon_sym_PLUS, - ACTIONS(5894), 1, - anon_sym_COMMA, - ACTIONS(5896), 1, - anon_sym_RPAREN, - STATE(5504), 1, - aux_sym_argument_list_repeat1, + [333996] = 5, + ACTIONS(5878), 1, + anon_sym_if, + ACTIONS(5908), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327112] = 11, - ACTIONS(5802), 1, + ACTIONS(2244), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(5804), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [334021] = 9, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5938), 1, + anon_sym_as, + ACTIONS(5940), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5942), 1, anon_sym_PLUS, - ACTIONS(5898), 1, - anon_sym_COMMA, - ACTIONS(5900), 1, - anon_sym_RPAREN, - STATE(5577), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327149] = 9, - ACTIONS(5796), 1, + ACTIONS(5902), 3, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + [334054] = 8, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5832), 1, - anon_sym_as, - ACTIONS(5836), 1, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5838), 1, + ACTIONS(5940), 1, anon_sym_or, - ACTIONS(5840), 1, + ACTIONS(5942), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(5902), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [327182] = 8, - ACTIONS(408), 1, + ACTIONS(2057), 4, + anon_sym_as, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + [334085] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5705), 1, + STATE(5843), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327213] = 5, - ACTIONS(5796), 1, + [334116] = 5, + ACTIONS(2402), 1, + anon_sym_LF, + ACTIONS(5876), 1, anon_sym_if, - ACTIONS(5840), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 8, + ACTIONS(2400), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [327238] = 10, - ACTIONS(5072), 1, - anon_sym_LF, - ACTIONS(5798), 1, - anon_sym_if, - ACTIONS(5800), 1, anon_sym_PLUS, - ACTIONS(5824), 1, - anon_sym_and, - ACTIONS(5826), 1, - anon_sym_or, - ACTIONS(5876), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(734), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5070), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [327273] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5760), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [327304] = 8, - ACTIONS(408), 1, + [334141] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5777), 1, + STATE(5852), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327335] = 8, - ACTIONS(408), 1, + [334172] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5765), 1, + STATE(5831), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327366] = 8, - ACTIONS(408), 1, + [334203] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5775), 1, + STATE(5827), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327397] = 10, - ACTIONS(5626), 1, + [334234] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5904), 1, + ACTIONS(5980), 1, anon_sym_COMMA, + ACTIONS(5982), 1, + anon_sym_RPAREN, + STATE(5692), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5850), 2, - anon_sym_for, - anon_sym_RBRACK, - STATE(3698), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327432] = 11, - ACTIONS(5802), 1, + [334271] = 10, + ACTIONS(5876), 1, + anon_sym_if, + ACTIONS(5894), 1, + anon_sym_PLUS, + ACTIONS(5896), 1, + anon_sym_and, + ACTIONS(5898), 1, + anon_sym_or, + ACTIONS(5936), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5986), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(756), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3955), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [334306] = 11, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5906), 1, + ACTIONS(5988), 1, anon_sym_COMMA, - ACTIONS(5908), 1, + ACTIONS(5990), 1, anon_sym_RPAREN, - STATE(5467), 1, + STATE(5695), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327469] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5740), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [327500] = 6, - ACTIONS(2455), 1, - anon_sym_LF, - ACTIONS(5798), 1, + [334343] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5800), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2457), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, + ACTIONS(5754), 1, anon_sym_and, + ACTIONS(5756), 1, anon_sym_or, - [327527] = 8, - ACTIONS(408), 1, - sym_string_start, - ACTIONS(4303), 1, - anon_sym_not, - ACTIONS(4321), 1, - anon_sym_is, - STATE(4681), 1, - aux_sym_comparison_operator_repeat1, - STATE(5787), 1, - sym_string, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4295), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [327558] = 5, - ACTIONS(2451), 1, - anon_sym_LF, - ACTIONS(5798), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(3808), 2, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2453), 8, - anon_sym_DOT, - anon_sym_as, + ACTIONS(5156), 3, anon_sym_COMMA, + anon_sym_for, anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [327583] = 8, - ACTIONS(408), 1, + [334376] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5788), 1, + STATE(5829), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327614] = 10, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [334407] = 9, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5728), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5848), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(5910), 1, - anon_sym_COLON, + ACTIONS(5924), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327649] = 11, - ACTIONS(5802), 1, + ACTIONS(5760), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [334440] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5912), 1, + ACTIONS(5992), 1, anon_sym_COMMA, - ACTIONS(5914), 1, + ACTIONS(5994), 1, anon_sym_RPAREN, - STATE(5511), 1, + STATE(5544), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327686] = 5, - ACTIONS(5796), 1, + [334477] = 11, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5840), 1, + ACTIONS(5888), 1, + anon_sym_and, + ACTIONS(5890), 1, + anon_sym_or, + ACTIONS(5892), 1, anon_sym_PLUS, + ACTIONS(5996), 1, + anon_sym_COMMA, + ACTIONS(5998), 1, + anon_sym_RPAREN, + STATE(5683), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 8, + sym_line_continuation, + ACTIONS(760), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [327711] = 10, - ACTIONS(5626), 1, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [334514] = 11, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5690), 1, - anon_sym_COLON, + ACTIONS(6000), 1, + anon_sym_COMMA, + ACTIONS(6002), 1, + anon_sym_RPAREN, + STATE(5649), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [327746] = 8, - ACTIONS(408), 1, + [334551] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5791), 1, + STATE(5903), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327777] = 8, - ACTIONS(408), 1, + [334582] = 8, + ACTIONS(393), 1, sym_string_start, - ACTIONS(4303), 1, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4681), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, - STATE(5792), 1, + STATE(5908), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [327808] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, + [334613] = 8, + ACTIONS(393), 1, + sym_string_start, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(4780), 1, + aux_sym_comparison_operator_repeat1, + STATE(5862), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5918), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [327840] = 7, - ACTIONS(504), 1, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [334644] = 9, + ACTIONS(660), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(3059), 1, + anon_sym_LPAREN, + ACTIONS(6004), 1, sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6006), 1, anon_sym_LBRACE, - STATE(6055), 1, - sym_quant_target, + ACTIONS(6008), 1, + sym_integer, + ACTIONS(6010), 1, + sym_float, + STATE(5584), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(5705), 4, + sym_dotted_name, + sym_paren_expression, sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, sym_string, - [327868] = 10, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5928), 1, - anon_sym_if, - ACTIONS(5930), 1, - anon_sym_COMMA, - ACTIONS(5932), 1, - anon_sym_and, - ACTIONS(5934), 1, - anon_sym_or, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5938), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [327902] = 7, - ACTIONS(504), 1, + [334676] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6054), 1, + STATE(6127), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [327930] = 4, - ACTIONS(5940), 1, + [334704] = 5, + ACTIONS(6018), 1, anon_sym_if, + ACTIONS(6020), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 8, + ACTIONS(2258), 7, sym__newline, anon_sym_DOT, anon_sym_as, @@ -328674,61 +336547,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - [327952] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6051), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [327980] = 9, - ACTIONS(5802), 1, + [334728] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5724), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5942), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4121), 2, + ACTIONS(6022), 2, + anon_sym_for, + anon_sym_RBRACK, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [328012] = 4, - ACTIONS(5940), 1, + [334760] = 4, + ACTIONS(6018), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 8, + ACTIONS(2402), 8, sym__newline, anon_sym_DOT, anon_sym_as, @@ -328737,728 +336588,575 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [328034] = 4, - ACTIONS(5940), 1, + [334782] = 4, + ACTIONS(5882), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 8, - sym__newline, + ACTIONS(2238), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [328056] = 8, - ACTIONS(5674), 1, + [334804] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5760), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5944), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5946), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + ACTIONS(6022), 2, + anon_sym_for, + anon_sym_RBRACE, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 3, - anon_sym_as, - anon_sym_COLON, - anon_sym_LPAREN, - [328086] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6050), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328114] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6058), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328142] = 9, - ACTIONS(5674), 1, + [334836] = 4, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5760), 1, - anon_sym_and, - ACTIONS(5944), 1, - anon_sym_or, - ACTIONS(5946), 1, - anon_sym_PLUS, - ACTIONS(5948), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5902), 2, - anon_sym_COLON, - anon_sym_LPAREN, - STATE(3423), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [328174] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6276), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328202] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6059), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328230] = 7, - ACTIONS(504), 1, + ACTIONS(133), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [334858] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6047), 1, + STATE(6080), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328258] = 4, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(189), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [328280] = 7, - ACTIONS(504), 1, + [334886] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6062), 1, + STATE(6081), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328308] = 7, - ACTIONS(504), 1, + [334914] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6046), 1, + STATE(6086), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328336] = 9, + [334942] = 9, ACTIONS(21), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6026), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_integer, - ACTIONS(5956), 1, + ACTIONS(6030), 1, sym_float, - STATE(6332), 1, + STATE(6229), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, + STATE(6129), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [328368] = 7, - ACTIONS(504), 1, + [334974] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6063), 1, + STATE(6087), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328396] = 7, - ACTIONS(504), 1, + [335002] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6066), 1, + STATE(6091), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328424] = 7, - ACTIONS(504), 1, + [335030] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6052), 1, + STATE(6092), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328452] = 9, - ACTIONS(5626), 1, + [335058] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5958), 2, + ACTIONS(6032), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [328484] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6067), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328512] = 5, - ACTIONS(5804), 1, + [335090] = 5, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5814), 1, + ACTIONS(6020), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 7, + ACTIONS(2244), 7, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [328536] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6045), 1, - sym_quant_target, + [335114] = 4, + ACTIONS(6018), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328564] = 8, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5812), 1, anon_sym_or, - ACTIONS(5814), 1, anon_sym_PLUS, + [335136] = 8, + ACTIONS(6018), 1, + anon_sym_if, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 3, + ACTIONS(2057), 3, + sym__newline, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - [328594] = 7, - ACTIONS(504), 1, + [335166] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6043), 1, + STATE(6095), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328622] = 7, - ACTIONS(504), 1, + [335194] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6042), 1, + STATE(6096), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328650] = 7, - ACTIONS(504), 1, + [335222] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6070), 1, + STATE(6099), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328678] = 4, - ACTIONS(5940), 1, - anon_sym_if, + [335250] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(6100), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 8, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [328700] = 4, - ACTIONS(5940), 1, + STATE(6055), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [335278] = 4, + ACTIONS(5882), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 8, - sym__newline, + ACTIONS(2254), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [328722] = 7, - ACTIONS(504), 1, + [335300] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6071), 1, + STATE(6103), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328750] = 7, - ACTIONS(504), 1, + [335328] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6039), 1, + STATE(6104), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328778] = 7, - ACTIONS(504), 1, - sym_string_start, - ACTIONS(5920), 1, - sym_identifier, - ACTIONS(5922), 1, - anon_sym_LBRACK, - ACTIONS(5924), 1, - anon_sym_LBRACE, - STATE(6038), 1, - sym_quant_target, + [335356] = 4, + ACTIONS(6018), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [328806] = 7, - ACTIONS(504), 1, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2238), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [335378] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6074), 1, + STATE(6107), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328834] = 7, - ACTIONS(504), 1, + [335406] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2218), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335438] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6075), 1, + STATE(6108), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328862] = 7, - ACTIONS(504), 1, + [335466] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6035), 1, + STATE(6111), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328890] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5960), 2, - anon_sym_for, - anon_sym_RBRACK, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [328922] = 7, - ACTIONS(504), 1, + [335494] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6034), 1, + STATE(6112), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [328950] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [328982] = 4, - ACTIONS(5804), 1, + [335522] = 4, + ACTIONS(5882), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 8, + ACTIONS(2254), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -329467,3997 +337165,3759 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [329004] = 7, - ACTIONS(504), 1, + [335544] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6078), 1, + STATE(6115), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329032] = 7, - ACTIONS(504), 1, + [335572] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6079), 1, + STATE(6116), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329060] = 9, - ACTIONS(5642), 1, + [335600] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5960), 2, - anon_sym_for, - anon_sym_RBRACE, - STATE(3454), 2, + ACTIONS(6038), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [329092] = 7, - ACTIONS(504), 1, + [335632] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6026), 1, + anon_sym_LBRACE, + ACTIONS(6028), 1, + sym_integer, + ACTIONS(6030), 1, + sym_float, + STATE(5958), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6129), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [335664] = 7, + ACTIONS(4757), 1, + anon_sym_not, + ACTIONS(4761), 1, + anon_sym_is, + ACTIONS(6040), 1, + sym__newline, + STATE(4794), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4759), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4755), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [335692] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6082), 1, + STATE(5918), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329120] = 4, - ACTIONS(5804), 1, - anon_sym_if, + [335720] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(6119), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2451), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [329142] = 7, - ACTIONS(504), 1, + STATE(6055), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [335748] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6031), 1, + STATE(6120), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329170] = 7, - ACTIONS(504), 1, + [335776] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6030), 1, + STATE(6056), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329198] = 5, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, + [335804] = 5, + ACTIONS(5882), 1, anon_sym_if, + ACTIONS(5892), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 7, - sym__newline, + ACTIONS(2258), 7, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [329222] = 7, - ACTIONS(504), 1, + [335828] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6083), 1, + STATE(6123), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329250] = 7, - ACTIONS(504), 1, + [335856] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6027), 1, + STATE(6124), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329278] = 9, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, + [335884] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, - sym_integer, - ACTIONS(5956), 1, - sym_float, - STATE(6228), 1, - sym_test, + STATE(6128), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, - sym_dotted_name, - sym_paren_expression, + STATE(6055), 6, sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, sym_string, - [329310] = 7, - ACTIONS(504), 1, + [335912] = 4, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2266), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [335934] = 4, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5134), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2598), 8, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [335956] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6026), 1, + STATE(6131), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329338] = 9, - ACTIONS(5642), 1, + [335984] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5072), 2, + ACTIONS(6042), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3454), 2, + anon_sym_RBRACK, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [329370] = 10, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [336016] = 10, + ACTIONS(4788), 1, + sym__newline, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5962), 1, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6046), 1, anon_sym_if, - ACTIONS(5964), 1, + ACTIONS(6048), 1, anon_sym_COMMA, - ACTIONS(5966), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [329404] = 5, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4121), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [329428] = 7, - ACTIONS(504), 1, + [336050] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5920), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5922), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5924), 1, + ACTIONS(6016), 1, anon_sym_LBRACE, - STATE(6025), 1, + STATE(6132), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6028), 6, + STATE(6055), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [329456] = 9, - ACTIONS(5674), 1, + [336078] = 4, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5760), 1, - anon_sym_and, - ACTIONS(5944), 1, - anon_sym_or, - ACTIONS(5946), 1, - anon_sym_PLUS, - ACTIONS(5948), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5834), 2, - anon_sym_COLON, - anon_sym_LPAREN, - STATE(3423), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [329488] = 5, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5814), 1, + ACTIONS(133), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, + [336100] = 4, + ACTIONS(6018), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 7, + ACTIONS(2254), 8, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [329512] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + anon_sym_PLUS, + [336122] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1972), 2, + ACTIONS(5146), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, + anon_sym_RBRACE, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [329544] = 9, + [336154] = 9, ACTIONS(21), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6026), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_integer, - ACTIONS(5956), 1, + ACTIONS(6030), 1, sym_float, - STATE(6167), 1, + STATE(6433), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, + STATE(6129), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [329576] = 7, - ACTIONS(4680), 1, - anon_sym_not, - ACTIONS(4696), 1, - anon_sym_is, - ACTIONS(5968), 1, - sym__newline, - STATE(4704), 1, - aux_sym_comparison_operator_repeat1, + [336186] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(6135), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4672), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [329604] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + STATE(6055), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [336214] = 4, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2254), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(5638), 1, anon_sym_or, - ACTIONS(5640), 1, anon_sym_PLUS, + [336236] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(6024), 1, + sym_identifier, + ACTIONS(6026), 1, + anon_sym_LBRACE, + ACTIONS(6028), 1, + sym_integer, + ACTIONS(6030), 1, + sym_float, + STATE(6440), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5970), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [329636] = 9, + STATE(6129), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [336268] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(6136), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6055), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [336296] = 9, ACTIONS(21), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6026), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_integer, - ACTIONS(5956), 1, + ACTIONS(6030), 1, sym_float, - STATE(6337), 1, + STATE(5962), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, + STATE(6129), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [329668] = 9, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, + [336328] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(6139), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6055), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [336356] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, - sym_integer, - ACTIONS(5956), 1, - sym_float, - STATE(6135), 1, - sym_test, + STATE(6140), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, - sym_dotted_name, - sym_paren_expression, + STATE(6055), 6, sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, sym_string, - [329700] = 8, - ACTIONS(5932), 1, + [336384] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5940), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(760), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(6050), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336416] = 10, + ACTIONS(4694), 1, + sym__newline, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, + anon_sym_or, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6052), 1, anon_sym_if, + ACTIONS(6054), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2357), 3, - sym__newline, + [336450] = 9, + ACTIONS(5880), 1, anon_sym_as, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, + anon_sym_and, + ACTIONS(5890), 1, + anon_sym_or, + ACTIONS(5892), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(760), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(6056), 2, anon_sym_COMMA, - [329730] = 9, + anon_sym_RPAREN, + STATE(4100), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336482] = 9, ACTIONS(21), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6026), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_integer, - ACTIONS(5956), 1, + ACTIONS(6030), 1, sym_float, - STATE(6336), 1, + STATE(6449), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, + STATE(6129), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [329762] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [329794] = 5, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, + [336514] = 4, + ACTIONS(5882), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 7, - sym__newline, + ACTIONS(2402), 8, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [329818] = 5, - ACTIONS(5936), 1, anon_sym_PLUS, - ACTIONS(5940), 1, + [336536] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, + ACTIONS(5720), 1, + anon_sym_and, + ACTIONS(5722), 1, + anon_sym_or, + ACTIONS(5724), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 7, - sym__newline, + ACTIONS(736), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_QMARK_DOT, + ACTIONS(1961), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336568] = 10, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, + ACTIONS(6036), 1, anon_sym_or, - [329842] = 4, - ACTIONS(5804), 1, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6058), 1, anon_sym_if, + ACTIONS(6060), 1, + anon_sym_COMMA, + ACTIONS(6062), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 8, + ACTIONS(43), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [329864] = 4, - ACTIONS(5804), 1, - anon_sym_if, + STATE(3944), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336602] = 7, + ACTIONS(480), 1, + sym_string_start, + ACTIONS(6012), 1, + sym_identifier, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(5996), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2459), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [329886] = 9, + STATE(6055), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [336630] = 9, ACTIONS(21), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6026), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_integer, - ACTIONS(5956), 1, + ACTIONS(6030), 1, sym_float, - STATE(6301), 1, + STATE(5971), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, + STATE(6129), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [329918] = 9, + [336662] = 9, ACTIONS(21), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(5950), 1, + ACTIONS(6024), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(6026), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(6028), 1, sym_integer, - ACTIONS(5956), 1, + ACTIONS(6030), 1, sym_float, - STATE(6329), 1, + STATE(6453), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(6184), 4, + STATE(6129), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [329950] = 10, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [336694] = 8, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5974), 1, - anon_sym_if, - ACTIONS(5976), 1, - anon_sym_COMMA, - ACTIONS(5978), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [329984] = 4, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2463), 8, - anon_sym_DOT, + ACTIONS(2057), 3, anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [330006] = 4, - ACTIONS(5940), 1, + [336724] = 5, + ACTIONS(5882), 1, anon_sym_if, + ACTIONS(5892), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2439), 8, - sym__newline, + ACTIONS(2244), 7, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - [330028] = 9, - ACTIONS(576), 1, + [336748] = 7, + ACTIONS(480), 1, sym_string_start, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, + ACTIONS(6012), 1, sym_identifier, - ACTIONS(5982), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, anon_sym_LBRACE, - ACTIONS(5984), 1, - sym_integer, - ACTIONS(5986), 1, - sym_float, - STATE(5676), 1, - sym_test, + STATE(6002), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5644), 4, - sym_dotted_name, - sym_paren_expression, + STATE(6055), 6, sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, sym_string, - [330060] = 6, - ACTIONS(4680), 1, - anon_sym_not, - ACTIONS(4696), 1, - anon_sym_is, - STATE(4149), 1, - aux_sym_comparison_operator_repeat1, + [336776] = 9, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6064), 1, + anon_sym_if, + ACTIONS(6066), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4672), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [330085] = 9, - ACTIONS(5642), 1, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336807] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5988), 1, + ACTIONS(6068), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330116] = 9, - ACTIONS(5642), 1, + [336838] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5990), 1, - anon_sym_RBRACE, + ACTIONS(6070), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330147] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [336869] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5992), 1, + ACTIONS(6064), 1, + anon_sym_if, + ACTIONS(6072), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330178] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [336900] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5994), 1, - anon_sym_RBRACK, + ACTIONS(6074), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330209] = 6, - ACTIONS(4536), 1, - anon_sym_not, - ACTIONS(4554), 1, - anon_sym_is, - STATE(4695), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4552), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4530), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [330234] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [336931] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5996), 1, + ACTIONS(6064), 1, + anon_sym_if, + ACTIONS(6076), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330265] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [336962] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5998), 1, - anon_sym_RPAREN, + ACTIONS(6078), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330296] = 9, - ACTIONS(5642), 1, + [336993] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6000), 1, - anon_sym_RBRACE, + ACTIONS(6080), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330327] = 6, - ACTIONS(6002), 1, + [337024] = 6, + ACTIONS(6082), 1, anon_sym_not, - ACTIONS(6004), 1, + ACTIONS(6084), 1, anon_sym_is, - STATE(2354), 1, + STATE(3278), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 2, + ACTIONS(2887), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3491), 5, + ACTIONS(2891), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [330352] = 6, - ACTIONS(6006), 1, + [337049] = 6, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(6008), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(3278), 1, + STATE(4794), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 2, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3552), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [330377] = 9, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6012), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [330408] = 9, - ACTIONS(5802), 1, + [337074] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6014), 1, - anon_sym_RPAREN, + ACTIONS(6086), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330439] = 9, - ACTIONS(5674), 1, - anon_sym_if, - ACTIONS(5760), 1, + [337105] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5762), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5860), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5946), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6016), 1, - anon_sym_then, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6090), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330470] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [337136] = 9, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5848), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5924), 1, + anon_sym_as, + ACTIONS(5942), 1, anon_sym_PLUS, - ACTIONS(6018), 1, - anon_sym_RPAREN, + ACTIONS(6092), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330501] = 9, - ACTIONS(5926), 1, + [337167] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5932), 1, - anon_sym_and, - ACTIONS(5934), 1, - anon_sym_or, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5978), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [330532] = 9, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6020), 1, - anon_sym_RBRACE, + ACTIONS(6094), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330563] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [337198] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - anon_sym_RPAREN, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6096), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330594] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [337229] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6024), 1, - anon_sym_RBRACK, + ACTIONS(6098), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330625] = 6, - ACTIONS(6002), 1, + [337260] = 6, + ACTIONS(6100), 1, anon_sym_not, - ACTIONS(6004), 1, + ACTIONS(6102), 1, anon_sym_is, - STATE(3264), 1, + STATE(3310), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 2, + ACTIONS(3582), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3491), 5, + ACTIONS(3586), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [330650] = 9, - ACTIONS(5658), 1, + [337285] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6028), 1, - anon_sym_RBRACE, + ACTIONS(6104), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330681] = 9, - ACTIONS(5658), 1, + [337316] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6030), 1, - anon_sym_RBRACE, + ACTIONS(6106), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330712] = 6, - ACTIONS(4724), 1, - anon_sym_not, - ACTIONS(4740), 1, - anon_sym_is, - STATE(4703), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4738), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4716), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [330737] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [337347] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, + ACTIONS(6108), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330768] = 6, - ACTIONS(6034), 1, + [337378] = 6, + ACTIONS(4589), 1, anon_sym_not, - ACTIONS(6036), 1, + ACTIONS(4593), 1, anon_sym_is, - STATE(3390), 1, + STATE(3918), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3893), 2, + ACTIONS(4591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 5, + ACTIONS(4587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [330793] = 9, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6038), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [330824] = 9, - ACTIONS(5642), 1, + [337403] = 9, + ACTIONS(5726), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5846), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5848), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5924), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5942), 1, anon_sym_PLUS, - ACTIONS(6040), 1, - anon_sym_RBRACE, + ACTIONS(6110), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330855] = 9, - ACTIONS(5642), 1, + [337434] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6042), 1, - anon_sym_RBRACE, + ACTIONS(6112), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [330886] = 6, - ACTIONS(4303), 1, + [337465] = 6, + ACTIONS(4973), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(4989), 1, anon_sym_is, - STATE(4681), 1, + STATE(4286), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(4965), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [330911] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6044), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [330942] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, + [337490] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6046), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [330973] = 9, - ACTIONS(5674), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5760), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5762), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5860), 1, - anon_sym_as, - ACTIONS(5946), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6048), 1, - anon_sym_COLON, + ACTIONS(6114), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331004] = 9, - ACTIONS(5642), 1, + [337521] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6050), 1, + ACTIONS(6116), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331035] = 9, - ACTIONS(5642), 1, + [337552] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6052), 1, + ACTIONS(6118), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331066] = 9, - ACTIONS(5642), 1, + [337583] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6054), 1, + ACTIONS(6120), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331097] = 9, - ACTIONS(5658), 1, + [337614] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6056), 1, + ACTIONS(6122), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331128] = 6, - ACTIONS(4724), 1, - anon_sym_not, - ACTIONS(4740), 1, - anon_sym_is, - STATE(4173), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4738), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4716), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [331153] = 9, - ACTIONS(5802), 1, + [337645] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(6058), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [331184] = 9, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6060), 1, - anon_sym_RBRACE, + ACTIONS(6124), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331215] = 9, - ACTIONS(5658), 1, + [337676] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6062), 1, + ACTIONS(6126), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331246] = 9, - ACTIONS(5658), 1, + [337707] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6064), 1, + ACTIONS(6128), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331277] = 9, - ACTIONS(5642), 1, + [337738] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6066), 1, + ACTIONS(6130), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [331308] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, - anon_sym_and, - ACTIONS(5638), 1, - anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(6068), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331339] = 9, - ACTIONS(5658), 1, + [337769] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6070), 1, + ACTIONS(6132), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331370] = 9, - ACTIONS(5626), 1, + [337800] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6072), 1, - anon_sym_RBRACK, + ACTIONS(6134), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331401] = 6, - ACTIONS(6074), 1, + [337831] = 6, + ACTIONS(6100), 1, anon_sym_not, - ACTIONS(6076), 1, + ACTIONS(6102), 1, anon_sym_is, - STATE(3234), 1, + STATE(2449), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2765), 2, + ACTIONS(3582), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2769), 5, + ACTIONS(3586), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [331426] = 9, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [337856] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5940), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6078), 1, - sym__newline, + ACTIONS(6136), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331457] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [337887] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6080), 1, - anon_sym_RPAREN, + ACTIONS(6138), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331488] = 4, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [337918] = 6, + ACTIONS(6140), 1, + anon_sym_not, + ACTIONS(6142), 1, + anon_sym_is, + STATE(3438), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5080), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2477), 7, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [331509] = 9, - ACTIONS(5658), 1, + ACTIONS(4129), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4133), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [337943] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6082), 1, + ACTIONS(6144), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331540] = 6, - ACTIONS(6006), 1, - anon_sym_not, - ACTIONS(6008), 1, - anon_sym_is, - STATE(2533), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3532), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3552), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [331565] = 6, - ACTIONS(4325), 1, + [337974] = 6, + ACTIONS(6146), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(6148), 1, anon_sym_is, - STATE(4407), 1, + STATE(3437), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(3961), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 5, + ACTIONS(3971), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [331590] = 9, - ACTIONS(5658), 1, + [337999] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6084), 1, + ACTIONS(6150), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331621] = 9, - ACTIONS(5642), 1, + [338030] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6086), 1, - anon_sym_RBRACE, + ACTIONS(6152), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331652] = 6, - ACTIONS(6088), 1, - anon_sym_not, - ACTIONS(6090), 1, - anon_sym_is, - STATE(1478), 1, - aux_sym_comparison_operator_repeat1, + [338061] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6154), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2395), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [331677] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [338092] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6092), 1, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6156), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331708] = 9, - ACTIONS(5642), 1, + [338123] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6094), 1, + ACTIONS(6158), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331739] = 6, - ACTIONS(6096), 1, + [338154] = 6, + ACTIONS(6162), 1, anon_sym_not, - ACTIONS(6098), 1, + ACTIONS(6164), 1, anon_sym_is, - STATE(2101), 1, + STATE(4788), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3099), 2, + ACTIONS(4722), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3105), 5, + ACTIONS(6160), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [331764] = 9, - ACTIONS(5642), 1, + [338179] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(6044), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6100), 1, - anon_sym_RBRACE, + ACTIONS(6166), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331795] = 9, - ACTIONS(5658), 1, + [338210] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6102), 1, - anon_sym_RBRACE, + ACTIONS(6168), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331826] = 9, - ACTIONS(5658), 1, + [338241] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6104), 1, + ACTIONS(6170), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331857] = 6, - ACTIONS(6108), 1, - anon_sym_not, - ACTIONS(6110), 1, - anon_sym_is, - STATE(2763), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3726), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6106), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [331882] = 9, - ACTIONS(5926), 1, + [338272] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5932), 1, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_if, - ACTIONS(6112), 1, - sym__newline, + ACTIONS(6172), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331913] = 6, - ACTIONS(6114), 1, - anon_sym_not, - ACTIONS(6116), 1, - anon_sym_is, - STATE(3237), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2783), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [331938] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [338303] = 9, + ACTIONS(4694), 1, + sym__newline, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(6118), 1, - anon_sym_RBRACK, + ACTIONS(6044), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [331969] = 9, - ACTIONS(5626), 1, + [338334] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6120), 1, + ACTIONS(6174), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332000] = 6, - ACTIONS(6122), 1, - anon_sym_not, - ACTIONS(6124), 1, - anon_sym_is, - STATE(2700), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3707), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332025] = 9, - ACTIONS(5926), 1, + [338365] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5932), 1, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_if, - ACTIONS(6126), 1, - sym__newline, + ACTIONS(6176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332056] = 6, - ACTIONS(6128), 1, - anon_sym_not, - ACTIONS(6130), 1, - anon_sym_is, - STATE(3420), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4052), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332081] = 6, - ACTIONS(6132), 1, - anon_sym_not, - ACTIONS(6134), 1, - anon_sym_is, - STATE(3031), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3830), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3852), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332106] = 9, - ACTIONS(5658), 1, + [338396] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6136), 1, - anon_sym_RBRACE, + ACTIONS(6178), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332137] = 9, - ACTIONS(5658), 1, + [338427] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6138), 1, + ACTIONS(6180), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332168] = 9, - ACTIONS(5642), 1, + [338458] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(6044), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6140), 1, - anon_sym_RBRACE, + ACTIONS(6182), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332199] = 6, - ACTIONS(6142), 1, - anon_sym_not, - ACTIONS(6144), 1, - anon_sym_is, - STATE(2323), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3409), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3417), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332224] = 9, - ACTIONS(5642), 1, + [338489] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6146), 1, - anon_sym_RBRACE, + ACTIONS(6184), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332255] = 6, - ACTIONS(6074), 1, + [338520] = 6, + ACTIONS(6186), 1, anon_sym_not, - ACTIONS(6076), 1, + ACTIONS(6188), 1, anon_sym_is, - STATE(2013), 1, + STATE(2227), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2765), 2, + ACTIONS(3277), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2769), 5, + ACTIONS(3281), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [332280] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [338545] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6148), 1, - anon_sym_RPAREN, + ACTIONS(6190), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332311] = 6, - ACTIONS(6132), 1, - anon_sym_not, - ACTIONS(6134), 1, - anon_sym_is, - STATE(3378), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3830), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3852), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332336] = 6, - ACTIONS(6150), 1, + [338576] = 6, + ACTIONS(4757), 1, anon_sym_not, - ACTIONS(6152), 1, + ACTIONS(4761), 1, anon_sym_is, - STATE(3317), 1, + STATE(4203), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 2, + ACTIONS(4759), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3649), 5, + ACTIONS(4755), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [332361] = 6, - ACTIONS(4536), 1, + [338601] = 6, + ACTIONS(6194), 1, anon_sym_not, - ACTIONS(4554), 1, + ACTIONS(6196), 1, anon_sym_is, - STATE(3967), 1, + STATE(2913), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, + ACTIONS(3865), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4530), 5, + ACTIONS(6192), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [332386] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [338626] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6154), 1, - anon_sym_RPAREN, + ACTIONS(6198), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332417] = 6, - ACTIONS(6114), 1, - anon_sym_not, - ACTIONS(6116), 1, - anon_sym_is, - STATE(2030), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2783), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2787), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332442] = 6, - ACTIONS(6150), 1, - anon_sym_not, - ACTIONS(6152), 1, - anon_sym_is, - STATE(2704), 1, - aux_sym_comparison_operator_repeat1, + [338657] = 9, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6200), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3649), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332467] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [338688] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(6156), 1, - anon_sym_RBRACK, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6202), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332498] = 9, - ACTIONS(5626), 1, + [338719] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6158), 1, + ACTIONS(6204), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332529] = 6, - ACTIONS(4512), 1, + [338750] = 6, + ACTIONS(6206), 1, anon_sym_not, - ACTIONS(4516), 1, + ACTIONS(6208), 1, anon_sym_is, - STATE(4689), 1, + STATE(3308), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(3476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 5, + ACTIONS(3480), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [332554] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, + [338775] = 6, + ACTIONS(6210), 1, + anon_sym_not, + ACTIONS(6212), 1, + anon_sym_is, + STATE(1520), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2905), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [338800] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6160), 1, - anon_sym_RPAREN, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6214), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332585] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [338831] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6162), 1, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6216), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332616] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [338862] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6164), 1, + ACTIONS(6064), 1, + anon_sym_if, + ACTIONS(6218), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332647] = 6, - ACTIONS(6034), 1, - anon_sym_not, - ACTIONS(6036), 1, - anon_sym_is, - STATE(3046), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3893), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3897), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332672] = 9, - ACTIONS(5658), 1, + [338893] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6166), 1, + ACTIONS(6220), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332703] = 9, - ACTIONS(5658), 1, + [338924] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6168), 1, + ACTIONS(6222), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332734] = 6, - ACTIONS(6088), 1, - anon_sym_not, - ACTIONS(6090), 1, - anon_sym_is, - STATE(3162), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2373), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2395), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332759] = 6, - ACTIONS(6170), 1, + [338955] = 6, + ACTIONS(6224), 1, anon_sym_not, - ACTIONS(6172), 1, + ACTIONS(6226), 1, anon_sym_is, - STATE(3240), 1, + STATE(2604), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 2, + ACTIONS(3622), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2803), 5, + ACTIONS(3646), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [332784] = 9, - ACTIONS(5674), 1, + [338980] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5760), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5762), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5860), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5946), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6174), 1, - anon_sym_COLON, + ACTIONS(6228), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332815] = 9, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [339011] = 9, + ACTIONS(6018), 1, + anon_sym_if, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5938), 1, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6230), 1, sym__newline, - ACTIONS(5940), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332846] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [339042] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6176), 1, - anon_sym_RBRACK, + ACTIONS(6232), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332877] = 6, - ACTIONS(6178), 1, - anon_sym_not, - ACTIONS(6180), 1, - anon_sym_is, - STATE(2979), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3926), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3946), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332902] = 6, - ACTIONS(6178), 1, - anon_sym_not, - ACTIONS(6180), 1, - anon_sym_is, - STATE(3394), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3926), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3946), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332927] = 6, - ACTIONS(6182), 1, - anon_sym_not, - ACTIONS(6184), 1, - anon_sym_is, - STATE(3245), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [332952] = 9, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [339073] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_if, - ACTIONS(6186), 1, - sym__newline, + ACTIONS(6234), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [332983] = 9, - ACTIONS(5626), 1, + [339104] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6188), 1, - anon_sym_RBRACK, + ACTIONS(6236), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333014] = 6, - ACTIONS(6096), 1, + [339135] = 6, + ACTIONS(6238), 1, anon_sym_not, - ACTIONS(6098), 1, + ACTIONS(6240), 1, anon_sym_is, - STATE(3253), 1, + STATE(2460), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3099), 2, + ACTIONS(3590), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3105), 5, + ACTIONS(3594), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333039] = 9, - ACTIONS(5802), 1, + [339160] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6242), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [339191] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6190), 1, - anon_sym_RPAREN, + ACTIONS(6244), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333070] = 9, - ACTIONS(5626), 1, + [339222] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6192), 1, - anon_sym_RBRACK, + ACTIONS(6246), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333101] = 6, - ACTIONS(6128), 1, + [339253] = 6, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(6130), 1, + ACTIONS(4441), 1, anon_sym_is, - STATE(3193), 1, + STATE(4777), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4052), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333126] = 6, - ACTIONS(6170), 1, + [339278] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6248), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [339309] = 6, + ACTIONS(4619), 1, anon_sym_not, - ACTIONS(6172), 1, + ACTIONS(4637), 1, anon_sym_is, - STATE(1968), 1, + STATE(4247), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2799), 2, + ACTIONS(4635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2803), 5, + ACTIONS(4615), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333151] = 9, - ACTIONS(5658), 1, + [339334] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6194), 1, + ACTIONS(6250), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333182] = 9, - ACTIONS(5658), 1, + [339365] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6196), 1, - anon_sym_RBRACE, + ACTIONS(6252), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333213] = 6, - ACTIONS(6198), 1, - anon_sym_not, - ACTIONS(6200), 1, - anon_sym_is, - STATE(1483), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2411), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2433), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [333238] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [339396] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6202), 1, + ACTIONS(6064), 1, + anon_sym_if, + ACTIONS(6254), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333269] = 9, - ACTIONS(5658), 1, + [339427] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6204), 1, + ACTIONS(6256), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333300] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [339458] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6206), 1, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6258), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333331] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [339489] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6208), 1, + ACTIONS(6064), 1, + anon_sym_if, + ACTIONS(6260), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333362] = 6, - ACTIONS(6210), 1, + [339520] = 6, + ACTIONS(6262), 1, anon_sym_not, - ACTIONS(6212), 1, + ACTIONS(6264), 1, anon_sym_is, - STATE(2174), 1, + STATE(2740), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3033), 2, + ACTIONS(3762), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3037), 5, + ACTIONS(3766), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333387] = 9, - ACTIONS(5658), 1, + [339545] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6214), 1, + ACTIONS(6266), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333418] = 9, - ACTIONS(5658), 1, + [339576] = 9, + ACTIONS(6018), 1, + anon_sym_if, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(6040), 1, + sym__newline, + ACTIONS(6044), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6216), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333449] = 6, - ACTIONS(6182), 1, - anon_sym_not, - ACTIONS(6184), 1, - anon_sym_is, - STATE(1935), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2811), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [333474] = 6, - ACTIONS(6220), 1, + [339607] = 6, + ACTIONS(6146), 1, anon_sym_not, - ACTIONS(6222), 1, + ACTIONS(6148), 1, anon_sym_is, - STATE(3930), 1, + STATE(3069), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 2, + ACTIONS(3961), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6218), 5, + ACTIONS(3971), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333499] = 9, - ACTIONS(5658), 1, + [339632] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6224), 1, + ACTIONS(6268), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333530] = 9, - ACTIONS(5626), 1, + [339663] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6226), 1, - anon_sym_RBRACK, + ACTIONS(6270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333561] = 9, - ACTIONS(5658), 1, + [339694] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6228), 1, + ACTIONS(6272), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333592] = 9, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [339725] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5936), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_if, - ACTIONS(6230), 1, - sym__newline, + ACTIONS(6274), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333623] = 6, - ACTIONS(4325), 1, + [339756] = 6, + ACTIONS(6276), 1, anon_sym_not, - ACTIONS(4327), 1, + ACTIONS(6278), 1, anon_sym_is, - STATE(4732), 1, + STATE(3219), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, + ACTIONS(2358), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 5, + ACTIONS(2362), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333648] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, + [339781] = 6, + ACTIONS(4619), 1, + anon_sym_not, + ACTIONS(4637), 1, + anon_sym_is, + STATE(4791), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4635), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4615), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [339806] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6232), 1, - anon_sym_RPAREN, + ACTIONS(6280), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333679] = 6, - ACTIONS(6108), 1, + [339837] = 6, + ACTIONS(4356), 1, anon_sym_not, - ACTIONS(6110), 1, + ACTIONS(4364), 1, anon_sym_is, - STATE(3349), 1, + STATE(4831), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 2, + ACTIONS(2312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6106), 5, + ACTIONS(2330), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333704] = 6, - ACTIONS(4680), 1, + [339862] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6282), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [339893] = 9, + ACTIONS(5754), 1, + anon_sym_and, + ACTIONS(5756), 1, + anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6284), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(570), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [339924] = 6, + ACTIONS(6186), 1, anon_sym_not, - ACTIONS(4696), 1, + ACTIONS(6188), 1, anon_sym_is, - STATE(4704), 1, + STATE(3294), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, + ACTIONS(3277), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4672), 5, + ACTIONS(3281), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333729] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, + [339949] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6234), 1, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6286), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333760] = 9, - ACTIONS(5642), 1, + [339980] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6236), 1, + ACTIONS(6288), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333791] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, - anon_sym_if, - ACTIONS(5636), 1, + [340011] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6238), 1, - anon_sym_RBRACK, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6290), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333822] = 9, - ACTIONS(5626), 1, - anon_sym_as, - ACTIONS(5628), 1, + [340042] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5640), 1, - anon_sym_PLUS, - ACTIONS(6240), 1, - anon_sym_RBRACK, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6292), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333853] = 6, - ACTIONS(4512), 1, + [340073] = 6, + ACTIONS(6294), 1, anon_sym_not, - ACTIONS(4516), 1, + ACTIONS(6296), 1, anon_sym_is, - STATE(3812), 1, + STATE(3297), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(3335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4510), 5, + ACTIONS(3339), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333878] = 6, - ACTIONS(4421), 1, + [340098] = 6, + ACTIONS(6298), 1, anon_sym_not, - ACTIONS(4439), 1, + ACTIONS(6300), 1, anon_sym_is, - STATE(3785), 1, + STATE(3004), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4437), 2, + ACTIONS(3931), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4417), 5, + ACTIONS(3935), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333903] = 6, - ACTIONS(4421), 1, + [340123] = 6, + ACTIONS(4386), 1, anon_sym_not, - ACTIONS(4439), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(4684), 1, + STATE(4780), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4437), 2, + ACTIONS(4388), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4417), 5, + ACTIONS(4384), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [333928] = 9, - ACTIONS(5802), 1, + [340148] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6242), 1, + ACTIONS(6302), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333959] = 9, - ACTIONS(5802), 1, + [340179] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6244), 1, - anon_sym_RPAREN, + ACTIONS(6304), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [333990] = 9, - ACTIONS(5658), 1, + [340210] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, + anon_sym_if, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6246), 1, - anon_sym_RBRACE, + ACTIONS(6306), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334021] = 6, - ACTIONS(6122), 1, + [340241] = 6, + ACTIONS(6294), 1, anon_sym_not, - ACTIONS(6124), 1, + ACTIONS(6296), 1, anon_sym_is, - STATE(3323), 1, + STATE(2142), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3707), 5, + ACTIONS(3339), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [334046] = 9, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6248), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334077] = 9, - ACTIONS(5802), 1, + [340266] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(5804), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6250), 1, + ACTIONS(6308), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334108] = 6, - ACTIONS(6198), 1, - anon_sym_not, - ACTIONS(6200), 1, - anon_sym_is, - STATE(3113), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2411), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2433), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [334133] = 9, - ACTIONS(5642), 1, + [340297] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(6044), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6252), 1, - anon_sym_RBRACE, + ACTIONS(6310), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334164] = 9, - ACTIONS(5626), 1, + [340328] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6254), 1, + ACTIONS(6312), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334195] = 9, - ACTIONS(5658), 1, + [340359] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6256), 1, + ACTIONS(6314), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334226] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6258), 1, - anon_sym_RBRACE, + [340390] = 6, + ACTIONS(6316), 1, + anon_sym_not, + ACTIONS(6318), 1, + anon_sym_is, + STATE(3418), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334257] = 9, - ACTIONS(5642), 1, + ACTIONS(4043), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4047), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340415] = 9, + ACTIONS(5880), 1, + anon_sym_as, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5890), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5892), 1, anon_sym_PLUS, - ACTIONS(6260), 1, - anon_sym_RBRACE, + ACTIONS(6320), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334288] = 6, - ACTIONS(4303), 1, + [340446] = 6, + ACTIONS(6162), 1, anon_sym_not, - ACTIONS(4321), 1, + ACTIONS(6164), 1, anon_sym_is, - STATE(3537), 1, + STATE(4220), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4319), 2, + ACTIONS(4722), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4295), 5, + ACTIONS(6160), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [334313] = 9, - ACTIONS(5642), 1, - anon_sym_if, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6262), 1, - anon_sym_RBRACE, + [340471] = 6, + ACTIONS(6082), 1, + anon_sym_not, + ACTIONS(6084), 1, + anon_sym_is, + STATE(1592), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334344] = 9, - ACTIONS(5658), 1, + ACTIONS(2887), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2891), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340496] = 6, + ACTIONS(4973), 1, + anon_sym_not, + ACTIONS(4989), 1, + anon_sym_is, + STATE(4801), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4965), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340521] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6264), 1, + ACTIONS(6322), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334375] = 9, - ACTIONS(5658), 1, + [340552] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6266), 1, + ACTIONS(6324), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334406] = 9, - ACTIONS(5658), 1, + [340583] = 6, + ACTIONS(6194), 1, + anon_sym_not, + ACTIONS(6196), 1, + anon_sym_is, + STATE(3407), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3865), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6192), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340608] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_if, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6268), 1, - anon_sym_RBRACE, + ACTIONS(6326), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334437] = 9, - ACTIONS(5658), 1, + [340639] = 6, + ACTIONS(6262), 1, + anon_sym_not, + ACTIONS(6264), 1, + anon_sym_is, + STATE(3352), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3762), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3766), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340664] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6010), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6270), 1, + ACTIONS(6328), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334468] = 9, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, + [340695] = 9, + ACTIONS(6018), 1, + anon_sym_if, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5934), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_if, - ACTIONS(6272), 1, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6330), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -333465,1989 +340925,2324 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334499] = 9, - ACTIONS(5642), 1, + [340726] = 9, + ACTIONS(4788), 1, + sym__newline, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(6020), 1, + anon_sym_PLUS, + ACTIONS(6034), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(6036), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(6044), 1, anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6274), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334530] = 6, - ACTIONS(6210), 1, + [340757] = 6, + ACTIONS(4423), 1, anon_sym_not, - ACTIONS(6212), 1, + ACTIONS(4441), 1, anon_sym_is, - STATE(3251), 1, + STATE(3661), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3033), 2, + ACTIONS(4439), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3037), 5, + ACTIONS(4415), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [334555] = 6, - ACTIONS(6142), 1, + [340782] = 6, + ACTIONS(6238), 1, anon_sym_not, - ACTIONS(6144), 1, + ACTIONS(6240), 1, anon_sym_is, - STATE(3260), 1, + STATE(3302), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 2, + ACTIONS(3590), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3417), 5, + ACTIONS(3594), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [334580] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, - anon_sym_and, - ACTIONS(5812), 1, - anon_sym_or, - ACTIONS(5814), 1, - anon_sym_PLUS, - ACTIONS(6276), 1, - anon_sym_RPAREN, + [340807] = 6, + ACTIONS(6298), 1, + anon_sym_not, + ACTIONS(6300), 1, + anon_sym_is, + STATE(3439), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334611] = 9, - ACTIONS(5642), 1, + ACTIONS(3931), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3935), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340832] = 6, + ACTIONS(6332), 1, + anon_sym_not, + ACTIONS(6334), 1, + anon_sym_is, + STATE(3205), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2366), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340857] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6278), 1, + ACTIONS(6336), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334642] = 9, - ACTIONS(5642), 1, + [340888] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6280), 1, + ACTIONS(6338), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334673] = 9, - ACTIONS(5926), 1, - anon_sym_as, - ACTIONS(5932), 1, - anon_sym_and, - ACTIONS(5934), 1, - anon_sym_or, - ACTIONS(5936), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_if, - ACTIONS(5968), 1, - sym__newline, + [340919] = 6, + ACTIONS(4589), 1, + anon_sym_not, + ACTIONS(4593), 1, + anon_sym_is, + STATE(4783), 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(3889), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334704] = 6, - ACTIONS(6220), 1, + ACTIONS(4591), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [340944] = 6, + ACTIONS(6340), 1, anon_sym_not, - ACTIONS(6222), 1, + ACTIONS(6342), 1, anon_sym_is, - STATE(4698), 1, + STATE(3277), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4640), 2, + ACTIONS(2748), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6218), 5, + ACTIONS(2752), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [334729] = 9, - ACTIONS(5642), 1, + [340969] = 9, + ACTIONS(5710), 1, + anon_sym_as, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6282), 1, - anon_sym_RBRACE, + ACTIONS(6344), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334760] = 9, - ACTIONS(5658), 1, - anon_sym_and, - ACTIONS(5660), 1, - anon_sym_or, - ACTIONS(5682), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_PLUS, - ACTIONS(6010), 1, - anon_sym_if, - ACTIONS(6284), 1, - anon_sym_RBRACE, + [341000] = 6, + ACTIONS(6340), 1, + anon_sym_not, + ACTIONS(6342), 1, + anon_sym_is, + STATE(1358), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3454), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334791] = 9, - ACTIONS(5802), 1, - anon_sym_as, - ACTIONS(5804), 1, - anon_sym_if, - ACTIONS(5810), 1, + ACTIONS(2748), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2752), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341025] = 6, + ACTIONS(6346), 1, + anon_sym_not, + ACTIONS(6348), 1, + anon_sym_is, + STATE(1405), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2895), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341050] = 9, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5814), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6286), 1, - anon_sym_RPAREN, + ACTIONS(6088), 1, + anon_sym_if, + ACTIONS(6350), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334822] = 9, - ACTIONS(5626), 1, + [341081] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6288), 1, + ACTIONS(6352), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334853] = 9, - ACTIONS(5626), 1, + [341112] = 9, + ACTIONS(5710), 1, anon_sym_as, - ACTIONS(5628), 1, + ACTIONS(5712), 1, anon_sym_if, - ACTIONS(5636), 1, + ACTIONS(5720), 1, anon_sym_and, - ACTIONS(5638), 1, + ACTIONS(5722), 1, anon_sym_or, - ACTIONS(5640), 1, + ACTIONS(5724), 1, anon_sym_PLUS, - ACTIONS(6290), 1, + ACTIONS(6354), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(3765), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334884] = 9, - ACTIONS(5658), 1, + [341143] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(5660), 1, + ACTIONS(5756), 1, anon_sym_or, - ACTIONS(5682), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(5846), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_if, - ACTIONS(6292), 1, + ACTIONS(6356), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [334915] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6300), 1, - anon_sym_or, - ACTIONS(6302), 1, - anon_sym_PLUS, + [341174] = 6, + ACTIONS(6316), 1, + anon_sym_not, + ACTIONS(6318), 1, + anon_sym_is, + STATE(3073), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(199), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334943] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6304), 1, - anon_sym_or, + ACTIONS(4043), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4047), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341199] = 6, + ACTIONS(6276), 1, + anon_sym_not, + ACTIONS(6278), 1, + anon_sym_is, + STATE(998), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2607), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [334971] = 7, - ACTIONS(3760), 1, - anon_sym_LBRACE, - ACTIONS(6306), 1, - anon_sym_LPAREN, - STATE(4379), 1, - sym_dict_expr, - STATE(4740), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2358), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2362), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341224] = 6, + ACTIONS(6224), 1, + anon_sym_not, + ACTIONS(6226), 1, + anon_sym_is, + STATE(3333), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2477), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [334997] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, + ACTIONS(3622), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3646), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341249] = 6, + ACTIONS(6210), 1, + anon_sym_not, + ACTIONS(6212), 1, + anon_sym_is, + STATE(3292), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(777), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [335019] = 8, - ACTIONS(6294), 1, + ACTIONS(2905), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2909), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341274] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6308), 1, + ACTIONS(5890), 1, anon_sym_or, + ACTIONS(5892), 1, + anon_sym_PLUS, + ACTIONS(6358), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(211), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1648), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335047] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, + [341305] = 6, + ACTIONS(4356), 1, + anon_sym_not, + ACTIONS(4364), 1, + anon_sym_is, + STATE(4507), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3808), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(2312), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2330), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341330] = 9, + ACTIONS(5754), 1, anon_sym_and, + ACTIONS(5756), 1, anon_sym_or, - [335069] = 8, - ACTIONS(6294), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6310), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [335097] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6064), 1, anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6312), 1, - anon_sym_or, + ACTIONS(6360), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(199), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(777), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335125] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, + [341361] = 6, + ACTIONS(6332), 1, + anon_sym_not, + ACTIONS(6334), 1, + anon_sym_is, + STATE(885), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(2366), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341386] = 9, + ACTIONS(5754), 1, anon_sym_and, + ACTIONS(5756), 1, anon_sym_or, - [335147] = 4, - ACTIONS(6296), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6064), 1, anon_sym_if, + ACTIONS(6362), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2439), 6, + ACTIONS(570), 2, anon_sym_DOT, - anon_sym_as, anon_sym_QMARK_DOT, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [341417] = 9, + ACTIONS(5726), 1, + anon_sym_if, + ACTIONS(5846), 1, anon_sym_and, + ACTIONS(5848), 1, anon_sym_or, - anon_sym_PLUS, - [335167] = 8, - ACTIONS(6294), 1, + ACTIONS(5924), 1, anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(5942), 1, anon_sym_PLUS, - ACTIONS(6314), 1, - anon_sym_or, + ACTIONS(6364), 1, + anon_sym_then, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(602), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2293), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335195] = 8, - ACTIONS(6294), 1, + [341448] = 6, + ACTIONS(4386), 1, + anon_sym_not, + ACTIONS(4390), 1, + anon_sym_is, + STATE(3644), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4388), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341473] = 9, + ACTIONS(5880), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(5882), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(5888), 1, anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6316), 1, + ACTIONS(5890), 1, anon_sym_or, + ACTIONS(5892), 1, + anon_sym_PLUS, + ACTIONS(6366), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335223] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [341504] = 6, + ACTIONS(6346), 1, + anon_sym_not, + ACTIONS(6348), 1, + anon_sym_is, + STATE(3286), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2895), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2899), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341529] = 9, + ACTIONS(5706), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(5754), 1, anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6318), 1, + ACTIONS(5756), 1, anon_sym_or, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, + anon_sym_PLUS, + ACTIONS(6368), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(440), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2288), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335251] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [341560] = 9, + ACTIONS(6018), 1, anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6020), 1, anon_sym_PLUS, - ACTIONS(6320), 1, + ACTIONS(6034), 1, + anon_sym_and, + ACTIONS(6036), 1, anon_sym_or, + ACTIONS(6044), 1, + anon_sym_as, + ACTIONS(6370), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(476), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3454), 2, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335279] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, + [341591] = 6, + ACTIONS(6140), 1, + anon_sym_not, + ACTIONS(6142), 1, + anon_sym_is, + STATE(3225), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2754), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(4129), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4133), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341616] = 9, + ACTIONS(5706), 1, + anon_sym_if, + ACTIONS(5754), 1, anon_sym_and, + ACTIONS(5756), 1, anon_sym_or, - [335301] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(5758), 1, + anon_sym_as, + ACTIONS(5970), 1, anon_sym_PLUS, + ACTIONS(6372), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4121), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(570), 2, anon_sym_DOT, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [335323] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, + STATE(3510), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [341647] = 6, + ACTIONS(6206), 1, + anon_sym_not, + ACTIONS(6208), 1, + anon_sym_is, + STATE(2415), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(782), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(3476), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3480), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [341672] = 9, + ACTIONS(5754), 1, anon_sym_and, + ACTIONS(5756), 1, anon_sym_or, - [335345] = 8, - ACTIONS(6294), 1, + ACTIONS(5758), 1, anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(5970), 1, anon_sym_PLUS, - ACTIONS(6322), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(215), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1539), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [335373] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6088), 1, anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6324), 1, - anon_sym_or, + ACTIONS(6374), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(440), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2288), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335401] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6326), 1, - anon_sym_or, + [341703] = 4, + ACTIONS(6376), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(602), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2293), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335429] = 8, - ACTIONS(6294), 1, + ACTIONS(2238), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(6302), 1, + anon_sym_or, anon_sym_PLUS, - ACTIONS(6328), 1, + [341723] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6382), 1, anon_sym_or, + ACTIONS(6384), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(195), 2, + ACTIONS(2955), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(782), 2, + STATE(2804), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335457] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [341751] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6330), 1, + ACTIONS(6386), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(626), 2, + ACTIONS(397), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3698), 2, + STATE(2313), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335485] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [341779] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6332), 1, + ACTIONS(6388), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(444), 2, + ACTIONS(508), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2266), 2, + STATE(2329), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335513] = 5, - ACTIONS(6296), 1, + [341807] = 4, + ACTIONS(6392), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5252), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(6390), 6, + anon_sym_rule, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + [341827] = 4, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2871), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(2402), 6, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [335535] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + anon_sym_PLUS, + [341847] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6334), 1, + ACTIONS(6395), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(444), 2, + ACTIONS(231), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2266), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335563] = 5, - ACTIONS(6296), 1, + [341875] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2293), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, - anon_sym_or, - [335585] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6397), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(397), 2, anon_sym_DOT, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [335607] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + STATE(2313), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [341903] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6336), 1, + ACTIONS(6399), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(738), 2, + ACTIONS(135), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2871), 2, + STATE(586), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335635] = 8, - ACTIONS(2357), 1, - anon_sym_as, - ACTIONS(6296), 1, + [341931] = 4, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6316), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335663] = 8, - ACTIONS(6294), 1, + ACTIONS(133), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(6296), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [341951] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6338), 1, + ACTIONS(6401), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(195), 2, + ACTIONS(564), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(782), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335691] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [341979] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6340), 1, + ACTIONS(6403), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(760), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3889), 2, + STATE(4100), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335719] = 5, - ACTIONS(6296), 1, + [342007] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6405), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2288), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(754), 2, anon_sym_DOT, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [335741] = 5, - ACTIONS(6296), 1, + STATE(2892), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [342035] = 4, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2815), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(2254), 6, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [335763] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + anon_sym_PLUS, + [342055] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6342), 1, + ACTIONS(6407), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(742), 2, + ACTIONS(570), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2815), 2, + STATE(3510), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335791] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [342083] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6344), 1, + ACTIONS(6409), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335819] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [342111] = 7, + ACTIONS(3803), 1, + anon_sym_LBRACE, + ACTIONS(6411), 1, + anon_sym_LPAREN, + STATE(4306), 1, + sym_dict_expr, + STATE(4835), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5704), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2598), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [342137] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6316), 1, - anon_sym_or, - ACTIONS(6346), 1, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6413), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(231), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(862), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335847] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [342165] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6348), 1, + ACTIONS(6415), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(754), 2, + ACTIONS(564), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(4121), 2, + STATE(2322), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [335875] = 5, - ACTIONS(6296), 1, + [342193] = 4, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2532), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(2254), 6, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [335897] = 5, - ACTIONS(6296), 1, + anon_sym_PLUS, + [342213] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6417), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3765), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [342241] = 4, + ACTIONS(6376), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(2266), 6, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [335919] = 5, - ACTIONS(6296), 1, + anon_sym_PLUS, + [342261] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6419), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2266), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(508), 2, anon_sym_DOT, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [335941] = 4, - ACTIONS(6296), 1, + STATE(2329), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [342289] = 5, + ACTIONS(6376), 1, anon_sym_if, + ACTIONS(6384), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 6, + ACTIONS(2258), 5, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, + [342311] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6384), 1, anon_sym_PLUS, - [335961] = 4, - ACTIONS(6352), 1, - anon_sym_AT, + ACTIONS(6421), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5198), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(6350), 6, - anon_sym_rule, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_check, - [335981] = 5, - ACTIONS(6296), 1, + ACTIONS(227), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(951), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [342339] = 5, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, + ACTIONS(2244), 5, anon_sym_DOT, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [336003] = 8, - ACTIONS(6294), 1, + [342361] = 8, + ACTIONS(2057), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6355), 1, + ACTIONS(6409), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2623), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3808), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [336031] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [342389] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6316), 1, - anon_sym_or, - ACTIONS(6357), 1, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6423), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, + ACTIONS(3065), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(3423), 2, + STATE(3955), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [336059] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + [342417] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6359), 1, + ACTIONS(6425), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(211), 2, + ACTIONS(750), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1648), 2, + STATE(2840), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [336087] = 5, - ACTIONS(6296), 1, + [342445] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6409), 1, + anon_sym_or, + ACTIONS(6427), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(580), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, + [342473] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, + ACTIONS(6384), 1, + anon_sym_PLUS, + ACTIONS(6429), 1, anon_sym_or, - [336109] = 4, - ACTIONS(6296), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2463), 6, + ACTIONS(135), 2, anon_sym_DOT, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [336129] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, + STATE(586), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [342501] = 8, + ACTIONS(6376), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, anon_sym_and, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, - ACTIONS(6361), 1, + ACTIONS(6431), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(215), 2, + ACTIONS(227), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1539), 2, + STATE(951), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [336157] = 4, - ACTIONS(6296), 1, + [342529] = 8, + ACTIONS(6376), 1, anon_sym_if, + ACTIONS(6378), 1, + anon_sym_as, + ACTIONS(6380), 1, + anon_sym_and, + ACTIONS(6384), 1, + anon_sym_PLUS, + ACTIONS(6433), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(576), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2716), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(189), 6, - anon_sym_DOT, + [342557] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [336177] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6435), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(580), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2447), 5, - anon_sym_DOT, + [342585] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, + ACTIONS(6384), 1, + anon_sym_PLUS, + ACTIONS(6437), 1, anon_sym_or, - [336199] = 4, - ACTIONS(6296), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(580), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2451), 6, - anon_sym_DOT, + [342613] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [336219] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6439), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(211), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(699), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2455), 5, - anon_sym_DOT, + [342641] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, - anon_sym_or, - [336241] = 5, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6384), 1, anon_sym_PLUS, + ACTIONS(6441), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1648), 2, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3944), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2443), 5, - anon_sym_DOT, + [342669] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, + ACTIONS(6384), 1, + anon_sym_PLUS, + ACTIONS(6443), 1, anon_sym_or, - [336263] = 4, - ACTIONS(6296), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + ACTIONS(211), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(699), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2459), 6, - anon_sym_DOT, + [342697] = 8, + ACTIONS(6376), 1, + anon_sym_if, + ACTIONS(6378), 1, anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(6380), 1, anon_sym_and, + ACTIONS(6409), 1, anon_sym_or, + ACTIONS(6445), 1, anon_sym_PLUS, - [336283] = 8, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_and, - ACTIONS(6302), 1, - anon_sym_PLUS, - ACTIONS(6363), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(608), 2, + ACTIONS(580), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2532), 2, + STATE(3386), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [336311] = 6, - ACTIONS(6371), 1, + [342725] = 6, + ACTIONS(6451), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6365), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6368), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336334] = 6, - ACTIONS(6377), 1, + [342748] = 6, + ACTIONS(6453), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5319), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336357] = 6, - ACTIONS(6379), 1, + [342771] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [342786] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [342801] = 6, + ACTIONS(6455), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336380] = 6, - ACTIONS(6381), 1, + [342824] = 6, + ACTIONS(6457), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336403] = 6, - ACTIONS(6383), 1, + [342847] = 6, + ACTIONS(6459), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5303), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336426] = 6, - ACTIONS(6385), 1, + [342870] = 6, + ACTIONS(6461), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5325), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336449] = 6, - ACTIONS(6387), 1, + [342893] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [342908] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [342923] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [342938] = 6, + ACTIONS(6463), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5239), 2, + STATE(5310), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336472] = 6, - ACTIONS(6389), 1, + [342961] = 6, + ACTIONS(6465), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5215), 2, + STATE(5306), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336495] = 6, - ACTIONS(6391), 1, + [342984] = 6, + ACTIONS(6467), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5222), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336518] = 6, - ACTIONS(6393), 1, + [343007] = 6, + ACTIONS(6469), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5327), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336541] = 6, - ACTIONS(6395), 1, + [343030] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343045] = 6, + ACTIONS(6471), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5229), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336564] = 6, - ACTIONS(6397), 1, + [343068] = 6, + ACTIONS(6473), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5249), 2, + STATE(5337), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336587] = 6, - ACTIONS(6399), 1, + [343091] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343106] = 6, + ACTIONS(6475), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5218), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336610] = 6, - ACTIONS(6401), 1, + [343129] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343144] = 6, + ACTIONS(6477), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5292), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336633] = 6, - ACTIONS(6403), 1, + [343167] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343182] = 6, + ACTIONS(6479), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5217), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336656] = 6, - ACTIONS(6405), 1, + [343205] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343220] = 6, + ACTIONS(6481), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5230), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336679] = 6, - ACTIONS(6407), 1, + [343243] = 6, + ACTIONS(6483), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5300), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336702] = 6, - ACTIONS(6409), 1, + [343266] = 6, + ACTIONS(6485), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336725] = 5, - ACTIONS(1319), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6411), 1, - sym_identifier, - STATE(6143), 1, - sym_basic_type, + [343289] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [336746] = 6, - ACTIONS(6413), 1, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343304] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343319] = 6, + ACTIONS(6487), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5214), 2, + STATE(5287), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336769] = 6, - ACTIONS(6415), 1, + [343342] = 6, + ACTIONS(6489), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5291), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336792] = 6, - ACTIONS(6417), 1, + [343365] = 6, + ACTIONS(6491), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5242), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336815] = 6, - ACTIONS(6419), 1, + [343388] = 6, + ACTIONS(6493), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336838] = 6, - ACTIONS(6421), 1, + [343411] = 6, + ACTIONS(6495), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5233), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336861] = 6, - ACTIONS(6423), 1, + [343434] = 6, + ACTIONS(6497), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5226), 2, + STATE(5321), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336884] = 6, - ACTIONS(6425), 1, + [343457] = 6, + ACTIONS(6499), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5235), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336907] = 6, - ACTIONS(6427), 1, + [343480] = 5, + ACTIONS(1369), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6501), 1, + sym_identifier, + STATE(6367), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1365), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [343501] = 6, + ACTIONS(6503), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336930] = 6, - ACTIONS(6429), 1, + [343524] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343539] = 6, + ACTIONS(6505), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5241), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336953] = 6, - ACTIONS(6431), 1, + [343562] = 5, + ACTIONS(1355), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6507), 1, + sym_identifier, + STATE(6142), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1365), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [343583] = 6, + ACTIONS(6515), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6509), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6512), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336976] = 6, - ACTIONS(6433), 1, + [343606] = 6, + ACTIONS(6517), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [336999] = 6, - ACTIONS(6435), 1, + [343629] = 6, + ACTIONS(6519), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5216), 2, + STATE(5330), 2, sym_string_content, aux_sym_raw_string_repeat1, - [337022] = 6, - ACTIONS(6437), 1, + [343652] = 6, + ACTIONS(6521), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5246), 2, + STATE(5323), 2, sym_string_content, aux_sym_raw_string_repeat1, - [337045] = 5, - ACTIONS(1331), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6439), 1, - sym_identifier, - STATE(6085), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1327), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [337066] = 6, - ACTIONS(6441), 1, + [343675] = 6, + ACTIONS(6523), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5320), 2, sym_string_content, aux_sym_raw_string_repeat1, - [337089] = 6, - ACTIONS(6443), 1, + [343698] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343713] = 6, + ACTIONS(6525), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5248), 2, + STATE(5312), 2, sym_string_content, aux_sym_raw_string_repeat1, - [337112] = 6, - ACTIONS(6445), 1, + [343736] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [343751] = 6, + ACTIONS(6527), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5329), 2, sym_string_content, aux_sym_raw_string_repeat1, - [337135] = 6, - ACTIONS(6447), 1, + [343774] = 6, + ACTIONS(6529), 1, sym_string_end, - STATE(5313), 1, + STATE(5430), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6373), 2, + ACTIONS(6447), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(6375), 2, + ACTIONS(6449), 2, sym__not_escape_sequence, sym__string_content, - STATE(5213), 2, + STATE(5314), 2, sym_string_content, aux_sym_raw_string_repeat1, - [337158] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5642), 1, - sym_parameter, + [343797] = 3, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6451), 2, - anon_sym_DASH_GT, + ACTIONS(2220), 6, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_LBRACE, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [337178] = 2, + anon_sym_PIPE, + [343813] = 4, + STATE(4835), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5704), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2598), 4, + sym__newline, + anon_sym_as, + anon_sym_EQ, + anon_sym_PIPE, + [343831] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6453), 7, + ACTIONS(6531), 7, anon_sym_rule, anon_sym_LBRACK, anon_sym_schema, @@ -335455,15363 +343250,15804 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_check, anon_sym_AT, - [337192] = 4, - STATE(4740), 1, - aux_sym_dotted_name_repeat1, + [343845] = 4, + ACTIONS(6533), 1, + anon_sym_PIPE, + STATE(5342), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2477), 4, - sym__newline, - anon_sym_as, + ACTIONS(1954), 5, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - [337210] = 8, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, - anon_sym_DOT, - STATE(5566), 1, - sym_import_prefix, - STATE(5574), 1, - aux_sym_import_prefix_repeat1, - STATE(5758), 1, - sym_dotted_name, - STATE(6174), 1, - sym_aliased_import, - STATE(6176), 1, - sym__import_list, + anon_sym_LBRACE, + [343863] = 3, + ACTIONS(6536), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [337236] = 4, - ACTIONS(6459), 1, + ACTIONS(2033), 6, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [343879] = 4, + ACTIONS(6538), 1, anon_sym_DOT_DOT_DOT, - STATE(6092), 1, + STATE(6149), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6461), 5, + ACTIONS(6540), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [337254] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5642), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6463), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [337274] = 4, - ACTIONS(6465), 1, + [343897] = 4, + ACTIONS(6542), 1, anon_sym_DOT_DOT_DOT, - STATE(5939), 1, + STATE(6194), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6461), 5, + ACTIONS(6540), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [337292] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5725), 1, - sym__parameters, + [343915] = 3, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [337311] = 5, - ACTIONS(6473), 1, - sym_string_end, - STATE(5258), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6467), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(6470), 2, - sym__not_escape_sequence, - sym__string_content, - [337330] = 4, - ACTIONS(418), 1, - anon_sym_LBRACK, - ACTIONS(6475), 1, + ACTIONS(1954), 6, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_LBRACE, + anon_sym_PIPE, + [343931] = 3, + STATE(5342), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2457), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [337347] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [337366] = 5, - ACTIONS(6477), 1, - anon_sym_if, - ACTIONS(6479), 1, + ACTIONS(2392), 6, + anon_sym_COLON, anon_sym_for, - ACTIONS(6481), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5301), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [337385] = 4, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(6483), 1, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_LBRACE, + anon_sym_PIPE, + [343947] = 8, + ACTIONS(6544), 1, + sym_identifier, + ACTIONS(6546), 1, + anon_sym_DOT, + STATE(5637), 1, + sym_import_prefix, + STATE(5638), 1, + aux_sym_import_prefix_repeat1, + STATE(5859), 1, + sym_dotted_name, + STATE(6455), 1, + sym_aliased_import, + STATE(6456), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3518), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [337402] = 5, - ACTIONS(6449), 1, + [343973] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5560), 1, sym_parameter, - STATE(5730), 1, - sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + ACTIONS(6550), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [337421] = 5, - ACTIONS(5632), 1, - anon_sym_for, - ACTIONS(6485), 1, - anon_sym_if, - ACTIONS(6487), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5307), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [337440] = 7, - ACTIONS(6479), 1, - anon_sym_for, - ACTIONS(6489), 1, - anon_sym_COMMA, - ACTIONS(6491), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5682), 1, - aux_sym_dictionary_repeat1, - STATE(6017), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [337463] = 4, - ACTIONS(2619), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4143), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [337480] = 3, - ACTIONS(6495), 1, + [343993] = 3, + ACTIONS(6552), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(1973), 6, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [337495] = 7, - ACTIONS(6479), 1, - anon_sym_for, - ACTIONS(6497), 1, - anon_sym_COMMA, - ACTIONS(6499), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5456), 1, - aux_sym_dictionary_repeat1, - STATE(6239), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [337518] = 3, - STATE(5280), 1, - aux_sym_union_type_repeat1, + [344009] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5560), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(6554), 2, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PIPE, - [337533] = 7, - ACTIONS(6479), 1, - anon_sym_for, - ACTIONS(6501), 1, - anon_sym_COMMA, - ACTIONS(6503), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5632), 1, - aux_sym_dictionary_repeat1, - STATE(5824), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [337556] = 3, - STATE(5324), 1, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344029] = 3, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2192), 6, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [337571] = 3, - STATE(5280), 1, + [344045] = 3, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, - anon_sym_COMMA, + ACTIONS(2154), 6, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [337586] = 4, - ACTIONS(137), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_LBRACE, + [344061] = 3, + ACTIONS(6556), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2135), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [337603] = 7, - ACTIONS(6479), 1, + ACTIONS(2154), 6, + anon_sym_COLON, anon_sym_for, - ACTIONS(6507), 1, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [344077] = 7, + ACTIONS(6558), 1, anon_sym_COMMA, - ACTIONS(6509), 1, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6562), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5486), 1, + STATE(5785), 1, aux_sym_dictionary_repeat1, - STATE(6300), 1, + STATE(6370), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [337626] = 3, - STATE(5280), 1, + [344100] = 5, + ACTIONS(6566), 1, + anon_sym_EQ, + ACTIONS(6568), 1, + anon_sym_PIPE, + STATE(5404), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(6564), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PIPE, - [337641] = 4, - ACTIONS(716), 1, + [344119] = 4, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(6511), 1, + ACTIONS(6570), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4252), 4, + STATE(3065), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [337658] = 7, - ACTIONS(6479), 1, - anon_sym_for, - ACTIONS(6513), 1, - anon_sym_COMMA, - ACTIONS(6515), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5619), 1, - aux_sym_dictionary_repeat1, - STATE(5933), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [337681] = 3, - STATE(5280), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2507), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [337696] = 3, - STATE(6093), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6461), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [337711] = 3, - STATE(5311), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2568), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [337726] = 3, - STATE(6088), 1, - sym_basic_type, + [344136] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5837), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6461), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [337741] = 4, - ACTIONS(163), 1, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344155] = 4, + ACTIONS(3061), 1, anon_sym_LBRACK, - ACTIONS(6517), 1, + ACTIONS(6572), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2217), 4, + STATE(4330), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [337758] = 3, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [344172] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5840), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [337773] = 7, - ACTIONS(6479), 1, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344191] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6519), 1, + ACTIONS(6574), 1, anon_sym_COMMA, - ACTIONS(6521), 1, + ACTIONS(6576), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5482), 1, + STATE(5730), 1, aux_sym_dictionary_repeat1, - STATE(6122), 1, + STATE(6332), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [337796] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5737), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [337815] = 5, - ACTIONS(6525), 1, - anon_sym_COLON, - ACTIONS(6527), 1, - anon_sym_LBRACK, - ACTIONS(6529), 1, - anon_sym_EQ, + [344214] = 7, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6578), 1, + anon_sym_COMMA, + ACTIONS(6580), 1, + anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5726), 1, + aux_sym_dictionary_repeat1, + STATE(6414), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6523), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [337834] = 4, - ACTIONS(456), 1, + [344237] = 4, + ACTIONS(377), 1, anon_sym_LBRACK, - ACTIONS(6531), 1, + ACTIONS(6582), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2946), 4, + STATE(3678), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [337851] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5734), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [337870] = 7, - ACTIONS(6479), 1, + [344254] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6533), 1, + ACTIONS(6584), 1, anon_sym_COMMA, - ACTIONS(6535), 1, + ACTIONS(6586), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5457), 1, + STATE(5656), 1, aux_sym_dictionary_repeat1, - STATE(5841), 1, + STATE(6268), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [337893] = 7, - ACTIONS(6479), 1, + [344277] = 5, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(6537), 1, - anon_sym_COMMA, - ACTIONS(6539), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5524), 1, - aux_sym_dictionary_repeat1, - STATE(6265), 1, - sym__comprehension_clauses, + ACTIONS(6588), 1, + anon_sym_if, + ACTIONS(6590), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [337916] = 5, - ACTIONS(6449), 1, + STATE(5393), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [344296] = 5, + ACTIONS(2300), 1, + anon_sym_LF, + STATE(3922), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2298), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6592), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [344315] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5732), 1, + STATE(5842), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [337935] = 7, - ACTIONS(6479), 1, - anon_sym_for, - ACTIONS(6541), 1, - anon_sym_COMMA, - ACTIONS(6543), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5555), 1, - aux_sym_dictionary_repeat1, - STATE(5886), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [337958] = 4, - ACTIONS(392), 1, + [344334] = 4, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(6545), 1, + ACTIONS(6594), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3579), 4, + STATE(3263), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [337975] = 3, - STATE(5908), 1, - sym_basic_type, + [344351] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5845), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6461), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [337990] = 4, - ACTIONS(512), 1, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344370] = 4, + ACTIONS(6596), 1, + anon_sym_PIPE, + STATE(5370), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1954), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [344387] = 4, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(6547), 1, + ACTIONS(6599), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2440), 4, + STATE(2915), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338007] = 4, - ACTIONS(95), 1, + [344404] = 4, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(6549), 1, + ACTIONS(6601), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1966), 4, + STATE(1841), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338024] = 5, - ACTIONS(6449), 1, + [344421] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5731), 1, + STATE(5849), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338043] = 7, - ACTIONS(6479), 1, + [344440] = 5, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6603), 1, + anon_sym_if, + ACTIONS(6605), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5409), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [344459] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6551), 1, + ACTIONS(6607), 1, anon_sym_COMMA, - ACTIONS(6553), 1, + ACTIONS(6609), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5596), 1, + STATE(5546), 1, aux_sym_dictionary_repeat1, - STATE(6140), 1, + STATE(6183), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338066] = 5, - ACTIONS(6449), 1, + [344482] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5728), 1, + STATE(5851), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338085] = 4, - ACTIONS(259), 1, + [344501] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5853), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344520] = 5, + ACTIONS(6611), 1, + anon_sym_EQ, + ACTIONS(6613), 1, + anon_sym_PIPE, + STATE(5347), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6564), 3, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + [344539] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5857), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344558] = 4, + ACTIONS(544), 1, anon_sym_LBRACK, - ACTIONS(6555), 1, + ACTIONS(6615), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2582), 4, + STATE(4140), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338102] = 5, - ACTIONS(6557), 1, - anon_sym_if, + [344575] = 4, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(6617), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2500), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [344592] = 7, ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6563), 1, + ACTIONS(6619), 1, + anon_sym_COMMA, + ACTIONS(6621), 1, anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5625), 1, + aux_sym_dictionary_repeat1, + STATE(5960), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5301), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [338121] = 4, - STATE(5319), 1, + [344615] = 5, + ACTIONS(2598), 1, + anon_sym_LF, + STATE(5366), 1, aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6565), 2, + ACTIONS(2600), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6592), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2477), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [338138] = 5, - ACTIONS(6449), 1, + [344634] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5727), 1, + STATE(5861), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338157] = 3, - STATE(6112), 1, + [344653] = 3, + STATE(6015), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6461), 5, + ACTIONS(6540), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [338172] = 7, - ACTIONS(6479), 1, + [344668] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5867), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344687] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6567), 1, + ACTIONS(6623), 1, anon_sym_COMMA, - ACTIONS(6569), 1, + ACTIONS(6625), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5541), 1, + STATE(5699), 1, aux_sym_dictionary_repeat1, - STATE(6214), 1, + STATE(5979), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338195] = 4, - ACTIONS(219), 1, + [344710] = 4, + STATE(4447), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5134), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2598), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [344727] = 4, + STATE(5399), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2598), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [344744] = 5, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6590), 1, + anon_sym_RBRACE, + ACTIONS(6603), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5374), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [344763] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5868), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344782] = 4, + ACTIONS(430), 1, anon_sym_LBRACK, - ACTIONS(6571), 1, + ACTIONS(6629), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4276), 4, + STATE(2663), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338212] = 5, - ACTIONS(5632), 1, + [344799] = 5, + ACTIONS(5716), 1, anon_sym_for, - ACTIONS(6481), 1, - anon_sym_RBRACK, - ACTIONS(6485), 1, + ACTIONS(6588), 1, anon_sym_if, + ACTIONS(6605), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5322), 3, + STATE(5410), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [338231] = 5, - ACTIONS(2477), 1, - anon_sym_LF, - STATE(5315), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6573), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [338250] = 5, - ACTIONS(6449), 1, + [344818] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5724), 1, + STATE(5835), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338269] = 5, - ACTIONS(6577), 1, - anon_sym_EQ, - ACTIONS(6579), 1, - anon_sym_PIPE, - STATE(5280), 1, - aux_sym_union_type_repeat1, + [344837] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6575), 3, + ACTIONS(6631), 6, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_LBRACE, - [338288] = 4, - ACTIONS(6581), 1, - anon_sym_PIPE, - STATE(5311), 1, - aux_sym_union_type_repeat1, + [344850] = 7, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6635), 1, + anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5597), 1, + aux_sym_dictionary_repeat1, + STATE(6205), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 4, + [344873] = 7, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [338305] = 3, - ACTIONS(6584), 1, - anon_sym_DASH_GT, + ACTIONS(6639), 1, + anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5613), 1, + aux_sym_dictionary_repeat1, + STATE(6134), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [338320] = 5, - ACTIONS(6590), 1, - sym_string_end, - STATE(5258), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6586), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(6588), 2, - sym__not_escape_sequence, - sym__string_content, - [338339] = 3, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [344896] = 7, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6641), 1, + anon_sym_COMMA, + ACTIONS(6643), 1, + anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5698), 1, + aux_sym_dictionary_repeat1, + STATE(5983), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [338354] = 5, - ACTIONS(2473), 1, - anon_sym_LF, - STATE(3762), 1, + [344919] = 4, + STATE(4104), 1, aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6573), 2, + ACTIONS(6627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [338373] = 5, - ACTIONS(6477), 1, - anon_sym_if, - ACTIONS(6479), 1, + ACTIONS(2300), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [344936] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6487), 1, + ACTIONS(6645), 1, + anon_sym_COMMA, + ACTIONS(6647), 1, anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5675), 1, + aux_sym_dictionary_repeat1, + STATE(6263), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5261), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [338392] = 3, - ACTIONS(6592), 1, - anon_sym_DASH_GT, + [344959] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5794), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [338407] = 4, - ACTIONS(636), 1, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344978] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5870), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [344997] = 4, + ACTIONS(265), 1, anon_sym_LBRACK, - ACTIONS(6594), 1, + ACTIONS(6649), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3133), 4, + STATE(2542), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338424] = 4, - STATE(4076), 1, - aux_sym_dotted_name_repeat1, + [345014] = 3, + STATE(5370), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2473), 3, + ACTIONS(2392), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [338441] = 4, - ACTIONS(536), 1, - anon_sym_LBRACK, - ACTIONS(6596), 1, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_PIPE, + [345029] = 5, + ACTIONS(6548), 1, + sym_identifier, + STATE(5469), 1, + sym_parameter, + STATE(5871), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4018), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [338458] = 7, - ACTIONS(6479), 1, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [345048] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6598), 1, + ACTIONS(6651), 1, anon_sym_COMMA, - ACTIONS(6600), 1, + ACTIONS(6653), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5684), 1, + STATE(5577), 1, aux_sym_dictionary_repeat1, - STATE(6018), 1, + STATE(6188), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338481] = 5, - ACTIONS(6563), 1, - anon_sym_RBRACK, - ACTIONS(6602), 1, + [345071] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6655), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [345084] = 4, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(6657), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4473), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [345101] = 5, + ACTIONS(6659), 1, anon_sym_if, - ACTIONS(6605), 1, + ACTIONS(6662), 1, anon_sym_for, + ACTIONS(6665), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5322), 3, + STATE(5409), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [338500] = 3, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [345120] = 5, + ACTIONS(6665), 1, + anon_sym_RBRACK, + ACTIONS(6667), 1, + anon_sym_if, + ACTIONS(6670), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + STATE(5410), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [345139] = 5, + ACTIONS(6673), 1, anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_LBRACK, + ACTIONS(6677), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [338515] = 4, - ACTIONS(6608), 1, - anon_sym_PIPE, - STATE(5324), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(6655), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - [338532] = 7, - ACTIONS(6479), 1, + [345158] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6611), 1, + ACTIONS(6679), 1, anon_sym_COMMA, - ACTIONS(6613), 1, + ACTIONS(6681), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5599), 1, + STATE(5677), 1, aux_sym_dictionary_repeat1, - STATE(6145), 1, + STATE(6098), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338555] = 4, - ACTIONS(684), 1, - anon_sym_LBRACK, - ACTIONS(6615), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3118), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [338572] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5721), 1, - sym__parameters, + [345181] = 3, + STATE(6145), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [338591] = 3, - STATE(5271), 1, + ACTIONS(6540), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [345196] = 3, + STATE(5404), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(1954), 5, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [338606] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5710), 1, - sym__parameters, + [345211] = 4, + ACTIONS(2951), 1, + anon_sym_LBRACK, + ACTIONS(6683), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [338625] = 5, - ACTIONS(6449), 1, + STATE(3199), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [345228] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5712), 1, + STATE(5812), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338644] = 4, - ACTIONS(2603), 1, + [345247] = 4, + ACTIONS(171), 1, anon_sym_LBRACK, - ACTIONS(6617), 1, + ACTIONS(6685), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2994), 4, + STATE(2144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338661] = 7, - ACTIONS(6479), 1, + [345264] = 3, + STATE(6150), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6540), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [345279] = 5, + ACTIONS(6693), 1, + sym_string_end, + STATE(5419), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6687), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6690), 2, + sym__not_escape_sequence, + sym__string_content, + [345298] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6619), 1, + ACTIONS(6695), 1, anon_sym_COMMA, - ACTIONS(6621), 1, + ACTIONS(6697), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5542), 1, + STATE(5674), 1, aux_sym_dictionary_repeat1, - STATE(6207), 1, + STATE(6354), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338684] = 4, - STATE(4412), 1, - aux_sym_dotted_name_repeat1, + [345321] = 4, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(6699), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5080), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2477), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [338701] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5713), 1, - sym__parameters, + STATE(1333), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [345338] = 3, + STATE(5404), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [338720] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5720), 1, - sym__parameters, + ACTIONS(2192), 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [345353] = 3, + STATE(6298), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [338739] = 7, - ACTIONS(6479), 1, + ACTIONS(6540), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [345368] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6623), 1, + ACTIONS(6701), 1, anon_sym_COMMA, - ACTIONS(6625), 1, + ACTIONS(6703), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5567), 1, + STATE(5570), 1, aux_sym_dictionary_repeat1, - STATE(5891), 1, + STATE(6176), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338762] = 5, - ACTIONS(6449), 1, - sym_identifier, - STATE(5391), 1, - sym_parameter, - STATE(5716), 1, - sym__parameters, + [345391] = 3, + STATE(5404), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [338781] = 7, - ACTIONS(6479), 1, - anon_sym_for, - ACTIONS(6627), 1, + ACTIONS(2220), 5, anon_sym_COMMA, - ACTIONS(6629), 1, - anon_sym_RBRACE, - STATE(5316), 1, - sym_for_in_clause, - STATE(5689), 1, - aux_sym_dictionary_repeat1, - STATE(6004), 1, - sym__comprehension_clauses, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [345406] = 4, + ACTIONS(199), 1, + anon_sym_LBRACK, + ACTIONS(6705), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338804] = 5, - ACTIONS(6449), 1, + STATE(4357), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [345423] = 3, + STATE(5404), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [345438] = 5, + ACTIONS(6548), 1, sym_identifier, - STATE(5391), 1, + STATE(5469), 1, sym_parameter, - STATE(5718), 1, + STATE(5834), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338823] = 4, - ACTIONS(69), 1, + [345457] = 4, + ACTIONS(145), 1, anon_sym_LBRACK, - ACTIONS(6631), 1, + ACTIONS(6707), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1881), 4, + STATE(2241), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [338840] = 7, - ACTIONS(6479), 1, + [345474] = 5, + ACTIONS(6713), 1, + sym_string_end, + STATE(5419), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6709), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6711), 2, + sym__not_escape_sequence, + sym__string_content, + [345493] = 7, + ACTIONS(6560), 1, anon_sym_for, - ACTIONS(6633), 1, + ACTIONS(6715), 1, anon_sym_COMMA, - ACTIONS(6635), 1, + ACTIONS(6717), 1, anon_sym_RBRACE, - STATE(5316), 1, + STATE(5390), 1, sym_for_in_clause, - STATE(5560), 1, + STATE(5595), 1, aux_sym_dictionary_repeat1, - STATE(5849), 1, + STATE(6461), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338863] = 6, - ACTIONS(6637), 1, + [345516] = 7, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6719), 1, anon_sym_COMMA, - ACTIONS(6639), 1, + ACTIONS(6721), 1, + anon_sym_RBRACE, + STATE(5390), 1, + sym_for_in_clause, + STATE(5533), 1, + aux_sym_dictionary_repeat1, + STATE(6230), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345539] = 4, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(6723), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3573), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [345556] = 6, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(6727), 1, anon_sym_RPAREN, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5582), 1, + STATE(5594), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338883] = 6, - ACTIONS(6637), 1, + [345576] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6643), 1, + ACTIONS(6731), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5444), 1, + STATE(5782), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338903] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6645), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [338915] = 6, - ACTIONS(6637), 1, + [345596] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6647), 1, + ACTIONS(6733), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5697), 1, + STATE(5786), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [338935] = 5, - ACTIONS(6649), 1, - anon_sym_EQ, - ACTIONS(6651), 1, + [345616] = 6, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(6729), 1, anon_sym_PIPE, - STATE(5271), 1, + ACTIONS(6735), 1, + anon_sym_RPAREN, + STATE(5497), 1, aux_sym_union_type_repeat1, + STATE(5760), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6575), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [338953] = 4, - ACTIONS(6653), 1, + [345636] = 4, + ACTIONS(6737), 1, sym_identifier, - STATE(5782), 1, + STATE(5680), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [338969] = 6, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_PIPE, - ACTIONS(6655), 1, - anon_sym_RPAREN, - STATE(5379), 1, - aux_sym_union_type_repeat1, - STATE(5649), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [338989] = 6, - ACTIONS(6637), 1, + [345652] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6657), 1, + ACTIONS(6739), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5691), 1, + STATE(5606), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339009] = 4, - STATE(3525), 1, + [345672] = 4, + STATE(3600), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + ACTIONS(2300), 2, anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(6659), 2, + ACTIONS(6741), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [339025] = 6, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_PIPE, - ACTIONS(6661), 1, - anon_sym_RPAREN, - STATE(5379), 1, - aux_sym_union_type_repeat1, - STATE(5695), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [339045] = 6, - ACTIONS(6637), 1, + [345688] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6663), 1, + ACTIONS(6743), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5625), 1, + STATE(5772), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339065] = 6, - ACTIONS(6637), 1, + [345708] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6745), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5535), 1, + STATE(5686), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339085] = 6, - ACTIONS(6637), 1, + [345728] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6667), 1, + ACTIONS(6747), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5669), 1, + STATE(5780), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339105] = 6, - ACTIONS(6637), 1, + [345748] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6669), 1, + ACTIONS(6749), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5675), 1, + STATE(5538), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339125] = 6, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_PIPE, - ACTIONS(6671), 1, - anon_sym_RPAREN, - STATE(5379), 1, - aux_sym_union_type_repeat1, + [345768] = 4, STATE(5453), 1, - aux_sym_function_type_repeat1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339145] = 6, - ACTIONS(6637), 1, + ACTIONS(2598), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(6751), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [345784] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6673), 1, + ACTIONS(6753), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5696), 1, + STATE(5769), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339165] = 6, - ACTIONS(6637), 1, + [345804] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6755), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5452), 1, + STATE(5778), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339185] = 4, - ACTIONS(6653), 1, - sym_identifier, - STATE(5714), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5364), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [339201] = 4, - ACTIONS(6449), 1, + [345824] = 4, + ACTIONS(6548), 1, sym_identifier, - STATE(5642), 1, + STATE(5560), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5364), 3, + STATE(5407), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [339217] = 6, - ACTIONS(6637), 1, + [345840] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6677), 1, + ACTIONS(6757), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5505), 1, + STATE(5556), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339237] = 6, - ACTIONS(6637), 1, + [345860] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6759), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5547), 1, + STATE(5588), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339257] = 6, - ACTIONS(6637), 1, + [345880] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6681), 1, + ACTIONS(6761), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5615), 1, + STATE(5739), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339277] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6523), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [339289] = 6, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_PIPE, - ACTIONS(6683), 1, - anon_sym_RPAREN, - STATE(5379), 1, - aux_sym_union_type_repeat1, - STATE(5580), 1, - aux_sym_function_type_repeat1, + [345900] = 4, + STATE(5440), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339309] = 6, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(2598), 2, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(6685), 1, - anon_sym_RPAREN, - STATE(5379), 1, - aux_sym_union_type_repeat1, - STATE(5508), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [339329] = 4, - STATE(5369), 1, + ACTIONS(6741), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [345916] = 4, + STATE(3754), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 2, + ACTIONS(2300), 2, anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(6687), 2, + ACTIONS(6751), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [339345] = 6, - ACTIONS(6637), 1, + [345932] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6689), 1, + ACTIONS(6763), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5607), 1, + STATE(5658), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339365] = 4, - STATE(3666), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2473), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(6687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [339381] = 6, - ACTIONS(6637), 1, + [345952] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6691), 1, + ACTIONS(6765), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5587), 1, + STATE(5529), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339401] = 6, - ACTIONS(6637), 1, + [345972] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6693), 1, + ACTIONS(6767), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5609), 1, + STATE(5790), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339421] = 4, - STATE(5350), 1, - aux_sym_dotted_name_repeat1, + [345992] = 6, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(6729), 1, + anon_sym_PIPE, + ACTIONS(6769), 1, + anon_sym_RPAREN, + STATE(5497), 1, + aux_sym_union_type_repeat1, + STATE(5620), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(6659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [339437] = 6, - ACTIONS(6637), 1, + [346012] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6695), 1, + ACTIONS(6771), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5529), 1, + STATE(5659), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339457] = 6, - ACTIONS(6637), 1, + [346032] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6697), 1, + ACTIONS(6773), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5595), 1, + STATE(5755), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339477] = 6, - ACTIONS(6637), 1, + [346052] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6699), 1, + ACTIONS(6775), 1, anon_sym_RPAREN, - STATE(5379), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, - STATE(5598), 1, + STATE(5552), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339497] = 5, - ACTIONS(6701), 1, + [346072] = 6, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6703), 1, - anon_sym_RBRACE, - ACTIONS(6705), 1, - anon_sym_LF, - STATE(5524), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [339514] = 5, - ACTIONS(6707), 1, - anon_sym_EQ, - ACTIONS(6709), 1, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6711), 1, - sym__newline, - STATE(5417), 1, + ACTIONS(6777), 1, + anon_sym_RPAREN, + STATE(5497), 1, aux_sym_union_type_repeat1, + STATE(5792), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339531] = 3, - STATE(5417), 1, + [346092] = 6, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(6729), 1, + anon_sym_PIPE, + ACTIONS(6779), 1, + anon_sym_RPAREN, + STATE(5497), 1, aux_sym_union_type_repeat1, + STATE(5714), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 3, - sym__newline, - anon_sym_EQ, + [346112] = 6, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(6729), 1, anon_sym_PIPE, - [339544] = 3, - STATE(5399), 1, + ACTIONS(6781), 1, + anon_sym_RPAREN, + STATE(5497), 1, aux_sym_union_type_repeat1, + STATE(5590), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [339557] = 4, - ACTIONS(6527), 1, + [346132] = 4, + ACTIONS(6675), 1, anon_sym_LBRACK, - ACTIONS(6713), 1, + ACTIONS(6783), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6523), 2, + ACTIONS(6655), 3, anon_sym_COLON, + anon_sym_for, anon_sym_LPAREN, - [339572] = 3, - STATE(5379), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2485), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [339585] = 3, - STATE(5379), 1, - aux_sym_union_type_repeat1, + [346148] = 4, + ACTIONS(6737), 1, + sym_identifier, + STATE(5751), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [339598] = 5, - ACTIONS(6705), 1, - anon_sym_LF, - ACTIONS(6715), 1, - anon_sym_COMMA, - ACTIONS(6717), 1, - anon_sym_RBRACE, - STATE(5457), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + STATE(5407), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [346164] = 3, + STATE(5474), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339615] = 5, - ACTIONS(6705), 1, - anon_sym_LF, - ACTIONS(6719), 1, + ACTIONS(1954), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [346177] = 5, + ACTIONS(6785), 1, anon_sym_COMMA, - ACTIONS(6721), 1, + ACTIONS(6787), 1, anon_sym_RBRACE, - STATE(5689), 1, + ACTIONS(6789), 1, + anon_sym_LF, + STATE(5533), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339632] = 5, - ACTIONS(6705), 1, - anon_sym_LF, - ACTIONS(6723), 1, - anon_sym_COMMA, - ACTIONS(6725), 1, + [346194] = 5, + ACTIONS(5668), 1, anon_sym_RBRACE, - STATE(5555), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6791), 1, + anon_sym_COMMA, + ACTIONS(6793), 1, + anon_sym_LF, + STATE(5485), 1, + aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339649] = 5, - ACTIONS(6705), 1, - anon_sym_LF, - ACTIONS(6727), 1, + [346211] = 4, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(6729), 1, - anon_sym_RBRACE, - STATE(5542), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + STATE(5507), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339666] = 3, - STATE(5417), 1, - aux_sym_union_type_repeat1, + ACTIONS(6797), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [346226] = 4, + ACTIONS(2598), 1, + sym__newline, + STATE(4835), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [339679] = 5, - ACTIONS(6709), 1, + ACTIONS(5704), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [346241] = 4, + ACTIONS(6799), 1, anon_sym_PIPE, - ACTIONS(6731), 1, - anon_sym_EQ, - ACTIONS(6733), 1, - sym__newline, - STATE(5417), 1, + STATE(5471), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339696] = 3, - ACTIONS(6735), 1, - anon_sym_DASH_GT, + ACTIONS(1954), 2, + sym__newline, + anon_sym_EQ, + [346256] = 3, + STATE(5497), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 3, + ACTIONS(2154), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [339709] = 3, - ACTIONS(6737), 1, + [346269] = 3, + ACTIONS(6802), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 3, + ACTIONS(2033), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [339722] = 4, - ACTIONS(6739), 1, - anon_sym_COMMA, - STATE(5414), 1, - aux_sym__parameters_repeat1, + [346282] = 3, + STATE(5471), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6741), 2, + ACTIONS(2392), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [346295] = 3, + ACTIONS(6804), 1, anon_sym_DASH_GT, - anon_sym_LBRACE, - [339737] = 4, - ACTIONS(6743), 1, - anon_sym_COMMA, - STATE(5392), 1, - aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6746), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [339752] = 4, - ACTIONS(2477), 1, + ACTIONS(1973), 3, sym__newline, - STATE(4740), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5624), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [339767] = 5, - ACTIONS(6705), 1, + anon_sym_EQ, + anon_sym_PIPE, + [346308] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6748), 1, + ACTIONS(6806), 1, anon_sym_COMMA, - ACTIONS(6750), 1, + ACTIONS(6808), 1, anon_sym_RBRACE, - STATE(5482), 1, + STATE(5595), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339784] = 5, - ACTIONS(6705), 1, + [346325] = 5, + ACTIONS(6810), 1, + anon_sym_EQ, + ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6814), 1, + sym__newline, + STATE(5474), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346342] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6752), 1, + ACTIONS(6816), 1, anon_sym_COMMA, - ACTIONS(6754), 1, + ACTIONS(6818), 1, anon_sym_RBRACE, - STATE(5619), 1, + STATE(5597), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339801] = 4, - ACTIONS(6641), 1, - anon_sym_PIPE, - STATE(5379), 1, + [346359] = 3, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6756), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [339816] = 5, - ACTIONS(6705), 1, + ACTIONS(2154), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [346372] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6758), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(6760), 1, + ACTIONS(6822), 1, anon_sym_RBRACE, - STATE(5560), 1, + STATE(5546), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339833] = 5, - ACTIONS(6705), 1, + [346389] = 5, + ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6824), 1, + anon_sym_EQ, + ACTIONS(6826), 1, + sym__newline, + STATE(5474), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346406] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6762), 1, + ACTIONS(6828), 1, anon_sym_COMMA, - ACTIONS(6764), 1, + ACTIONS(6830), 1, anon_sym_RBRACE, - STATE(5567), 1, + STATE(5698), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339850] = 4, - ACTIONS(6766), 1, + [346423] = 5, + ACTIONS(6812), 1, anon_sym_PIPE, - STATE(5399), 1, + ACTIONS(6832), 1, + anon_sym_EQ, + ACTIONS(6834), 1, + sym__newline, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [339865] = 5, - ACTIONS(6769), 1, + [346440] = 3, + ACTIONS(6836), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [346453] = 5, + ACTIONS(6838), 1, anon_sym_COMMA, - ACTIONS(6772), 1, + ACTIONS(6841), 1, anon_sym_RBRACE, - ACTIONS(6774), 1, + ACTIONS(6843), 1, anon_sym_LF, - STATE(5400), 1, + STATE(5485), 1, aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339882] = 5, - ACTIONS(6705), 1, + [346470] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6777), 1, + ACTIONS(6846), 1, anon_sym_COMMA, - ACTIONS(6779), 1, + ACTIONS(6848), 1, anon_sym_RBRACE, - STATE(5684), 1, + STATE(5699), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [339899] = 3, - STATE(5379), 1, + [346487] = 3, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2220), 3, + sym__newline, + anon_sym_EQ, anon_sym_PIPE, - [339912] = 3, - ACTIONS(6781), 1, + [346500] = 3, + ACTIONS(6850), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 3, + ACTIONS(2154), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [339925] = 3, - STATE(5417), 1, + [346513] = 5, + ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6852), 1, + anon_sym_EQ, + ACTIONS(6854), 1, + sym__newline, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [339938] = 5, - ACTIONS(6709), 1, + [346530] = 5, + ACTIONS(6812), 1, anon_sym_PIPE, - ACTIONS(6783), 1, + ACTIONS(6856), 1, anon_sym_EQ, - ACTIONS(6785), 1, + ACTIONS(6858), 1, sym__newline, - STATE(5417), 1, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339955] = 4, - ACTIONS(6787), 1, - anon_sym_PIPE, - STATE(5406), 1, - aux_sym_union_type_repeat1, + [346547] = 4, + ACTIONS(6860), 1, + anon_sym_COMMA, + STATE(5491), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 2, - sym__newline, - anon_sym_EQ, - [339970] = 5, - ACTIONS(6709), 1, + ACTIONS(6863), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [346562] = 5, + ACTIONS(6812), 1, anon_sym_PIPE, - ACTIONS(6790), 1, + ACTIONS(6865), 1, anon_sym_EQ, - ACTIONS(6792), 1, + ACTIONS(6867), 1, sym__newline, - STATE(5417), 1, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [339987] = 3, - ACTIONS(6794), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [346579] = 5, + ACTIONS(6789), 1, + anon_sym_LF, + ACTIONS(6869), 1, + anon_sym_COMMA, + ACTIONS(6871), 1, + anon_sym_RBRACE, + STATE(5785), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [340000] = 3, - STATE(5417), 1, + [346596] = 3, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 3, + ACTIONS(2192), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [340013] = 3, - STATE(5379), 1, - aux_sym_union_type_repeat1, + [346609] = 3, + ACTIONS(6873), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 3, + ACTIONS(2033), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [340026] = 5, - ACTIONS(6705), 1, + [346622] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6796), 1, + ACTIONS(6875), 1, anon_sym_COMMA, - ACTIONS(6798), 1, + ACTIONS(6877), 1, anon_sym_RBRACE, - STATE(5632), 1, + STATE(5726), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340043] = 5, - ACTIONS(6705), 1, - anon_sym_LF, - ACTIONS(6800), 1, + [346639] = 3, + STATE(5498), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2392), 3, anon_sym_COMMA, - ACTIONS(6802), 1, - anon_sym_RBRACE, - STATE(5599), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [346652] = 4, + ACTIONS(6879), 1, + anon_sym_PIPE, + STATE(5498), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340060] = 5, - ACTIONS(6705), 1, + ACTIONS(1954), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [346667] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6804), 1, + ACTIONS(6882), 1, anon_sym_COMMA, - ACTIONS(6806), 1, + ACTIONS(6884), 1, anon_sym_RBRACE, - STATE(5486), 1, + STATE(5577), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340077] = 4, - ACTIONS(6808), 1, - anon_sym_COMMA, - STATE(5392), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6463), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [340092] = 3, - ACTIONS(6810), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [340105] = 5, - ACTIONS(6709), 1, - anon_sym_PIPE, + [346684] = 5, ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6886), 1, anon_sym_EQ, - ACTIONS(6814), 1, + ACTIONS(6888), 1, sym__newline, - STATE(5417), 1, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340122] = 3, - STATE(5406), 1, + [346701] = 3, + STATE(5497), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [340135] = 5, - ACTIONS(6709), 1, + ACTIONS(2192), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(6816), 1, - anon_sym_EQ, - ACTIONS(6818), 1, - sym__newline, - STATE(5417), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [340152] = 5, - ACTIONS(6705), 1, + [346714] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6820), 1, + ACTIONS(6890), 1, anon_sym_COMMA, - ACTIONS(6822), 1, + ACTIONS(6892), 1, anon_sym_RBRACE, - STATE(5682), 1, + STATE(5677), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340169] = 5, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_RBRACE, - ACTIONS(6828), 1, - anon_sym_LF, - STATE(5426), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, + [346731] = 3, + STATE(5497), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340186] = 5, - ACTIONS(6705), 1, + ACTIONS(2220), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [346744] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6830), 1, + ACTIONS(6894), 1, anon_sym_COMMA, - ACTIONS(6832), 1, + ACTIONS(6896), 1, anon_sym_RBRACE, - STATE(5456), 1, + STATE(5675), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340203] = 5, - ACTIONS(6709), 1, + [346761] = 4, + ACTIONS(6729), 1, anon_sym_PIPE, - ACTIONS(6834), 1, - anon_sym_EQ, - ACTIONS(6836), 1, - sym__newline, - STATE(5417), 1, + STATE(5497), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340220] = 3, - ACTIONS(6838), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2528), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [340233] = 5, - ACTIONS(6705), 1, + ACTIONS(6898), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [346776] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6840), 1, + ACTIONS(6900), 1, anon_sym_COMMA, - ACTIONS(6842), 1, + ACTIONS(6902), 1, anon_sym_RBRACE, - STATE(5596), 1, + STATE(5625), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340250] = 5, - ACTIONS(6709), 1, - anon_sym_PIPE, - ACTIONS(6844), 1, - anon_sym_EQ, - ACTIONS(6846), 1, - sym__newline, - STATE(5417), 1, - aux_sym_union_type_repeat1, + [346793] = 4, + ACTIONS(6904), 1, + anon_sym_COMMA, + STATE(5491), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340267] = 5, - ACTIONS(5606), 1, - anon_sym_RBRACE, - ACTIONS(6848), 1, + ACTIONS(6550), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [346808] = 5, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(6850), 1, + ACTIONS(6908), 1, + anon_sym_RBRACE, + ACTIONS(6910), 1, anon_sym_LF, - STATE(5400), 1, + STATE(5468), 1, aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340284] = 5, - ACTIONS(6709), 1, + [346825] = 5, + ACTIONS(6812), 1, anon_sym_PIPE, - ACTIONS(6852), 1, + ACTIONS(6912), 1, anon_sym_EQ, - ACTIONS(6854), 1, + ACTIONS(6914), 1, sym__newline, - STATE(5417), 1, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340301] = 5, - ACTIONS(6705), 1, + [346842] = 5, + ACTIONS(6789), 1, anon_sym_LF, - ACTIONS(6856), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - ACTIONS(6858), 1, + ACTIONS(6918), 1, anon_sym_RBRACE, - STATE(5541), 1, + STATE(5730), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340318] = 4, - ACTIONS(6709), 1, - anon_sym_PIPE, - ACTIONS(6860), 1, - sym__newline, - STATE(5417), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [340332] = 4, - ACTIONS(2037), 1, - anon_sym_RPAREN, - ACTIONS(6862), 1, + [346859] = 5, + ACTIONS(6789), 1, + anon_sym_LF, + ACTIONS(6920), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + ACTIONS(6922), 1, + anon_sym_RBRACE, + STATE(5570), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340346] = 3, - ACTIONS(6864), 1, + [346876] = 3, + ACTIONS(6924), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [340358] = 4, - ACTIONS(6866), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(1973), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - STATE(5477), 1, + [346889] = 3, + STATE(5497), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340372] = 3, - ACTIONS(6870), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2528), 2, - anon_sym_RBRACE, + ACTIONS(1954), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - [340384] = 4, - ACTIONS(2507), 1, + [346902] = 5, + ACTIONS(6789), 1, + anon_sym_LF, + ACTIONS(6926), 1, + anon_sym_COMMA, + ACTIONS(6928), 1, anon_sym_RBRACE, - ACTIONS(6872), 1, - anon_sym_PIPE, - STATE(5434), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + STATE(5656), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [340398] = 3, - STATE(5477), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [346919] = 5, + ACTIONS(6789), 1, + anon_sym_LF, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(6932), 1, + anon_sym_RBRACE, + STATE(5613), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 2, + [346936] = 5, + ACTIONS(6789), 1, + anon_sym_LF, + ACTIONS(6934), 1, + anon_sym_COMMA, + ACTIONS(6936), 1, anon_sym_RBRACE, + STATE(5674), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [346953] = 5, + ACTIONS(6812), 1, anon_sym_PIPE, - [340410] = 4, - ACTIONS(6875), 1, - anon_sym_COMMA, - ACTIONS(6877), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + ACTIONS(6938), 1, + anon_sym_EQ, + ACTIONS(6940), 1, + sym__newline, + STATE(5474), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340424] = 4, - ACTIONS(6879), 1, + [346970] = 4, + ACTIONS(6942), 1, anon_sym_COMMA, - ACTIONS(6881), 1, + ACTIONS(6944), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340438] = 4, - ACTIONS(2079), 1, + [346984] = 4, + ACTIONS(2398), 1, anon_sym_RPAREN, - ACTIONS(6883), 1, + ACTIONS(6946), 1, anon_sym_COMMA, - STATE(5561), 1, + STATE(5652), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340452] = 3, - STATE(5581), 1, + [346998] = 4, + ACTIONS(6948), 1, + anon_sym_RBRACK, + ACTIONS(6950), 1, + anon_sym_PIPE, + STATE(5521), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347012] = 3, + STATE(5566), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 2, + ACTIONS(2392), 2, anon_sym_RBRACK, anon_sym_PIPE, - [340464] = 4, - ACTIONS(6651), 1, + [347024] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(6885), 1, + ACTIONS(6952), 1, anon_sym_COLON, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340478] = 4, - ACTIONS(6489), 1, + [347038] = 4, + ACTIONS(6584), 1, anon_sym_COMMA, - ACTIONS(6491), 1, + ACTIONS(6586), 1, anon_sym_RBRACE, - STATE(5682), 1, + STATE(5656), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340492] = 4, - ACTIONS(6887), 1, + [347052] = 4, + ACTIONS(5816), 1, + anon_sym_COMMA, + ACTIONS(5818), 1, anon_sym_RBRACK, - ACTIONS(6889), 1, - anon_sym_PIPE, - STATE(5581), 1, - aux_sym_union_type_repeat1, + STATE(5737), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340506] = 4, - ACTIONS(5234), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, - anon_sym_PIPE, - STATE(5477), 1, + [347066] = 3, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340520] = 4, - ACTIONS(6637), 1, + ACTIONS(2220), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [347078] = 4, + ACTIONS(6954), 1, anon_sym_COMMA, - ACTIONS(6891), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + ACTIONS(6956), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340534] = 4, - ACTIONS(5856), 1, - anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RPAREN, - STATE(5458), 1, - aux_sym_argument_list_repeat1, + [347092] = 4, + ACTIONS(6958), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340548] = 4, - ACTIONS(5768), 1, - anon_sym_COMMA, - ACTIONS(5770), 1, - anon_sym_RBRACK, - STATE(5436), 1, - aux_sym_subscript_repeat1, + [347106] = 4, + ACTIONS(5230), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340562] = 4, - ACTIONS(5828), 1, + [347120] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(5830), 1, + ACTIONS(6962), 1, anon_sym_RPAREN, - STATE(5438), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [340576] = 4, - ACTIONS(5788), 1, - anon_sym_COMMA, - ACTIONS(5790), 1, - anon_sym_RBRACK, - STATE(5462), 1, - aux_sym_subscript_repeat1, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340590] = 4, - ACTIONS(6889), 1, + [347134] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(6893), 1, - anon_sym_RBRACK, - STATE(5581), 1, + ACTIONS(6964), 1, + anon_sym_RBRACE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340604] = 4, - ACTIONS(5714), 1, + [347148] = 4, + ACTIONS(6966), 1, anon_sym_COMMA, - ACTIONS(5716), 1, + ACTIONS(6968), 1, anon_sym_RBRACK, - STATE(5484), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340618] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, + [347162] = 4, + ACTIONS(6970), 1, + anon_sym_COMMA, + ACTIONS(6972), 1, anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340632] = 4, - ACTIONS(6637), 1, + [347176] = 4, + ACTIONS(1662), 1, + anon_sym_RBRACE, + ACTIONS(6974), 1, anon_sym_COMMA, - ACTIONS(6897), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340646] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + [347190] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(6976), 1, + anon_sym_RBRACE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340660] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(6901), 1, - anon_sym_COLON, - STATE(5271), 1, + [347204] = 3, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340674] = 4, - ACTIONS(5158), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(2192), 2, + anon_sym_RBRACK, anon_sym_PIPE, - STATE(5477), 1, + [347216] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340688] = 4, - ACTIONS(1670), 1, - anon_sym_RBRACE, - ACTIONS(6903), 1, - anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + [347230] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(6980), 1, + anon_sym_RBRACK, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340702] = 4, - ACTIONS(1594), 1, - anon_sym_RBRACE, - ACTIONS(6905), 1, + [347244] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [340716] = 4, - ACTIONS(2159), 1, + ACTIONS(6982), 1, anon_sym_RPAREN, - ACTIONS(6907), 1, - anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340730] = 4, - ACTIONS(5298), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, - anon_sym_PIPE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + [347258] = 4, + ACTIONS(6038), 1, + anon_sym_RBRACK, + ACTIONS(6984), 1, + anon_sym_COMMA, + STATE(5539), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340744] = 4, - ACTIONS(6909), 1, + [347272] = 4, + ACTIONS(6987), 1, anon_sym_COMMA, - ACTIONS(6911), 1, + ACTIONS(6989), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340758] = 4, - ACTIONS(6913), 1, + [347286] = 4, + ACTIONS(6991), 1, anon_sym_COMMA, - ACTIONS(6916), 1, + ACTIONS(6993), 1, anon_sym_RBRACK, - STATE(5461), 1, - aux_sym_quant_target_repeat1, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340772] = 4, - ACTIONS(6918), 1, + [347300] = 4, + ACTIONS(6995), 1, anon_sym_COMMA, - ACTIONS(6920), 1, + ACTIONS(6997), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340786] = 4, - ACTIONS(6651), 1, + [347314] = 3, + ACTIONS(6999), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(6922), 1, - anon_sym_COLON, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [347326] = 4, + ACTIONS(2568), 1, + anon_sym_RPAREN, + ACTIONS(7001), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340800] = 4, - ACTIONS(6868), 1, + [347340] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(6924), 1, - anon_sym_RBRACE, - STATE(5477), 1, + ACTIONS(7003), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340814] = 4, - ACTIONS(6619), 1, - anon_sym_COMMA, - ACTIONS(6621), 1, + [347354] = 4, + ACTIONS(1668), 1, anon_sym_RBRACE, - STATE(5542), 1, + ACTIONS(7005), 1, + anon_sym_COMMA, + STATE(5575), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340828] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(6926), 1, - anon_sym_RBRACK, - STATE(5581), 1, + [347368] = 3, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340842] = 4, - ACTIONS(1990), 1, - anon_sym_RPAREN, - ACTIONS(6928), 1, + ACTIONS(2154), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [347380] = 4, + ACTIONS(5952), 1, anon_sym_COMMA, - STATE(5561), 1, + ACTIONS(5954), 1, + anon_sym_RPAREN, + STATE(5569), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340856] = 3, - ACTIONS(6930), 1, - anon_sym_DASH_GT, + [347394] = 4, + ACTIONS(2292), 1, + anon_sym_RPAREN, + ACTIONS(7007), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [340868] = 4, - ACTIONS(6932), 1, + [347408] = 4, + ACTIONS(5828), 1, anon_sym_COMMA, - ACTIONS(6934), 1, + ACTIONS(5830), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5582), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340882] = 4, - ACTIONS(6651), 1, + [347422] = 4, + ACTIONS(5414), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_COLON, - STATE(5271), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340896] = 4, - ACTIONS(6627), 1, + [347436] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6629), 1, - anon_sym_RBRACE, - STATE(5689), 1, - aux_sym_dictionary_repeat1, + ACTIONS(7009), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340910] = 3, - STATE(5477), 1, + [347450] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7011), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [340922] = 4, - ACTIONS(5806), 1, + [347464] = 4, + ACTIONS(7013), 1, anon_sym_COMMA, - ACTIONS(5808), 1, - anon_sym_RPAREN, - STATE(5671), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7015), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [340936] = 3, - STATE(5477), 1, - aux_sym_union_type_repeat1, + [347478] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6639), 1, + anon_sym_RBRACE, + STATE(5613), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347492] = 4, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(7017), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 2, + [347506] = 4, + ACTIONS(5392), 1, anon_sym_RBRACE, + ACTIONS(6960), 1, anon_sym_PIPE, - [340948] = 2, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6938), 3, - anon_sym_if, - anon_sym_for, + [347520] = 4, + ACTIONS(5780), 1, + anon_sym_COMMA, + ACTIONS(5782), 1, anon_sym_RBRACK, - [340958] = 3, - STATE(5477), 1, - aux_sym_union_type_repeat1, + STATE(5540), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [340970] = 3, - STATE(5434), 1, - aux_sym_union_type_repeat1, + [347534] = 4, + ACTIONS(5992), 1, + anon_sym_COMMA, + ACTIONS(5994), 1, + anon_sym_RPAREN, + STATE(5544), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [340982] = 2, + [347548] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6938), 3, - anon_sym_if, - anon_sym_for, - anon_sym_RBRACE, - [340992] = 4, - ACTIONS(6868), 1, + ACTIONS(6863), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [347558] = 4, + ACTIONS(5764), 1, + anon_sym_COMMA, + ACTIONS(5768), 1, + anon_sym_RBRACK, + STATE(5574), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347572] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(6940), 1, - anon_sym_RBRACE, - STATE(5477), 1, + ACTIONS(7019), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341006] = 4, - ACTIONS(6651), 1, + [347586] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(6942), 1, + ACTIONS(7021), 1, anon_sym_COLON, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341020] = 4, - ACTIONS(6598), 1, + [347600] = 4, + ACTIONS(7023), 1, anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_RBRACE, - STATE(5684), 1, - aux_sym_dictionary_repeat1, + ACTIONS(7025), 1, + anon_sym_RBRACK, + STATE(5685), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341034] = 4, - ACTIONS(1654), 1, - anon_sym_RBRACE, - ACTIONS(6944), 1, + [347614] = 4, + ACTIONS(2472), 1, + anon_sym_RPAREN, + ACTIONS(7027), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341048] = 4, - ACTIONS(5784), 1, - anon_sym_COMMA, - ACTIONS(5786), 1, + [347628] = 4, + ACTIONS(1954), 1, anon_sym_RBRACK, - STATE(5663), 1, - aux_sym_subscript_repeat1, + ACTIONS(7029), 1, + anon_sym_PIPE, + STATE(5566), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341062] = 4, - ACTIONS(6946), 1, - anon_sym_COMMA, - ACTIONS(6948), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + [347642] = 3, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341076] = 3, - ACTIONS(6950), 1, + ACTIONS(1954), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [347654] = 3, + ACTIONS(7032), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 2, + ACTIONS(1973), 2, anon_sym_RBRACK, anon_sym_PIPE, - [341088] = 4, - ACTIONS(1600), 1, + [347666] = 4, + ACTIONS(2464), 1, + anon_sym_RPAREN, + ACTIONS(7034), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347680] = 4, + ACTIONS(1676), 1, anon_sym_RBRACE, - ACTIONS(6952), 1, + ACTIONS(7036), 1, anon_sym_COMMA, - STATE(5657), 1, + STATE(5575), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341102] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(6954), 1, - anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + [347694] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341116] = 4, - ACTIONS(6889), 1, + ACTIONS(7038), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [347704] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(6956), 1, + ACTIONS(7040), 1, anon_sym_RBRACK, - STATE(5581), 1, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341130] = 4, - ACTIONS(6507), 1, + [347718] = 4, + ACTIONS(5996), 1, anon_sym_COMMA, - ACTIONS(6509), 1, - anon_sym_RBRACE, - STATE(5486), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [341144] = 4, - ACTIONS(2195), 1, + ACTIONS(5998), 1, anon_sym_RPAREN, - ACTIONS(6958), 1, - anon_sym_COMMA, - STATE(5561), 1, + STATE(5683), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341158] = 3, - STATE(5581), 1, - aux_sym_union_type_repeat1, + [347732] = 4, + ACTIONS(7042), 1, + anon_sym_COMMA, + ACTIONS(7044), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [341170] = 4, - ACTIONS(6611), 1, + [347746] = 4, + ACTIONS(7046), 1, anon_sym_COMMA, - ACTIONS(6613), 1, + ACTIONS(7049), 1, anon_sym_RBRACE, - STATE(5599), 1, + STATE(5575), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341184] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, + [347760] = 4, + ACTIONS(5234), 1, + anon_sym_RBRACE, ACTIONS(6960), 1, - anon_sym_COLON, - STATE(5271), 1, + anon_sym_PIPE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341198] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(6962), 1, + [347774] = 4, + ACTIONS(1672), 1, anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + ACTIONS(7051), 1, + anon_sym_COMMA, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341212] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(6964), 1, - anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [347788] = 3, + ACTIONS(7053), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [341226] = 4, - ACTIONS(5872), 1, + ACTIONS(6841), 2, anon_sym_COMMA, - ACTIONS(5874), 1, + anon_sym_RBRACE, + [347800] = 4, + ACTIONS(5988), 1, + anon_sym_COMMA, + ACTIONS(5990), 1, anon_sym_RPAREN, - STATE(5513), 1, + STATE(5695), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341240] = 4, - ACTIONS(6966), 1, + [347814] = 4, + ACTIONS(5800), 1, anon_sym_COMMA, - ACTIONS(6968), 1, + ACTIONS(5802), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5702), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341254] = 4, - ACTIONS(6651), 1, + [347828] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(6970), 1, + ACTIONS(7055), 1, anon_sym_COLON, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341268] = 4, - ACTIONS(5688), 1, + [347842] = 4, + ACTIONS(7057), 1, anon_sym_COMMA, - ACTIONS(5692), 1, + ACTIONS(7059), 1, anon_sym_RBRACK, - STATE(5518), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341282] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(6972), 1, - anon_sym_COLON, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [347856] = 4, + ACTIONS(6695), 1, + anon_sym_COMMA, + ACTIONS(6697), 1, + anon_sym_RBRACE, + STATE(5674), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341296] = 4, - ACTIONS(6974), 1, - anon_sym_COMMA, - ACTIONS(6976), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [347870] = 3, + ACTIONS(7063), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [341310] = 4, - ACTIONS(6978), 1, + ACTIONS(7061), 2, anon_sym_COMMA, - ACTIONS(6980), 1, - anon_sym_RBRACK, - STATE(5461), 1, - aux_sym_quant_target_repeat1, + anon_sym_RBRACE, + [347882] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7065), 1, + anon_sym_RBRACE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341324] = 4, - ACTIONS(6982), 1, - anon_sym_COMMA, - ACTIONS(6984), 1, + [347896] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(7067), 1, anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341338] = 4, - ACTIONS(2083), 1, - anon_sym_RPAREN, - ACTIONS(6986), 1, - anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + [347910] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7069), 1, + anon_sym_RBRACE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341352] = 4, - ACTIONS(6637), 1, + [347924] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6988), 1, + ACTIONS(7071), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341366] = 4, - ACTIONS(6990), 1, - anon_sym_COMMA, - ACTIONS(6992), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [341380] = 4, - ACTIONS(5324), 1, + [347938] = 4, + ACTIONS(5344), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(6960), 1, anon_sym_PIPE, - STATE(5477), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341394] = 4, - ACTIONS(6637), 1, + [347952] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(6994), 1, + ACTIONS(7073), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341408] = 4, - ACTIONS(5238), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + [347966] = 4, + ACTIONS(5912), 1, + anon_sym_COMMA, + ACTIONS(5914), 1, + anon_sym_RPAREN, + STATE(5648), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347980] = 4, + ACTIONS(6812), 1, anon_sym_PIPE, - STATE(5477), 1, + ACTIONS(7075), 1, + sym__newline, + STATE(5474), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341422] = 4, - ACTIONS(6541), 1, - anon_sym_COMMA, - ACTIONS(6543), 1, + [347994] = 4, + ACTIONS(5388), 1, anon_sym_RBRACE, - STATE(5555), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341436] = 4, - ACTIONS(2183), 1, + [348008] = 4, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(7077), 1, anon_sym_RPAREN, - ACTIONS(6996), 1, + STATE(5788), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348022] = 4, + ACTIONS(1712), 1, + anon_sym_RBRACE, + ACTIONS(7079), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341450] = 4, - ACTIONS(5706), 1, + [348036] = 4, + ACTIONS(5868), 1, anon_sym_COMMA, - ACTIONS(5708), 1, + ACTIONS(5870), 1, anon_sym_RBRACK, - STATE(5497), 1, + STATE(5711), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341464] = 4, - ACTIONS(2353), 1, - anon_sym_RPAREN, - ACTIONS(6998), 1, + [348050] = 4, + ACTIONS(1684), 1, + anon_sym_RBRACE, + ACTIONS(7081), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341478] = 4, - ACTIONS(5894), 1, - anon_sym_COMMA, - ACTIONS(5896), 1, - anon_sym_RPAREN, - STATE(5504), 1, - aux_sym_argument_list_repeat1, + [348064] = 4, + ACTIONS(5348), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341492] = 4, - ACTIONS(7000), 1, - anon_sym_COMMA, - ACTIONS(7002), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + [348078] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7083), 1, + anon_sym_COLON, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341506] = 4, - ACTIONS(6651), 1, + [348092] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7004), 1, + ACTIONS(7085), 1, anon_sym_COLON, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341520] = 4, - ACTIONS(7006), 1, - anon_sym_COMMA, - ACTIONS(7008), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + [348106] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341534] = 4, - ACTIONS(7010), 1, - anon_sym_COMMA, - ACTIONS(7012), 1, + ACTIONS(7087), 3, + anon_sym_if, + anon_sym_for, anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [341548] = 4, - ACTIONS(6889), 1, + [348116] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7014), 1, - anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [341562] = 3, - STATE(5581), 1, + ACTIONS(7089), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [341574] = 4, - ACTIONS(6889), 1, + [348130] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(7016), 1, + ACTIONS(7091), 1, anon_sym_RBRACK, - STATE(5581), 1, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341588] = 4, - ACTIONS(6868), 1, + [348144] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(7093), 1, anon_sym_RBRACE, - STATE(5477), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341602] = 4, - ACTIONS(6551), 1, + [348158] = 4, + ACTIONS(7095), 1, anon_sym_COMMA, - ACTIONS(6553), 1, - anon_sym_RBRACE, - STATE(5596), 1, - aux_sym_dictionary_repeat1, + ACTIONS(7097), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341616] = 4, - ACTIONS(1686), 1, - anon_sym_RBRACE, - ACTIONS(7020), 1, + [348172] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + ACTIONS(7099), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341630] = 4, - ACTIONS(7022), 1, + [348186] = 4, + ACTIONS(5872), 1, anon_sym_COMMA, - ACTIONS(7024), 1, + ACTIONS(5874), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5542), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341644] = 4, - ACTIONS(6519), 1, + [348200] = 4, + ACTIONS(5920), 1, anon_sym_COMMA, - ACTIONS(6521), 1, - anon_sym_RBRACE, - STATE(5482), 1, - aux_sym_dictionary_repeat1, + ACTIONS(5922), 1, + anon_sym_RPAREN, + STATE(5565), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341658] = 4, - ACTIONS(5292), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + [348214] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - STATE(5477), 1, + ACTIONS(7101), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341672] = 4, - ACTIONS(2223), 1, - anon_sym_RPAREN, - ACTIONS(7026), 1, - anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + [348228] = 3, + STATE(5709), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341686] = 4, - ACTIONS(6637), 1, + ACTIONS(2392), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [348240] = 4, + ACTIONS(5916), 1, anon_sym_COMMA, - ACTIONS(7028), 1, + ACTIONS(5918), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + STATE(5633), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341700] = 3, - ACTIONS(7030), 1, - anon_sym_DASH_GT, + [348254] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7103), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 2, + [348268] = 4, + ACTIONS(1702), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [341712] = 4, - ACTIONS(6501), 1, + ACTIONS(7105), 1, anon_sym_COMMA, - ACTIONS(6503), 1, - anon_sym_RBRACE, - STATE(5632), 1, + STATE(5575), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341726] = 4, - ACTIONS(6533), 1, + [348282] = 4, + ACTIONS(5856), 1, anon_sym_COMMA, - ACTIONS(6535), 1, + ACTIONS(5858), 1, + anon_sym_RBRACK, + STATE(5526), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348296] = 4, + ACTIONS(5300), 1, anon_sym_RBRACE, - STATE(5457), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341740] = 4, - ACTIONS(5188), 1, + [348310] = 4, + ACTIONS(5304), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(6960), 1, anon_sym_PIPE, - STATE(5477), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341754] = 4, - ACTIONS(6651), 1, + [348324] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7032), 1, + ACTIONS(7107), 1, anon_sym_COLON, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341768] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(7034), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + [348338] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7109), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341782] = 4, - ACTIONS(5780), 1, + [348352] = 4, + ACTIONS(7111), 1, anon_sym_COMMA, - ACTIONS(5782), 1, + ACTIONS(7114), 1, anon_sym_RBRACK, - STATE(5517), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341796] = 4, - ACTIONS(5852), 1, + [348366] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(5854), 1, + ACTIONS(7116), 1, anon_sym_RPAREN, - STATE(5528), 1, - aux_sym_argument_list_repeat1, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341810] = 4, - ACTIONS(2507), 1, - anon_sym_RBRACK, - ACTIONS(7036), 1, + [348380] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - STATE(5538), 1, + ACTIONS(7118), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341824] = 4, - ACTIONS(6623), 1, - anon_sym_COMMA, - ACTIONS(6625), 1, - anon_sym_RBRACE, - STATE(5567), 1, - aux_sym_dictionary_repeat1, + [348394] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_RBRACK, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341838] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7039), 1, - anon_sym_RBRACK, - STATE(5581), 1, + [348408] = 3, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341852] = 4, - ACTIONS(1646), 1, + ACTIONS(1954), 2, anon_sym_RBRACE, - ACTIONS(7041), 1, - anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + anon_sym_PIPE, + [348420] = 3, + ACTIONS(7122), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341866] = 4, - ACTIONS(1618), 1, + ACTIONS(2033), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [348432] = 4, + ACTIONS(1640), 1, anon_sym_RBRACE, - ACTIONS(7043), 1, + ACTIONS(7124), 1, anon_sym_COMMA, - STATE(5657), 1, + STATE(5575), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341880] = 4, - ACTIONS(6889), 1, + [348446] = 4, + ACTIONS(5382), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7045), 1, - anon_sym_RBRACK, - STATE(5581), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341894] = 4, - ACTIONS(5764), 1, + [348460] = 4, + ACTIONS(6651), 1, anon_sym_COMMA, - ACTIONS(5766), 1, - anon_sym_RBRACK, - STATE(5503), 1, - aux_sym_subscript_repeat1, + ACTIONS(6653), 1, + anon_sym_RBRACE, + STATE(5577), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341908] = 4, - ACTIONS(5882), 1, - anon_sym_COMMA, - ACTIONS(5884), 1, - anon_sym_RPAREN, - STATE(5553), 1, - aux_sym_argument_list_repeat1, + [348474] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7126), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341922] = 4, - ACTIONS(5742), 1, + [348488] = 3, + STATE(5610), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2154), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [348500] = 4, + ACTIONS(7128), 1, anon_sym_COMMA, - ACTIONS(5744), 1, + ACTIONS(7130), 1, anon_sym_RBRACK, - STATE(5556), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341936] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(7047), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + [348514] = 3, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341950] = 4, - ACTIONS(6513), 1, - anon_sym_COMMA, - ACTIONS(6515), 1, + ACTIONS(2220), 2, anon_sym_RBRACE, - STATE(5619), 1, - aux_sym_dictionary_repeat1, + anon_sym_PIPE, + [348526] = 3, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341964] = 4, - ACTIONS(5164), 1, + ACTIONS(2192), 2, anon_sym_RBRACE, - ACTIONS(6868), 1, anon_sym_PIPE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + [348538] = 4, + ACTIONS(2456), 1, + anon_sym_RPAREN, + ACTIONS(7132), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341978] = 4, - ACTIONS(7049), 1, - anon_sym_COMMA, - ACTIONS(7052), 1, + [348552] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(7134), 1, anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [341992] = 4, - ACTIONS(5912), 1, - anon_sym_COMMA, - ACTIONS(5914), 1, - anon_sym_RPAREN, - STATE(5511), 1, - aux_sym_argument_list_repeat1, + [348566] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7136), 1, + anon_sym_COLON, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342006] = 4, - ACTIONS(6651), 1, + [348580] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7054), 1, - anon_sym_COLON, - STATE(5271), 1, + ACTIONS(7138), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342020] = 4, - ACTIONS(2263), 1, - anon_sym_RPAREN, - ACTIONS(7056), 1, - anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + [348594] = 4, + ACTIONS(6544), 1, + sym_identifier, + STATE(5823), 1, + sym_dotted_name, + STATE(6307), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348608] = 4, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOT, + STATE(5717), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342034] = 4, - ACTIONS(7058), 1, + [348622] = 4, + ACTIONS(7144), 1, anon_sym_COMMA, - ACTIONS(7060), 1, + ACTIONS(7146), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342048] = 4, - ACTIONS(1678), 1, - anon_sym_RBRACE, - ACTIONS(7062), 1, + [348636] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7148), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348650] = 4, + ACTIONS(5948), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + ACTIONS(5950), 1, + anon_sym_RPAREN, + STATE(5687), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342062] = 4, - ACTIONS(7064), 1, + [348664] = 4, + ACTIONS(5776), 1, anon_sym_COMMA, - ACTIONS(7066), 1, + ACTIONS(5778), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5738), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342076] = 4, - ACTIONS(6868), 1, + [348678] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7068), 1, + ACTIONS(7150), 1, anon_sym_RBRACE, - STATE(5477), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342090] = 4, - ACTIONS(7070), 1, + [348692] = 3, + ACTIONS(7152), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2033), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [348704] = 4, + ACTIONS(7154), 1, anon_sym_COMMA, - ACTIONS(7072), 1, + ACTIONS(7156), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342104] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + [348718] = 4, + ACTIONS(7158), 1, + anon_sym_COMMA, + ACTIONS(7160), 1, anon_sym_RBRACK, - STATE(5581), 1, + STATE(5619), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348732] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7162), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342118] = 4, - ACTIONS(1642), 1, - anon_sym_RBRACE, - ACTIONS(7076), 1, + [348746] = 4, + ACTIONS(2562), 1, + anon_sym_RPAREN, + ACTIONS(7164), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342132] = 4, - ACTIONS(5918), 1, + [348760] = 4, + ACTIONS(2608), 1, anon_sym_RPAREN, - ACTIONS(7078), 1, + ACTIONS(7166), 1, anon_sym_COMMA, - STATE(5561), 1, + STATE(5652), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342146] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7081), 1, - anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, + [348774] = 3, + ACTIONS(7168), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342160] = 4, - ACTIONS(6889), 1, + ACTIONS(1973), 2, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(7083), 1, - anon_sym_RBRACK, - STATE(5581), 1, + [348786] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7170), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342174] = 4, - ACTIONS(6633), 1, + [348800] = 4, + ACTIONS(6056), 1, + anon_sym_RPAREN, + ACTIONS(7172), 1, anon_sym_COMMA, - ACTIONS(6635), 1, - anon_sym_RBRACE, - STATE(5560), 1, - aux_sym_dictionary_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342188] = 2, + [348814] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7175), 1, + anon_sym_COLON, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5678), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [342198] = 4, - ACTIONS(6455), 1, - sym_identifier, - STATE(5752), 1, - sym_dotted_name, - STATE(5821), 1, - sym_aliased_import, + [348828] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7177), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342212] = 4, - ACTIONS(1650), 1, - anon_sym_RBRACE, - ACTIONS(7085), 1, + [348842] = 4, + ACTIONS(5980), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + ACTIONS(5982), 1, + anon_sym_RPAREN, + STATE(5692), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342226] = 4, - ACTIONS(6537), 1, - anon_sym_COMMA, - ACTIONS(6539), 1, + [348856] = 4, + ACTIONS(1738), 1, anon_sym_RBRACE, - STATE(5524), 1, + ACTIONS(7179), 1, + anon_sym_COMMA, + STATE(5575), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342240] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(7087), 1, + [348870] = 4, + ACTIONS(5314), 1, anon_sym_RBRACE, - STATE(5477), 1, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342254] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7089), 1, - anon_sym_COLON, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [348884] = 4, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(7181), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342268] = 3, - ACTIONS(7091), 1, + [348898] = 4, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(7183), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348912] = 3, + ACTIONS(7185), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 2, - anon_sym_RBRACK, + ACTIONS(2154), 2, + anon_sym_RBRACE, anon_sym_PIPE, - [342280] = 4, - ACTIONS(5868), 1, + [348924] = 4, + ACTIONS(7187), 1, anon_sym_COMMA, - ACTIONS(5870), 1, - anon_sym_RPAREN, - STATE(5430), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7189), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342294] = 4, - ACTIONS(7093), 1, - anon_sym_COMMA, - ACTIONS(7095), 1, + [348938] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(7191), 1, anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342308] = 4, - ACTIONS(7097), 1, - sym_identifier, - ACTIONS(7099), 1, - anon_sym_DOT, - STATE(5591), 1, - aux_sym_import_prefix_repeat1, + [348952] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7193), 1, + anon_sym_RBRACE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342322] = 4, - ACTIONS(7101), 1, + [348966] = 4, + ACTIONS(5832), 1, anon_sym_COMMA, - ACTIONS(7103), 1, + ACTIONS(5834), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5532), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342336] = 4, - ACTIONS(5820), 1, + [348980] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7195), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348994] = 4, + ACTIONS(5770), 1, anon_sym_COMMA, - ACTIONS(5822), 1, - anon_sym_RPAREN, - STATE(5604), 1, - aux_sym_argument_list_repeat1, + ACTIONS(5772), 1, + anon_sym_RBRACK, + STATE(5645), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342350] = 4, - ACTIONS(2103), 1, - anon_sym_RPAREN, - ACTIONS(7105), 1, + [349008] = 4, + ACTIONS(6000), 1, anon_sym_COMMA, - STATE(5561), 1, + ACTIONS(6002), 1, + anon_sym_RPAREN, + STATE(5649), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342364] = 4, - ACTIONS(5816), 1, + [349022] = 4, + ACTIONS(5884), 1, anon_sym_COMMA, - ACTIONS(5818), 1, + ACTIONS(5886), 1, anon_sym_RPAREN, - STATE(5611), 1, + STATE(5549), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342378] = 4, - ACTIONS(5286), 1, + [349036] = 4, + ACTIONS(5266), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(6960), 1, anon_sym_PIPE, - STATE(5477), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342392] = 4, - ACTIONS(6637), 1, + [349050] = 4, + ACTIONS(5784), 1, anon_sym_COMMA, - ACTIONS(7107), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + ACTIONS(5786), 1, + anon_sym_RBRACK, + STATE(5719), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342406] = 3, - STATE(5538), 1, + [349064] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7197), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 2, - anon_sym_RBRACK, + [349078] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - [342418] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(7109), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [342432] = 4, - ACTIONS(5774), 1, - anon_sym_COMMA, - ACTIONS(5776), 1, - anon_sym_RBRACK, - STATE(5558), 1, - aux_sym_subscript_repeat1, + ACTIONS(7199), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342446] = 4, - ACTIONS(5702), 1, - anon_sym_COMMA, - ACTIONS(5704), 1, + [349092] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(7201), 1, anon_sym_RBRACK, - STATE(5573), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [342460] = 4, - ACTIONS(5898), 1, - anon_sym_COMMA, - ACTIONS(5900), 1, - anon_sym_RPAREN, - STATE(5577), 1, - aux_sym_argument_list_repeat1, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342474] = 4, - ACTIONS(5630), 1, + [349106] = 4, + ACTIONS(1710), 1, + anon_sym_RBRACE, + ACTIONS(7203), 1, anon_sym_COMMA, - ACTIONS(7111), 1, - anon_sym_RBRACK, - STATE(5621), 1, - aux_sym__collection_elements_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342488] = 4, - ACTIONS(6637), 1, + [349120] = 4, + ACTIONS(1660), 1, + anon_sym_RBRACE, + ACTIONS(7205), 1, anon_sym_COMMA, - ACTIONS(7113), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342502] = 4, - ACTIONS(6651), 1, + [349134] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7115), 1, + ACTIONS(7207), 1, anon_sym_COLON, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342516] = 4, - ACTIONS(5720), 1, + [349148] = 4, + ACTIONS(1742), 1, + anon_sym_RBRACE, + ACTIONS(7209), 1, anon_sym_COMMA, - ACTIONS(5722), 1, - anon_sym_RBRACK, - STATE(5620), 1, - aux_sym_subscript_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342530] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(7117), 1, + [349162] = 4, + ACTIONS(6574), 1, + anon_sym_COMMA, + ACTIONS(6576), 1, anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + STATE(5730), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342544] = 4, - ACTIONS(7119), 1, - sym_identifier, - ACTIONS(7121), 1, - anon_sym_DOT, - STATE(5591), 1, - aux_sym_import_prefix_repeat1, + [349176] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7211), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342558] = 4, - ACTIONS(6756), 1, - anon_sym_RPAREN, - ACTIONS(7124), 1, - anon_sym_COMMA, - STATE(5592), 1, - aux_sym_function_type_repeat1, + [349190] = 4, + ACTIONS(7213), 1, + anon_sym_COLON, + ACTIONS(7215), 1, + anon_sym_for, + ACTIONS(7217), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342572] = 4, - ACTIONS(5630), 1, + [349204] = 4, + ACTIONS(6633), 1, anon_sym_COMMA, - ACTIONS(5634), 1, - anon_sym_RBRACK, - STATE(5586), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(6635), 1, + anon_sym_RBRACE, + STATE(5597), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342586] = 4, - ACTIONS(6889), 1, + [349218] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7127), 1, - anon_sym_RBRACK, - STATE(5581), 1, + ACTIONS(7219), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342600] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(7129), 1, + [349232] = 4, + ACTIONS(2246), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [342614] = 4, - ACTIONS(1624), 1, - anon_sym_RBRACE, - ACTIONS(7131), 1, + ACTIONS(7221), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342628] = 4, - ACTIONS(5208), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + [349246] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - STATE(5477), 1, + ACTIONS(7223), 1, + anon_sym_LBRACE, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342642] = 4, - ACTIONS(6637), 1, + [349260] = 4, + ACTIONS(7225), 1, + anon_sym_COMMA, + ACTIONS(7228), 1, + anon_sym_RBRACK, + STATE(5685), 1, + aux_sym_quant_target_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349274] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(7230), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342656] = 4, - ACTIONS(1584), 1, - anon_sym_RBRACE, - ACTIONS(7135), 1, + [349288] = 4, + ACTIONS(2618), 1, + anon_sym_RPAREN, + ACTIONS(7232), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342670] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7137), 1, - anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, + [349302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342684] = 4, - ACTIONS(5154), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(5796), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [349312] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - STATE(5477), 1, + ACTIONS(7234), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342698] = 4, - ACTIONS(5886), 1, - anon_sym_COMMA, - ACTIONS(5888), 1, - anon_sym_RPAREN, - STATE(5612), 1, - aux_sym_argument_list_repeat1, + [349326] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7236), 1, + anon_sym_LBRACE, + STATE(5347), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342712] = 4, - ACTIONS(5694), 1, - anon_sym_COMMA, - ACTIONS(5696), 1, - anon_sym_RBRACK, - STATE(5617), 1, - aux_sym_subscript_repeat1, + [349340] = 4, + ACTIONS(5416), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342726] = 4, - ACTIONS(2061), 1, + [349354] = 4, + ACTIONS(2490), 1, anon_sym_RPAREN, - ACTIONS(7139), 1, + ACTIONS(7238), 1, anon_sym_COMMA, - STATE(5561), 1, + STATE(5652), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342740] = 3, - ACTIONS(7143), 1, - anon_sym_LF, - ACTIONS(5), 2, + [349368] = 4, + ACTIONS(6701), 1, + anon_sym_COMMA, + ACTIONS(6703), 1, + anon_sym_RBRACE, + STATE(5570), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7141), 2, + [349382] = 4, + ACTIONS(6679), 1, anon_sym_COMMA, + ACTIONS(6681), 1, anon_sym_RBRACE, - [342752] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7145), 1, - anon_sym_COLON, - STATE(5271), 1, - aux_sym_union_type_repeat1, + STATE(5677), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342766] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(7147), 1, + [349396] = 4, + ACTIONS(2338), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + ACTIONS(7240), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342780] = 4, - ACTIONS(7149), 1, + [349410] = 4, + ACTIONS(7242), 1, anon_sym_COMMA, - ACTIONS(7151), 1, + ACTIONS(7244), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342794] = 4, - ACTIONS(6637), 1, + [349424] = 4, + ACTIONS(7246), 1, anon_sym_COMMA, - ACTIONS(7153), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + ACTIONS(7248), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342808] = 4, - ACTIONS(5156), 1, + [349438] = 4, + ACTIONS(1688), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, - anon_sym_PIPE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + ACTIONS(7250), 1, + anon_sym_COMMA, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342822] = 4, - ACTIONS(2117), 1, - anon_sym_RPAREN, - ACTIONS(7155), 1, + [349452] = 4, + ACTIONS(1714), 1, + anon_sym_RBRACE, + ACTIONS(7252), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342836] = 4, - ACTIONS(2209), 1, - anon_sym_RPAREN, - ACTIONS(7157), 1, + [349466] = 4, + ACTIONS(7254), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7256), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342850] = 4, - ACTIONS(7159), 1, + [349480] = 4, + ACTIONS(7258), 1, anon_sym_COMMA, - ACTIONS(7161), 1, + ACTIONS(7260), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342864] = 4, - ACTIONS(7163), 1, + [349494] = 4, + ACTIONS(7262), 1, anon_sym_COMMA, - ACTIONS(7165), 1, + ACTIONS(7264), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342878] = 4, - ACTIONS(6637), 1, + [349508] = 4, + ACTIONS(6645), 1, anon_sym_COMMA, - ACTIONS(7167), 1, + ACTIONS(6647), 1, + anon_sym_RBRACE, + STATE(5675), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349522] = 4, + ACTIONS(2410), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + ACTIONS(7266), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342892] = 4, - ACTIONS(6868), 1, + [349536] = 3, + ACTIONS(5796), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5798), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [349548] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7268), 1, anon_sym_RBRACE, - STATE(5477), 1, + STATE(5610), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349562] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7270), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342906] = 4, - ACTIONS(7171), 1, + [349576] = 4, + ACTIONS(6619), 1, anon_sym_COMMA, - ACTIONS(7173), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + ACTIONS(6621), 1, + anon_sym_RBRACE, + STATE(5625), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342920] = 4, - ACTIONS(6651), 1, + [349590] = 4, + ACTIONS(1954), 1, + anon_sym_RBRACE, + ACTIONS(7272), 1, anon_sym_PIPE, - ACTIONS(7175), 1, - anon_sym_COLON, - STATE(5271), 1, + STATE(5709), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342934] = 4, - ACTIONS(1612), 1, + [349604] = 4, + ACTIONS(5360), 1, anon_sym_RBRACE, - ACTIONS(7177), 1, - anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342948] = 4, - ACTIONS(7179), 1, + [349618] = 4, + ACTIONS(7275), 1, anon_sym_COMMA, - ACTIONS(7181), 1, + ACTIONS(7277), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342962] = 4, - ACTIONS(5972), 1, - anon_sym_RBRACK, - ACTIONS(7183), 1, + [349632] = 4, + ACTIONS(5714), 1, anon_sym_COMMA, - STATE(5621), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [342976] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(7279), 1, anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, + STATE(5539), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [342990] = 4, - ACTIONS(6567), 1, + [349646] = 4, + ACTIONS(6641), 1, anon_sym_COMMA, - ACTIONS(6569), 1, + ACTIONS(6643), 1, anon_sym_RBRACE, - STATE(5541), 1, + STATE(5698), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343004] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_COLON, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [349660] = 4, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(7281), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343018] = 4, - ACTIONS(6637), 1, + [349674] = 4, + ACTIONS(5956), 1, anon_sym_COMMA, - ACTIONS(7190), 1, + ACTIONS(5958), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + STATE(5519), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343032] = 4, - ACTIONS(6868), 1, + [349688] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7192), 1, - anon_sym_RBRACE, - STATE(5477), 1, + ACTIONS(7283), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343046] = 4, - ACTIONS(7194), 1, + [349702] = 4, + ACTIONS(7285), 1, + sym_identifier, + ACTIONS(7287), 1, + anon_sym_DOT, + STATE(5717), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349716] = 4, + ACTIONS(7290), 1, anon_sym_COMMA, - ACTIONS(7196), 1, + ACTIONS(7292), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343060] = 4, - ACTIONS(7198), 1, + [349730] = 4, + ACTIONS(7294), 1, anon_sym_COMMA, - ACTIONS(7200), 1, + ACTIONS(7296), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343074] = 3, - ACTIONS(7204), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7202), 2, - anon_sym_COMMA, + [349744] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7298), 1, anon_sym_RBRACE, - [343086] = 3, - STATE(5581), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [343098] = 4, - ACTIONS(6651), 1, + [349758] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7206), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7300), 1, + anon_sym_RBRACE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343112] = 4, - ACTIONS(1662), 1, - anon_sym_RBRACE, - ACTIONS(7208), 1, - anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + [349772] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343126] = 4, - ACTIONS(6651), 1, + ACTIONS(7087), 3, + anon_sym_if, + anon_sym_for, + anon_sym_RBRACE, + [349782] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7210), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7302), 1, + anon_sym_RBRACE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343140] = 4, - ACTIONS(6868), 1, + [349796] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(7212), 1, - anon_sym_RBRACE, - STATE(5477), 1, + ACTIONS(7304), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343154] = 4, - ACTIONS(6651), 1, + [349810] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7214), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7306), 1, + anon_sym_COLON, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343168] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, + [349824] = 4, + ACTIONS(1722), 1, anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + ACTIONS(7308), 1, + anon_sym_COMMA, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343182] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7218), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [349838] = 4, + ACTIONS(7310), 1, + anon_sym_COMMA, + ACTIONS(7312), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343196] = 4, - ACTIONS(4712), 1, - anon_sym_LPAREN, - ACTIONS(7220), 1, - anon_sym_RPAREN, - STATE(5830), 1, - sym_argument_list, + [349852] = 4, + ACTIONS(6715), 1, + anon_sym_COMMA, + ACTIONS(6717), 1, + anon_sym_RBRACE, + STATE(5595), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343210] = 4, - ACTIONS(6651), 1, + [349866] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7314), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343224] = 4, - ACTIONS(7224), 1, + [349880] = 4, + ACTIONS(1744), 1, + anon_sym_RBRACE, + ACTIONS(7316), 1, + anon_sym_COMMA, + STATE(5575), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349894] = 4, + ACTIONS(7318), 1, anon_sym_COMMA, - ACTIONS(7226), 1, + ACTIONS(7320), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343238] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [349908] = 4, + ACTIONS(7322), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343252] = 2, + [349922] = 4, + ACTIONS(6607), 1, + anon_sym_COMMA, + ACTIONS(6609), 1, + anon_sym_RBRACE, + STATE(5546), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6746), 3, + [349936] = 4, + ACTIONS(2606), 1, + anon_sym_RPAREN, + ACTIONS(7326), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [343262] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343276] = 3, - ACTIONS(5678), 1, - anon_sym_LF, - ACTIONS(5), 2, + [349950] = 4, + ACTIONS(6558), 1, + anon_sym_COMMA, + ACTIONS(6562), 1, + anon_sym_RBRACE, + STATE(5785), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5680), 2, - anon_sym_COMMA, + [349964] = 4, + ACTIONS(5284), 1, anon_sym_RBRACE, - [343288] = 4, - ACTIONS(6651), 1, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7232), 1, - anon_sym_LBRACE, - STATE(5271), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343302] = 4, - ACTIONS(7234), 1, + [349978] = 4, + ACTIONS(7328), 1, anon_sym_COMMA, - ACTIONS(7236), 1, + ACTIONS(7330), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343316] = 4, - ACTIONS(6651), 1, + [349992] = 4, + ACTIONS(7332), 1, + anon_sym_COMMA, + ACTIONS(7334), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350006] = 4, + ACTIONS(6725), 1, + anon_sym_COMMA, + ACTIONS(7336), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350020] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7238), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7338), 1, + anon_sym_RBRACE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343330] = 4, - ACTIONS(6651), 1, + [350034] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(7240), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7340), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343344] = 4, - ACTIONS(6637), 1, - anon_sym_COMMA, - ACTIONS(7242), 1, + [350048] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7342), 1, + anon_sym_RBRACE, + STATE(5610), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350062] = 4, + ACTIONS(6613), 1, + anon_sym_PIPE, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(5347), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350076] = 4, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(7346), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + STATE(6252), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343358] = 2, + [350090] = 4, + ACTIONS(5812), 1, + anon_sym_COMMA, + ACTIONS(5814), 1, + anon_sym_RBRACK, + STATE(5696), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7204), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [343368] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [350104] = 4, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_RPAREN, + STATE(5762), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343382] = 4, - ACTIONS(7246), 1, + [350118] = 4, + ACTIONS(5842), 1, anon_sym_COMMA, - ACTIONS(7248), 1, + ACTIONS(5844), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5531), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343396] = 4, - ACTIONS(5906), 1, + [350132] = 4, + ACTIONS(7348), 1, anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RPAREN, - STATE(5467), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7350), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343410] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7250), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [350146] = 4, + ACTIONS(5820), 1, + anon_sym_COMMA, + ACTIONS(5822), 1, + anon_sym_RBRACK, + STATE(5764), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343424] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7252), 1, + [350160] = 4, + ACTIONS(7352), 1, + anon_sym_COMMA, + ACTIONS(7354), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350174] = 4, + ACTIONS(7356), 1, anon_sym_COLON, - STATE(5271), 1, - aux_sym_union_type_repeat1, + ACTIONS(7358), 1, + anon_sym_for, + ACTIONS(7360), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343438] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [350188] = 4, + ACTIONS(5944), 1, + anon_sym_COMMA, + ACTIONS(5946), 1, + anon_sym_RPAREN, + STATE(5787), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343452] = 4, - ACTIONS(7256), 1, + [350202] = 4, + ACTIONS(2492), 1, + anon_sym_RPAREN, + ACTIONS(7362), 1, anon_sym_COMMA, - ACTIONS(7259), 1, - anon_sym_RBRACE, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343466] = 4, - ACTIONS(6651), 1, + [350216] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7261), 1, - anon_sym_LBRACE, - STATE(5271), 1, + ACTIONS(7364), 1, + anon_sym_EQ, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343480] = 4, - ACTIONS(5890), 1, + [350230] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(5892), 1, + ACTIONS(7366), 1, anon_sym_RPAREN, - STATE(5679), 1, - aux_sym_argument_list_repeat1, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343494] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(7263), 1, + [350244] = 4, + ACTIONS(5342), 1, anon_sym_RBRACE, - STATE(5477), 1, + ACTIONS(6960), 1, + anon_sym_PIPE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343508] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7265), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [350258] = 3, + ACTIONS(7038), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [343522] = 4, - ACTIONS(7267), 1, + ACTIONS(7368), 2, anon_sym_COMMA, - ACTIONS(7269), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + anon_sym_RBRACE, + [350270] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_RBRACE, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343536] = 4, - ACTIONS(7271), 1, + [350284] = 4, + ACTIONS(6578), 1, anon_sym_COMMA, - ACTIONS(7273), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + ACTIONS(6580), 1, + anon_sym_RBRACE, + STATE(5726), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343550] = 4, - ACTIONS(7275), 1, + [350298] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(7277), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + ACTIONS(7372), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343564] = 4, - ACTIONS(7279), 1, + [350312] = 4, + ACTIONS(5972), 1, anon_sym_COMMA, - ACTIONS(7281), 1, - anon_sym_RBRACK, - STATE(5550), 1, - aux_sym_subscript_repeat1, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(5704), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343578] = 4, - ACTIONS(2107), 1, + [350326] = 4, + ACTIONS(2334), 1, anon_sym_RPAREN, - ACTIONS(7283), 1, + ACTIONS(7374), 1, anon_sym_COMMA, - STATE(5561), 1, + STATE(5652), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343592] = 3, - ACTIONS(7285), 1, - anon_sym_LF, - ACTIONS(5), 2, + [350340] = 4, + ACTIONS(7376), 1, + anon_sym_COMMA, + ACTIONS(7378), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6772), 2, + [350354] = 4, + ACTIONS(7380), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [343604] = 4, - ACTIONS(5204), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, - anon_sym_PIPE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + ACTIONS(7382), 1, + anon_sym_RBRACK, + STATE(5619), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343618] = 4, - ACTIONS(6637), 1, + [350368] = 4, + ACTIONS(6719), 1, anon_sym_COMMA, - ACTIONS(7287), 1, - anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + ACTIONS(6721), 1, + anon_sym_RBRACE, + STATE(5533), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343632] = 4, - ACTIONS(5240), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + [350382] = 4, + ACTIONS(6960), 1, anon_sym_PIPE, - STATE(5477), 1, + ACTIONS(7384), 1, + anon_sym_RBRACE, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343646] = 4, - ACTIONS(2303), 1, - anon_sym_RPAREN, - ACTIONS(7289), 1, + [350396] = 4, + ACTIONS(6623), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6625), 1, + anon_sym_RBRACE, + STATE(5699), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343660] = 4, - ACTIONS(6651), 1, + [350410] = 4, + ACTIONS(6613), 1, anon_sym_PIPE, - ACTIONS(7291), 1, + ACTIONS(7386), 1, anon_sym_LBRACE, - STATE(5271), 1, + STATE(5347), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343674] = 4, - ACTIONS(5748), 1, + [350424] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(5750), 1, - anon_sym_RBRACK, - STATE(5662), 1, - aux_sym_subscript_repeat1, + ACTIONS(7388), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343688] = 4, - ACTIONS(5862), 1, + [350438] = 3, + ACTIONS(7392), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7390), 2, anon_sym_COMMA, - ACTIONS(5864), 1, - anon_sym_RPAREN, - STATE(5666), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACE, + [350450] = 4, + ACTIONS(6950), 1, + anon_sym_PIPE, + ACTIONS(7394), 1, + anon_sym_RBRACK, + STATE(5521), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343702] = 4, - ACTIONS(6637), 1, + [350464] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(7293), 1, + ACTIONS(7396), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343716] = 3, - ACTIONS(7297), 1, + [350478] = 3, + ACTIONS(6789), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7295), 2, + ACTIONS(7398), 2, anon_sym_COMMA, anon_sym_RBRACE, - [343728] = 4, - ACTIONS(6651), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(5271), 1, - aux_sym_union_type_repeat1, + [350490] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343742] = 4, - ACTIONS(7301), 1, + ACTIONS(7400), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [350500] = 4, + ACTIONS(7402), 1, anon_sym_COMMA, - ACTIONS(7303), 1, + ACTIONS(7404), 1, anon_sym_RBRACK, - STATE(5550), 1, + STATE(5619), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343756] = 4, - ACTIONS(1916), 1, - anon_sym_RPAREN, - ACTIONS(7305), 1, + [350514] = 4, + ACTIONS(5714), 1, anon_sym_COMMA, - STATE(5561), 1, - aux_sym_argument_list_repeat1, + ACTIONS(5718), 1, + anon_sym_RBRACK, + STATE(5712), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343770] = 4, - ACTIONS(6497), 1, + [350528] = 4, + ACTIONS(5806), 1, anon_sym_COMMA, - ACTIONS(6499), 1, - anon_sym_RBRACE, - STATE(5456), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [343784] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7307), 1, + ACTIONS(5808), 1, anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, + STATE(5727), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343798] = 4, - ACTIONS(1636), 1, - anon_sym_RBRACE, - ACTIONS(7309), 1, + [350542] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + ACTIONS(7406), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343812] = 4, - ACTIONS(6651), 1, + [350556] = 4, + ACTIONS(5378), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, anon_sym_PIPE, - ACTIONS(7311), 1, - anon_sym_EQ, - STATE(5271), 1, + STATE(5610), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343826] = 4, - ACTIONS(1688), 1, - anon_sym_RBRACE, - ACTIONS(7313), 1, + [350570] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + ACTIONS(7408), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343840] = 4, - ACTIONS(6889), 1, + [350584] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - ACTIONS(7315), 1, + ACTIONS(7410), 1, anon_sym_RBRACK, - STATE(5581), 1, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343854] = 4, - ACTIONS(5698), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACK, - STATE(5627), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [343868] = 4, - ACTIONS(5792), 1, + [350598] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(5794), 1, - anon_sym_RBRACK, - STATE(5646), 1, - aux_sym_subscript_repeat1, + ACTIONS(7412), 1, + anon_sym_RPAREN, + STATE(5788), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343882] = 4, - ACTIONS(5842), 1, + [350612] = 4, + ACTIONS(5976), 1, anon_sym_COMMA, - ACTIONS(5844), 1, + ACTIONS(5978), 1, anon_sym_RPAREN, - STATE(5490), 1, + STATE(5734), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343896] = 4, - ACTIONS(1634), 1, + [350626] = 4, + ACTIONS(6960), 1, + anon_sym_PIPE, + ACTIONS(7414), 1, anon_sym_RBRACE, - ACTIONS(7317), 1, - anon_sym_COMMA, - STATE(5657), 1, - aux_sym_dictionary_repeat1, + STATE(5610), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343910] = 4, - ACTIONS(5756), 1, + [350640] = 4, + ACTIONS(1724), 1, + anon_sym_RBRACE, + ACTIONS(7416), 1, anon_sym_COMMA, - ACTIONS(5758), 1, - anon_sym_RBRACK, - STATE(5640), 1, - aux_sym_subscript_repeat1, + STATE(5575), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343924] = 4, - ACTIONS(6637), 1, + [350654] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(7319), 1, + ACTIONS(7418), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343938] = 2, + [350668] = 4, + ACTIONS(2053), 1, + anon_sym_RPAREN, + ACTIONS(7420), 1, + anon_sym_COMMA, + STATE(5652), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7321), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [343948] = 3, - ACTIONS(6705), 1, - anon_sym_LF, - ACTIONS(5), 2, + [350682] = 4, + ACTIONS(6898), 1, + anon_sym_RPAREN, + ACTIONS(7422), 1, + anon_sym_COMMA, + STATE(5788), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7323), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [343960] = 4, - ACTIONS(5258), 1, - anon_sym_RBRACE, - ACTIONS(6868), 1, + [350696] = 4, + ACTIONS(6950), 1, anon_sym_PIPE, - STATE(5477), 1, + ACTIONS(7425), 1, + anon_sym_RBRACK, + STATE(5521), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343974] = 4, - ACTIONS(6637), 1, + [350710] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(7325), 1, + ACTIONS(7427), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [343988] = 4, - ACTIONS(6637), 1, + [350724] = 4, + ACTIONS(5864), 1, + anon_sym_COMMA, + ACTIONS(5866), 1, + anon_sym_RBRACK, + STATE(5748), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [350738] = 4, + ACTIONS(6725), 1, anon_sym_COMMA, - ACTIONS(7327), 1, + ACTIONS(7429), 1, anon_sym_RPAREN, - STATE(5592), 1, + STATE(5788), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344002] = 4, - ACTIONS(6637), 1, + [350752] = 4, + ACTIONS(5964), 1, anon_sym_COMMA, - ACTIONS(7329), 1, + ACTIONS(5966), 1, anon_sym_RPAREN, - STATE(5592), 1, - aux_sym_function_type_repeat1, + STATE(5753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344016] = 4, - ACTIONS(6889), 1, - anon_sym_PIPE, - ACTIONS(7331), 1, - anon_sym_RBRACK, - STATE(5581), 1, - aux_sym_union_type_repeat1, + [350766] = 3, + ACTIONS(7431), 1, + anon_sym_DASH_GT, + ACTIONS(7433), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344030] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(7333), 1, - anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, + [350777] = 3, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3254), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344044] = 4, - ACTIONS(5168), 1, + [350788] = 3, + ACTIONS(7437), 1, + anon_sym_if, + ACTIONS(7439), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, - anon_sym_PIPE, - STATE(5477), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344058] = 4, - ACTIONS(6868), 1, - anon_sym_PIPE, - ACTIONS(7335), 1, + [350799] = 3, + ACTIONS(7441), 1, + anon_sym_if, + ACTIONS(7443), 1, anon_sym_RBRACE, - STATE(5477), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344072] = 4, - ACTIONS(5190), 1, + [350810] = 3, + ACTIONS(7445), 1, + anon_sym_if, + ACTIONS(7447), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, - anon_sym_PIPE, - STATE(5477), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344086] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(3493), 1, - sym_dict_expr, + [350821] = 3, + ACTIONS(7449), 1, + anon_sym_if, + ACTIONS(7451), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344097] = 3, - ACTIONS(7337), 1, + [350832] = 3, + ACTIONS(4187), 1, anon_sym_LBRACE, - STATE(3035), 1, + STATE(3520), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344108] = 3, - ACTIONS(7339), 1, + [350843] = 3, + ACTIONS(7453), 1, anon_sym_if, - ACTIONS(7341), 1, + ACTIONS(7455), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344119] = 3, - ACTIONS(153), 1, - sym_string_start, - STATE(4050), 1, - sym_string, + [350854] = 3, + ACTIONS(7457), 1, + anon_sym_if, + ACTIONS(7459), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344130] = 3, - ACTIONS(3760), 1, - anon_sym_LBRACE, - STATE(4263), 1, - sym_dict_expr, + [350865] = 3, + ACTIONS(7461), 1, + anon_sym_if, + ACTIONS(7463), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344141] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(3510), 1, - sym_dict_expr, + [350876] = 3, + ACTIONS(7465), 1, + anon_sym_COLON, + ACTIONS(7467), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344152] = 3, - ACTIONS(7343), 1, + [350887] = 3, + ACTIONS(7469), 1, anon_sym_LBRACE, - STATE(1979), 1, + STATE(4362), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344163] = 3, - ACTIONS(7345), 1, - anon_sym_DASH_GT, - ACTIONS(7347), 1, + [350898] = 3, + ACTIONS(4284), 1, anon_sym_LBRACE, + STATE(4466), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344174] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_dict_expr, + [350909] = 3, + ACTIONS(7471), 1, + anon_sym_if, + ACTIONS(7473), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344185] = 3, - ACTIONS(7351), 1, - anon_sym_DASH_GT, - ACTIONS(7353), 1, + [350920] = 3, + ACTIONS(7469), 1, anon_sym_LBRACE, + STATE(4371), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344196] = 3, - ACTIONS(7355), 1, - anon_sym_DASH_GT, - ACTIONS(7357), 1, - anon_sym_LBRACE, + [350931] = 3, + ACTIONS(7475), 1, + anon_sym_if, + ACTIONS(7477), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344207] = 3, - ACTIONS(7359), 1, - anon_sym_COLON, - ACTIONS(7361), 1, - anon_sym_LPAREN, + [350942] = 3, + ACTIONS(7479), 1, + anon_sym_if, + ACTIONS(7481), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344218] = 3, - ACTIONS(7349), 1, + [350953] = 3, + ACTIONS(7483), 1, anon_sym_LBRACE, - STATE(3165), 1, + STATE(2122), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344229] = 3, - ACTIONS(7363), 1, + [350964] = 3, + ACTIONS(7485), 1, anon_sym_DASH_GT, - ACTIONS(7365), 1, + ACTIONS(7487), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344240] = 3, - ACTIONS(7337), 1, + [350975] = 3, + ACTIONS(7483), 1, anon_sym_LBRACE, - STATE(2980), 1, + STATE(2140), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344251] = 3, - ACTIONS(7367), 1, - anon_sym_DASH_GT, - ACTIONS(7369), 1, + [350986] = 3, + ACTIONS(7435), 1, anon_sym_LBRACE, + STATE(3211), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344262] = 2, + [350997] = 3, + ACTIONS(7489), 1, + anon_sym_COMMA, + ACTIONS(7491), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [344271] = 3, - ACTIONS(7371), 1, - anon_sym_DASH_GT, - ACTIONS(7373), 1, + [351008] = 3, + ACTIONS(7493), 1, anon_sym_LBRACE, + STATE(2942), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344282] = 3, - ACTIONS(7375), 1, - anon_sym_DASH_GT, - ACTIONS(7377), 1, - anon_sym_LBRACE, + [351019] = 3, + ACTIONS(161), 1, + sym_string_start, + STATE(3986), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344293] = 3, - ACTIONS(7379), 1, + [351030] = 3, + ACTIONS(7495), 1, anon_sym_if, - ACTIONS(7381), 1, + ACTIONS(7497), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344304] = 3, - ACTIONS(7383), 1, + [351041] = 3, + ACTIONS(7499), 1, anon_sym_if, - ACTIONS(7385), 1, + ACTIONS(7501), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344315] = 3, - ACTIONS(7387), 1, - anon_sym_DASH_GT, - ACTIONS(7389), 1, - anon_sym_LBRACE, + [351052] = 3, + ACTIONS(2797), 1, + anon_sym_RBRACK, + ACTIONS(7503), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344326] = 3, - ACTIONS(7391), 1, - anon_sym_DASH_GT, - ACTIONS(7393), 1, + [351063] = 3, + ACTIONS(7505), 1, + anon_sym_if, + ACTIONS(7507), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351074] = 3, + ACTIONS(4187), 1, anon_sym_LBRACE, + STATE(3508), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344337] = 3, - ACTIONS(7395), 1, - anon_sym_if, - ACTIONS(7397), 1, - anon_sym_RBRACE, + [351085] = 3, + ACTIONS(7509), 1, + anon_sym_as, + ACTIONS(7511), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344348] = 3, - ACTIONS(7399), 1, - anon_sym_DASH_GT, - ACTIONS(7401), 1, + [351096] = 3, + ACTIONS(4284), 1, anon_sym_LBRACE, + STATE(4387), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344359] = 3, - ACTIONS(7403), 1, - anon_sym_DASH_GT, - ACTIONS(7405), 1, + [351107] = 3, + ACTIONS(3803), 1, anon_sym_LBRACE, + STATE(4325), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344370] = 3, - ACTIONS(7407), 1, + [351118] = 3, + ACTIONS(161), 1, + sym_string_start, + STATE(4003), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351129] = 3, + ACTIONS(7513), 1, anon_sym_if, - ACTIONS(7409), 1, + ACTIONS(7515), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344381] = 3, - ACTIONS(7411), 1, - anon_sym_DASH_GT, - ACTIONS(7413), 1, + [351140] = 3, + ACTIONS(7517), 1, anon_sym_LBRACE, + STATE(3076), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344392] = 3, - ACTIONS(7415), 1, - anon_sym_DASH_GT, - ACTIONS(7417), 1, - anon_sym_LBRACE, + [351151] = 3, + ACTIONS(7519), 1, + anon_sym_if, + ACTIONS(7521), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344403] = 3, - ACTIONS(7419), 1, - anon_sym_DASH_GT, - ACTIONS(7421), 1, - anon_sym_LBRACE, + [351162] = 3, + ACTIONS(7523), 1, + anon_sym_if, + ACTIONS(7525), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351173] = 3, + ACTIONS(7527), 1, + anon_sym_if, + ACTIONS(7529), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351184] = 3, + ACTIONS(7531), 1, + anon_sym_if, + ACTIONS(7533), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344414] = 3, - ACTIONS(7343), 1, + [351195] = 3, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(1952), 1, + STATE(2702), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344425] = 3, - ACTIONS(7423), 1, + [351206] = 3, + ACTIONS(7537), 1, anon_sym_DASH_GT, - ACTIONS(7425), 1, + ACTIONS(7539), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344436] = 3, - ACTIONS(7427), 1, - anon_sym_if, - ACTIONS(7429), 1, - anon_sym_RBRACE, + [351217] = 3, + ACTIONS(7541), 1, + anon_sym_DASH_GT, + ACTIONS(7543), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344447] = 3, - ACTIONS(7431), 1, + [351228] = 3, + ACTIONS(7545), 1, anon_sym_if, - ACTIONS(7433), 1, + ACTIONS(7547), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344458] = 3, - ACTIONS(7435), 1, + [351239] = 3, + ACTIONS(7549), 1, anon_sym_DASH_GT, - ACTIONS(7437), 1, + ACTIONS(7551), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344469] = 3, - ACTIONS(7439), 1, - anon_sym_if, - ACTIONS(7441), 1, - anon_sym_RBRACE, + [351250] = 3, + ACTIONS(4232), 1, + anon_sym_LBRACE, + STATE(4170), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344480] = 3, - ACTIONS(7443), 1, - anon_sym_if, - ACTIONS(7445), 1, - anon_sym_RBRACE, + [351261] = 3, + ACTIONS(7553), 1, + anon_sym_COLON, + ACTIONS(7555), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344491] = 3, - ACTIONS(7447), 1, - anon_sym_if, - ACTIONS(7449), 1, - anon_sym_RBRACE, + [351272] = 3, + ACTIONS(7557), 1, + anon_sym_DASH_GT, + ACTIONS(7559), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344502] = 3, - ACTIONS(7451), 1, + [351283] = 3, + ACTIONS(7561), 1, anon_sym_if, - ACTIONS(7453), 1, + ACTIONS(7563), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344513] = 2, + [351294] = 3, + ACTIONS(7565), 1, + anon_sym_DASH_GT, + ACTIONS(7567), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [344522] = 3, - ACTIONS(7455), 1, - anon_sym_COMMA, - ACTIONS(7457), 1, - anon_sym_in, + [351305] = 3, + ACTIONS(7569), 1, + anon_sym_if, + ACTIONS(7571), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344533] = 3, - ACTIONS(153), 1, - sym_string_start, - STATE(4013), 1, - sym_string, + [351316] = 3, + ACTIONS(7573), 1, + anon_sym_LBRACE, + STATE(2511), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344544] = 3, - ACTIONS(179), 1, - sym_string_start, - STATE(4044), 1, - sym_string, + [351327] = 3, + ACTIONS(7575), 1, + anon_sym_DASH_GT, + ACTIONS(7577), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344555] = 3, - ACTIONS(7459), 1, + [351338] = 3, + ACTIONS(7579), 1, anon_sym_if, - ACTIONS(7461), 1, + ACTIONS(7581), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344566] = 3, - ACTIONS(7463), 1, - anon_sym_DASH_GT, - ACTIONS(7465), 1, - anon_sym_LBRACE, + [351349] = 3, + ACTIONS(7583), 1, + anon_sym_COMMA, + ACTIONS(7585), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344577] = 3, - ACTIONS(4119), 1, - anon_sym_LBRACE, - STATE(3628), 1, - sym_dict_expr, + [351360] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344588] = 3, - ACTIONS(7467), 1, + ACTIONS(6056), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [351369] = 3, + ACTIONS(7587), 1, + anon_sym_DASH_GT, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(1898), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344599] = 3, - ACTIONS(4119), 1, + [351380] = 3, + ACTIONS(7573), 1, anon_sym_LBRACE, - STATE(3681), 1, + STATE(2529), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344610] = 3, - ACTIONS(7469), 1, + [351391] = 3, + ACTIONS(7591), 1, + anon_sym_DASH_GT, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(2470), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344621] = 3, - ACTIONS(7471), 1, - anon_sym_as, - ACTIONS(7473), 1, - sym__newline, + [351402] = 3, + ACTIONS(7595), 1, + anon_sym_if, + ACTIONS(7597), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344632] = 3, - ACTIONS(7475), 1, + [351413] = 3, + ACTIONS(7599), 1, + anon_sym_DASH_GT, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(3120), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344643] = 3, - ACTIONS(2948), 1, - anon_sym_RBRACK, - ACTIONS(7477), 1, - sym_identifier, + [351424] = 3, + ACTIONS(7603), 1, + anon_sym_if, + ACTIONS(7605), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344654] = 3, - ACTIONS(7479), 1, + [351435] = 3, + ACTIONS(7607), 1, anon_sym_COLON, - ACTIONS(7481), 1, + ACTIONS(7609), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344665] = 3, - ACTIONS(7475), 1, + [351446] = 3, + ACTIONS(7611), 1, + anon_sym_COLON, + ACTIONS(7613), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351457] = 3, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(3122), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344676] = 3, - ACTIONS(7483), 1, - anon_sym_if, - ACTIONS(7485), 1, - anon_sym_RBRACE, + [351468] = 3, + ACTIONS(4173), 1, + anon_sym_LBRACE, + STATE(3667), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344687] = 3, - ACTIONS(7471), 1, + [351479] = 3, + ACTIONS(7509), 1, anon_sym_as, - ACTIONS(7487), 1, + ACTIONS(7619), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344698] = 3, - ACTIONS(7469), 1, + [351490] = 3, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(2450), 1, + STATE(2685), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344709] = 3, - ACTIONS(7489), 1, - anon_sym_if, - ACTIONS(7491), 1, - anon_sym_RBRACE, + [351501] = 3, + ACTIONS(7621), 1, + anon_sym_DASH_GT, + ACTIONS(7623), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344720] = 3, - ACTIONS(7493), 1, + [351512] = 3, + ACTIONS(7625), 1, anon_sym_if, - ACTIONS(7495), 1, + ACTIONS(7627), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344731] = 3, - ACTIONS(7467), 1, - anon_sym_LBRACE, - STATE(1913), 1, - sym_dict_expr, + [351523] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344742] = 3, - ACTIONS(7497), 1, + ACTIONS(5910), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [351532] = 3, + ACTIONS(7629), 1, anon_sym_if, - ACTIONS(7499), 1, + ACTIONS(7631), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344753] = 2, + [351543] = 3, + ACTIONS(7633), 1, + anon_sym_if, + ACTIONS(7635), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5918), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [344762] = 3, - ACTIONS(7501), 1, - anon_sym_if, - ACTIONS(7503), 1, - anon_sym_RBRACE, + [351554] = 3, + ACTIONS(7637), 1, + anon_sym_LBRACE, + STATE(3130), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344773] = 3, - ACTIONS(7505), 1, - anon_sym_if, - ACTIONS(7507), 1, - anon_sym_RBRACE, + [351565] = 3, + ACTIONS(7639), 1, + anon_sym_DASH_GT, + ACTIONS(7641), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344784] = 2, + [351576] = 3, + ACTIONS(7643), 1, + anon_sym_DASH_GT, + ACTIONS(7645), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [344793] = 3, - ACTIONS(7509), 1, + [351587] = 3, + ACTIONS(4232), 1, anon_sym_LBRACE, - STATE(4207), 1, + STATE(4147), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344804] = 3, - ACTIONS(4165), 1, + [351598] = 3, + ACTIONS(7647), 1, + anon_sym_DASH_GT, + ACTIONS(7649), 1, anon_sym_LBRACE, - STATE(3888), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344815] = 3, - ACTIONS(4165), 1, + [351609] = 3, + ACTIONS(7651), 1, + anon_sym_DASH_GT, + ACTIONS(7653), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [351620] = 3, + ACTIONS(7655), 1, anon_sym_LBRACE, - STATE(3961), 1, + STATE(1430), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344826] = 3, - ACTIONS(7511), 1, + [351631] = 3, + ACTIONS(7637), 1, anon_sym_LBRACE, - STATE(2587), 1, + STATE(3140), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344837] = 3, - ACTIONS(7513), 1, + [351642] = 3, + ACTIONS(7657), 1, anon_sym_if, - ACTIONS(7515), 1, + ACTIONS(7659), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344848] = 3, - ACTIONS(179), 1, + [351653] = 3, + ACTIONS(187), 1, sym_string_start, - STATE(4104), 1, + STATE(4043), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344859] = 3, - ACTIONS(7511), 1, - anon_sym_LBRACE, - STATE(2599), 1, - sym_dict_expr, + [351664] = 3, + ACTIONS(7661), 1, + anon_sym_if, + ACTIONS(7663), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344870] = 3, - ACTIONS(7517), 1, - anon_sym_if, - ACTIONS(7519), 1, - anon_sym_RBRACE, + [351675] = 3, + ACTIONS(7665), 1, + anon_sym_COMMA, + ACTIONS(7667), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344881] = 3, - ACTIONS(7509), 1, - anon_sym_LBRACE, - STATE(4156), 1, - sym_dict_expr, + [351686] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344892] = 3, - ACTIONS(7521), 1, - anon_sym_if, - ACTIONS(7523), 1, - anon_sym_RBRACE, + ACTIONS(7669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [351695] = 3, + ACTIONS(7671), 1, + anon_sym_COMMA, + ACTIONS(7673), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344903] = 3, - ACTIONS(7525), 1, - anon_sym_LBRACE, - STATE(2950), 1, - sym_dict_expr, + [351706] = 3, + ACTIONS(7675), 1, + anon_sym_COMMA, + ACTIONS(7677), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344914] = 3, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(4405), 1, - sym_dict_expr, + [351717] = 3, + ACTIONS(7679), 1, + anon_sym_COMMA, + ACTIONS(7681), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344925] = 3, - ACTIONS(7527), 1, - anon_sym_COLON, - ACTIONS(7529), 1, - anon_sym_for, + [351728] = 3, + ACTIONS(7683), 1, + anon_sym_if, + ACTIONS(7685), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344936] = 3, - ACTIONS(7525), 1, + [351739] = 3, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(2923), 1, + STATE(4354), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344947] = 3, - ACTIONS(7531), 1, - anon_sym_COLON, - ACTIONS(7533), 1, - anon_sym_LPAREN, + [351750] = 3, + ACTIONS(7687), 1, + anon_sym_COMMA, + ACTIONS(7689), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344958] = 3, - ACTIONS(7535), 1, - anon_sym_COMMA, - ACTIONS(7537), 1, - anon_sym_in, + [351761] = 3, + ACTIONS(4173), 1, + anon_sym_LBRACE, + STATE(3762), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344969] = 3, - ACTIONS(4272), 1, + [351772] = 3, + ACTIONS(7691), 1, anon_sym_LBRACE, - STATE(4298), 1, + STATE(2418), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344980] = 3, - ACTIONS(7539), 1, - anon_sym_if, - ACTIONS(7541), 1, - anon_sym_RBRACE, + [351783] = 3, + ACTIONS(7655), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [344991] = 3, - ACTIONS(7543), 1, - anon_sym_if, - ACTIONS(7545), 1, - anon_sym_RBRACE, + [351794] = 3, + ACTIONS(7693), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345002] = 3, - ACTIONS(7547), 1, - anon_sym_if, - ACTIONS(7549), 1, - anon_sym_RBRACE, + [351805] = 3, + ACTIONS(7697), 1, + anon_sym_COMMA, + ACTIONS(7699), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345013] = 3, - ACTIONS(7551), 1, - anon_sym_if, - ACTIONS(7553), 1, - anon_sym_RBRACE, + [351816] = 3, + ACTIONS(7701), 1, + anon_sym_COMMA, + ACTIONS(7703), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345024] = 3, - ACTIONS(7555), 1, - anon_sym_if, - ACTIONS(7557), 1, - anon_sym_RBRACE, + [351827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345035] = 3, - ACTIONS(7559), 1, - anon_sym_if, - ACTIONS(7561), 1, + ACTIONS(7049), 2, + anon_sym_COMMA, anon_sym_RBRACE, + [351836] = 3, + ACTIONS(7493), 1, + anon_sym_LBRACE, + STATE(2928), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345046] = 3, - ACTIONS(7563), 1, - anon_sym_if, - ACTIONS(7565), 1, - anon_sym_RBRACE, + [351847] = 3, + ACTIONS(7517), 1, + anon_sym_LBRACE, + STATE(3084), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345057] = 3, - ACTIONS(7567), 1, - anon_sym_if, - ACTIONS(7569), 1, - anon_sym_RBRACE, + [351858] = 3, + ACTIONS(7705), 1, + anon_sym_LBRACE, + STATE(2193), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345068] = 3, - ACTIONS(7571), 1, - anon_sym_if, - ACTIONS(7573), 1, - anon_sym_RBRACE, + [351869] = 3, + ACTIONS(7707), 1, + anon_sym_COMMA, + ACTIONS(7709), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345079] = 3, - ACTIONS(7575), 1, - anon_sym_if, - ACTIONS(7577), 1, - anon_sym_RBRACE, + [351880] = 3, + ACTIONS(7711), 1, + anon_sym_COMMA, + ACTIONS(7713), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345090] = 3, - ACTIONS(7579), 1, - anon_sym_if, - ACTIONS(7581), 1, - anon_sym_RBRACE, + [351891] = 3, + ACTIONS(7715), 1, + anon_sym_LBRACE, + STATE(1449), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345101] = 3, - ACTIONS(7583), 1, - anon_sym_if, - ACTIONS(7585), 1, - anon_sym_RBRACE, + [351902] = 3, + ACTIONS(7715), 1, + anon_sym_LBRACE, + STATE(1525), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345112] = 3, - ACTIONS(7587), 1, + [351913] = 3, + ACTIONS(7717), 1, anon_sym_COMMA, - ACTIONS(7589), 1, + ACTIONS(7719), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345123] = 3, - ACTIONS(7591), 1, + [351924] = 3, + ACTIONS(7721), 1, anon_sym_COMMA, - ACTIONS(7593), 1, + ACTIONS(7723), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345134] = 3, - ACTIONS(7595), 1, + [351935] = 3, + ACTIONS(7705), 1, anon_sym_LBRACE, - STATE(2187), 1, + STATE(2202), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345145] = 3, - ACTIONS(7597), 1, - anon_sym_COMMA, - ACTIONS(7599), 1, - anon_sym_in, + [351946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345156] = 3, - ACTIONS(7601), 1, + ACTIONS(6038), 2, anon_sym_COMMA, - ACTIONS(7603), 1, - anon_sym_in, + anon_sym_RBRACK, + [351955] = 3, + ACTIONS(7725), 1, + anon_sym_if, + ACTIONS(7727), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345167] = 3, - ACTIONS(7605), 1, + [351966] = 3, + ACTIONS(7729), 1, anon_sym_COMMA, - ACTIONS(7607), 1, + ACTIONS(7731), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345178] = 2, + [351977] = 3, + ACTIONS(7733), 1, + anon_sym_if, + ACTIONS(7735), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7609), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [345187] = 3, - ACTIONS(7611), 1, + [351988] = 3, + ACTIONS(7737), 1, anon_sym_COMMA, - ACTIONS(7613), 1, + ACTIONS(7739), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345198] = 3, - ACTIONS(7615), 1, + [351999] = 3, + ACTIONS(7741), 1, anon_sym_if, - ACTIONS(7617), 1, + ACTIONS(7743), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345209] = 3, - ACTIONS(7619), 1, - anon_sym_COMMA, - ACTIONS(7621), 1, - anon_sym_in, + [352010] = 3, + ACTIONS(7745), 1, + anon_sym_if, + ACTIONS(7747), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345220] = 3, - ACTIONS(7623), 1, + [352021] = 3, + ACTIONS(7749), 1, anon_sym_COMMA, - ACTIONS(7625), 1, + ACTIONS(7751), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345231] = 3, - ACTIONS(7627), 1, - anon_sym_COMMA, - ACTIONS(7629), 1, - anon_sym_in, + [352032] = 3, + ACTIONS(187), 1, + sym_string_start, + STATE(4057), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345242] = 3, - ACTIONS(7631), 1, + [352043] = 3, + ACTIONS(7691), 1, anon_sym_LBRACE, - STATE(2188), 1, + STATE(2515), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345253] = 3, - ACTIONS(7633), 1, - anon_sym_COMMA, - ACTIONS(7635), 1, - anon_sym_in, + [352054] = 2, + ACTIONS(7753), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345264] = 3, - ACTIONS(7637), 1, - anon_sym_COMMA, - ACTIONS(7639), 1, - anon_sym_in, + [352062] = 2, + ACTIONS(7755), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352070] = 2, + ACTIONS(7757), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352078] = 2, + ACTIONS(7759), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352086] = 2, + ACTIONS(7761), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352094] = 2, + ACTIONS(7763), 1, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352102] = 2, + ACTIONS(7765), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352110] = 2, + ACTIONS(7767), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352118] = 2, + ACTIONS(7769), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345275] = 3, - ACTIONS(7641), 1, - anon_sym_COMMA, - ACTIONS(7643), 1, - anon_sym_in, + [352126] = 2, + ACTIONS(7771), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345286] = 3, - ACTIONS(7645), 1, - anon_sym_COMMA, - ACTIONS(7647), 1, - anon_sym_in, + [352134] = 2, + ACTIONS(7773), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345297] = 3, - ACTIONS(3760), 1, - anon_sym_LBRACE, - STATE(4279), 1, - sym_dict_expr, + [352142] = 2, + ACTIONS(7775), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345308] = 3, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_dict_expr, + [352150] = 2, + ACTIONS(7777), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345319] = 3, - ACTIONS(7595), 1, - anon_sym_LBRACE, - STATE(2202), 1, - sym_dict_expr, + [352158] = 2, + ACTIONS(7779), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345330] = 3, - ACTIONS(7651), 1, - anon_sym_COMMA, - ACTIONS(7653), 1, - anon_sym_in, + [352166] = 2, + ACTIONS(7781), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345341] = 3, - ACTIONS(7655), 1, - anon_sym_COMMA, - ACTIONS(7657), 1, - anon_sym_in, + [352174] = 2, + ACTIONS(4290), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345352] = 3, - ACTIONS(7631), 1, - anon_sym_LBRACE, - STATE(2122), 1, - sym_dict_expr, + [352182] = 2, + ACTIONS(5692), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345363] = 3, - ACTIONS(7649), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_dict_expr, + [352190] = 2, + ACTIONS(5680), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345374] = 2, - ACTIONS(7473), 1, + [352198] = 2, + ACTIONS(7783), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345382] = 2, - ACTIONS(5596), 1, - anon_sym_RBRACE, + [352206] = 2, + ACTIONS(7785), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345390] = 2, - ACTIONS(5908), 1, - anon_sym_RPAREN, + [352214] = 2, + ACTIONS(7787), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345398] = 2, - ACTIONS(7659), 1, + [352222] = 2, + ACTIONS(7789), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345406] = 2, - ACTIONS(7661), 1, + [352230] = 2, + ACTIONS(6653), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345414] = 2, - ACTIONS(7663), 1, + [352238] = 2, + ACTIONS(6625), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345422] = 2, - ACTIONS(7665), 1, - anon_sym_RBRACK, + [352246] = 2, + ACTIONS(7791), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345430] = 2, - ACTIONS(7667), 1, - anon_sym_in, + [352254] = 2, + ACTIONS(7793), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345438] = 2, - ACTIONS(7669), 1, - sym_identifier, + [352262] = 2, + ACTIONS(6621), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345446] = 2, - ACTIONS(7671), 1, - anon_sym_RPAREN, + [352270] = 2, + ACTIONS(7795), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345454] = 2, - ACTIONS(5586), 1, - anon_sym_RBRACE, + [352278] = 2, + ACTIONS(7797), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345462] = 2, - ACTIONS(7673), 1, + [352286] = 2, + ACTIONS(7799), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345470] = 2, - ACTIONS(7675), 1, + [352294] = 2, + ACTIONS(7801), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345478] = 2, - ACTIONS(7677), 1, + [352302] = 2, + ACTIONS(7803), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345486] = 2, - ACTIONS(7679), 1, + [352310] = 2, + ACTIONS(7805), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345494] = 2, - ACTIONS(7681), 1, + [352318] = 2, + ACTIONS(7807), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345502] = 2, - ACTIONS(7683), 1, - sym_identifier, + [352326] = 2, + ACTIONS(7809), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345510] = 2, - ACTIONS(7685), 1, + [352334] = 2, + ACTIONS(7811), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345518] = 2, - ACTIONS(7687), 1, - anon_sym_DQUOTE, + [352342] = 2, + ACTIONS(7813), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345526] = 2, - ACTIONS(7689), 1, - anon_sym_RBRACE, + [352350] = 2, + ACTIONS(7815), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345534] = 2, - ACTIONS(7691), 1, - anon_sym_RBRACE, + [352358] = 2, + ACTIONS(7817), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345542] = 2, - ACTIONS(7693), 1, - anon_sym_RBRACE, + [352366] = 2, + ACTIONS(7819), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345550] = 2, - ACTIONS(7695), 1, - anon_sym_RBRACE, + [352374] = 2, + ACTIONS(7821), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345558] = 2, - ACTIONS(5598), 1, - anon_sym_RBRACE, + [352382] = 2, + ACTIONS(7823), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345566] = 2, - ACTIONS(7697), 1, + [352390] = 2, + ACTIONS(7825), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352398] = 2, + ACTIONS(7827), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345574] = 2, - ACTIONS(5808), 1, - anon_sym_RPAREN, + [352406] = 2, + ACTIONS(7829), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345582] = 2, - ACTIONS(7699), 1, - sym_identifier, + [352414] = 2, + ACTIONS(7831), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345590] = 2, - ACTIONS(7204), 1, + [352422] = 2, + ACTIONS(7833), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345598] = 2, - ACTIONS(7701), 1, - anon_sym_RBRACE, + [352430] = 2, + ACTIONS(7835), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345606] = 2, - ACTIONS(6503), 1, + [352438] = 2, + ACTIONS(7837), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345614] = 2, - ACTIONS(7703), 1, - anon_sym_RBRACK, + [352446] = 2, + ACTIONS(7839), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345622] = 2, - ACTIONS(7705), 1, - anon_sym_RBRACE, + [352454] = 2, + ACTIONS(7841), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345630] = 2, - ACTIONS(7707), 1, - anon_sym_RBRACK, + [352462] = 2, + ACTIONS(7843), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345638] = 2, - ACTIONS(7709), 1, + [352470] = 2, + ACTIONS(5650), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345646] = 2, - ACTIONS(7711), 1, + [352478] = 2, + ACTIONS(7845), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345654] = 2, - ACTIONS(7713), 1, + [352486] = 2, + ACTIONS(7847), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345662] = 2, - ACTIONS(7715), 1, - sym_identifier, + [352494] = 2, + ACTIONS(7849), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345670] = 2, - ACTIONS(7717), 1, - sym_identifier, + [352502] = 2, + ACTIONS(7851), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345678] = 2, - ACTIONS(7719), 1, - anon_sym_in, + [352510] = 2, + ACTIONS(7853), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345686] = 2, - ACTIONS(7721), 1, - anon_sym_RBRACE, + [352518] = 2, + ACTIONS(5982), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345694] = 2, - ACTIONS(7723), 1, - sym_identifier, + [352526] = 2, + ACTIONS(7855), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345702] = 2, - ACTIONS(7725), 1, + [352534] = 2, + ACTIONS(7857), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352542] = 2, + ACTIONS(7859), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352550] = 2, + ACTIONS(7861), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345710] = 2, - ACTIONS(7727), 1, + [352558] = 2, + ACTIONS(7863), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345718] = 2, - ACTIONS(7729), 1, - anon_sym_DQUOTE, + [352566] = 2, + ACTIONS(7865), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345726] = 2, - ACTIONS(4474), 1, + [352574] = 2, + ACTIONS(7867), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345734] = 2, - ACTIONS(7731), 1, - anon_sym_RBRACE, + [352582] = 2, + ACTIONS(7869), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345742] = 2, - ACTIONS(6600), 1, + [352590] = 2, + ACTIONS(7871), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345750] = 2, - ACTIONS(7733), 1, - anon_sym_RBRACE, + [352598] = 2, + ACTIONS(7873), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345758] = 2, - ACTIONS(7735), 1, - anon_sym_RBRACK, + [352606] = 2, + ACTIONS(7875), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345766] = 2, - ACTIONS(6543), 1, - anon_sym_RBRACE, + [352614] = 2, + ACTIONS(7877), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345774] = 2, - ACTIONS(6535), 1, + [352622] = 2, + ACTIONS(7879), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345782] = 2, - ACTIONS(5592), 1, + [352630] = 2, + ACTIONS(4540), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345790] = 2, - ACTIONS(7737), 1, - anon_sym_RBRACK, + [352638] = 2, + ACTIONS(7881), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345798] = 2, - ACTIONS(7739), 1, - anon_sym_DQUOTE, + [352646] = 2, + ACTIONS(7883), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345806] = 2, - ACTIONS(7741), 1, + [352654] = 2, + ACTIONS(7885), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345814] = 2, - ACTIONS(7743), 1, - anon_sym_in, + [352662] = 2, + ACTIONS(5914), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345822] = 2, - ACTIONS(7745), 1, + [352670] = 2, + ACTIONS(7887), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345830] = 2, - ACTIONS(7747), 1, + [352678] = 2, + ACTIONS(7889), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345838] = 2, - ACTIONS(7749), 1, - anon_sym_in, + [352686] = 2, + ACTIONS(7891), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345846] = 2, - ACTIONS(7751), 1, - sym_identifier, + [352694] = 2, + ACTIONS(7893), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345854] = 2, - ACTIONS(5938), 1, - sym__newline, + [352702] = 2, + ACTIONS(5966), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345862] = 2, - ACTIONS(7753), 1, - anon_sym_in, + [352710] = 2, + ACTIONS(4548), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345870] = 2, - ACTIONS(5914), 1, - anon_sym_RPAREN, + [352718] = 2, + ACTIONS(7895), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345878] = 2, - ACTIONS(7755), 1, - anon_sym_RBRACK, + [352726] = 2, + ACTIONS(7897), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345886] = 2, - ACTIONS(7757), 1, - anon_sym_RBRACE, + [352734] = 2, + ACTIONS(7899), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345894] = 2, - ACTIONS(7759), 1, - anon_sym_RBRACE, + [352742] = 2, + ACTIONS(7901), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345902] = 2, - ACTIONS(7761), 1, - anon_sym_RBRACE, + [352750] = 2, + ACTIONS(7903), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345910] = 2, - ACTIONS(7763), 1, - sym_identifier, + [352758] = 2, + ACTIONS(7905), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345918] = 2, - ACTIONS(7765), 1, + [352766] = 2, + ACTIONS(7907), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345926] = 2, - ACTIONS(7767), 1, - anon_sym_RBRACK, + [352774] = 2, + ACTIONS(7909), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345934] = 2, - ACTIONS(7769), 1, - anon_sym_RBRACE, + [352782] = 2, + ACTIONS(7911), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345942] = 2, - ACTIONS(5818), 1, + [352790] = 2, + ACTIONS(7913), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345950] = 2, - ACTIONS(7771), 1, - anon_sym_RBRACE, + [352798] = 2, + ACTIONS(7915), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345958] = 2, - ACTIONS(6515), 1, + [352806] = 2, + ACTIONS(4290), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345966] = 2, - ACTIONS(4199), 1, - anon_sym_COLON, + [352814] = 2, + ACTIONS(7917), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345974] = 2, - ACTIONS(7773), 1, - anon_sym_DQUOTE, + [352822] = 2, + ACTIONS(7919), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345982] = 2, - ACTIONS(7775), 1, - anon_sym_RBRACK, + [352830] = 2, + ACTIONS(7921), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345990] = 2, - ACTIONS(7777), 1, + [352838] = 2, + ACTIONS(7923), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [345998] = 2, - ACTIONS(7779), 1, - anon_sym_in, + [352846] = 2, + ACTIONS(7925), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346006] = 2, - ACTIONS(7781), 1, + [352854] = 2, + ACTIONS(7927), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352862] = 2, + ACTIONS(7929), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346014] = 2, - ACTIONS(7783), 1, + [352870] = 2, + ACTIONS(7931), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346022] = 2, - ACTIONS(7785), 1, + [352878] = 2, + ACTIONS(7933), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346030] = 2, - ACTIONS(7787), 1, - anon_sym_RBRACK, + [352886] = 2, + ACTIONS(7935), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346038] = 2, - ACTIONS(7789), 1, + [352894] = 2, + ACTIONS(7937), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346046] = 2, - ACTIONS(7791), 1, - sym__newline, + [352902] = 2, + ACTIONS(7939), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352910] = 2, + ACTIONS(5946), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346054] = 2, - ACTIONS(6569), 1, + [352918] = 2, + ACTIONS(7941), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346062] = 2, - ACTIONS(7793), 1, - sym_identifier, + [352926] = 2, + ACTIONS(7943), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346070] = 2, - ACTIONS(7795), 1, - anon_sym_RBRACK, + [352934] = 2, + ACTIONS(7945), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346078] = 2, - ACTIONS(7797), 1, + [352942] = 2, + ACTIONS(7947), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346086] = 2, - ACTIONS(7799), 1, - anon_sym_in, + [352950] = 2, + ACTIONS(7949), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346094] = 2, - ACTIONS(7801), 1, + [352958] = 2, + ACTIONS(7951), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346102] = 2, - ACTIONS(7803), 1, + [352966] = 2, + ACTIONS(7953), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [352974] = 2, + ACTIONS(7955), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346110] = 2, - ACTIONS(7805), 1, + [352982] = 2, + ACTIONS(7957), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346118] = 2, - ACTIONS(7807), 1, - anon_sym_DQUOTE, + [352990] = 2, + ACTIONS(7959), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346126] = 2, - ACTIONS(7809), 1, - anon_sym_COLON, + [352998] = 2, + ACTIONS(7961), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346134] = 2, - ACTIONS(7811), 1, - sym_identifier, + [353006] = 2, + ACTIONS(7963), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346142] = 2, - ACTIONS(7813), 1, - anon_sym_RBRACE, + [353014] = 2, + ACTIONS(7965), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346150] = 2, - ACTIONS(7815), 1, + [353022] = 2, + ACTIONS(7967), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346158] = 2, - ACTIONS(7817), 1, - sym_identifier, + [353030] = 2, + ACTIONS(7969), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346166] = 2, - ACTIONS(7819), 1, - sym_identifier, + [353038] = 2, + ACTIONS(7971), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [353046] = 2, + ACTIONS(5666), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346174] = 2, - ACTIONS(7821), 1, - anon_sym_in, + [353054] = 2, + ACTIONS(7973), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346182] = 2, - ACTIONS(7823), 1, - anon_sym_RPAREN, + [353062] = 2, + ACTIONS(7975), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346190] = 2, - ACTIONS(5574), 1, + [353070] = 2, + ACTIONS(7977), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346198] = 2, - ACTIONS(5600), 1, - anon_sym_RBRACE, + [353078] = 2, + ACTIONS(7979), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346206] = 2, - ACTIONS(7825), 1, - anon_sym_RBRACE, + [353086] = 2, + ACTIONS(7981), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346214] = 2, - ACTIONS(7827), 1, + [353094] = 2, + ACTIONS(7983), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346222] = 2, - ACTIONS(7829), 1, - anon_sym_RBRACE, + [353102] = 2, + ACTIONS(7985), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346230] = 2, - ACTIONS(5610), 1, - anon_sym_RBRACE, + [353110] = 2, + ACTIONS(7987), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346238] = 2, - ACTIONS(6625), 1, - anon_sym_RBRACE, + [353118] = 2, + ACTIONS(7989), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346246] = 2, - ACTIONS(7831), 1, - anon_sym_RBRACK, + [353126] = 2, + ACTIONS(7991), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346254] = 2, - ACTIONS(7833), 1, - sym_identifier, + [353134] = 2, + ACTIONS(7993), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346262] = 2, - ACTIONS(7835), 1, - anon_sym_COLON, + [353142] = 2, + ACTIONS(7995), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346270] = 2, - ACTIONS(7837), 1, - anon_sym_RBRACE, + [353150] = 2, + ACTIONS(7997), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346278] = 2, - ACTIONS(7839), 1, + [353158] = 2, + ACTIONS(7999), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346286] = 2, - ACTIONS(7841), 1, - anon_sym_COLON, + [353166] = 2, + ACTIONS(6681), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346294] = 2, - ACTIONS(7843), 1, + [353174] = 2, + ACTIONS(8001), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [346302] = 2, - ACTIONS(7845), 1, - sym_identifier, + [353182] = 2, + ACTIONS(8003), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346310] = 2, - ACTIONS(7847), 1, + [353190] = 2, + ACTIONS(5690), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346318] = 2, - ACTIONS(7849), 1, - anon_sym_RBRACK, + [353198] = 2, + ACTIONS(8005), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346326] = 2, - ACTIONS(7851), 1, - sym_identifier, + [353206] = 2, + ACTIONS(8007), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346334] = 2, - ACTIONS(7853), 1, - anon_sym_in, + [353214] = 2, + ACTIONS(8009), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346342] = 2, - ACTIONS(7855), 1, + [353222] = 2, + ACTIONS(8011), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346350] = 2, - ACTIONS(7857), 1, + [353230] = 2, + ACTIONS(8013), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353238] = 2, + ACTIONS(6643), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346358] = 2, - ACTIONS(7859), 1, - anon_sym_in, + [353246] = 2, + ACTIONS(8015), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346366] = 2, - ACTIONS(7861), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [353254] = 2, + ACTIONS(8017), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346374] = 2, - ACTIONS(7863), 1, - anon_sym_RBRACE, + [353262] = 2, + ACTIONS(8019), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346382] = 2, - ACTIONS(7865), 1, + [353270] = 2, + ACTIONS(8021), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353278] = 2, + ACTIONS(8023), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346390] = 2, - ACTIONS(7867), 1, + [353286] = 2, + ACTIONS(8025), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346398] = 2, - ACTIONS(7869), 1, - anon_sym_RBRACE, + [353294] = 2, + ACTIONS(8027), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346406] = 2, - ACTIONS(7871), 1, + [353302] = 2, + ACTIONS(8029), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346414] = 2, - ACTIONS(7873), 1, - anon_sym_RBRACE, + [353310] = 2, + ACTIONS(8031), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346422] = 2, - ACTIONS(7875), 1, - anon_sym_in, + [353318] = 2, + ACTIONS(8033), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [353326] = 2, + ACTIONS(8035), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346430] = 2, - ACTIONS(7877), 1, - sym_identifier, + [353334] = 2, + ACTIONS(8037), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346438] = 2, - ACTIONS(7879), 1, - sym_identifier, + [353342] = 2, + ACTIONS(8039), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346446] = 2, - ACTIONS(7881), 1, - anon_sym_in, + [353350] = 2, + ACTIONS(8041), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346454] = 2, - ACTIONS(7883), 1, + [353358] = 2, + ACTIONS(8043), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346462] = 2, - ACTIONS(7885), 1, - sym_identifier, + [353366] = 2, + ACTIONS(8045), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346470] = 2, - ACTIONS(7887), 1, + [353374] = 2, + ACTIONS(8047), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346478] = 2, - ACTIONS(7889), 1, - anon_sym_in, + [353382] = 2, + ACTIONS(8049), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346486] = 2, - ACTIONS(7891), 1, - sym_identifier, + [353390] = 2, + ACTIONS(8051), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346494] = 2, - ACTIONS(7893), 1, - anon_sym_in, + [353398] = 2, + ACTIONS(8053), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346502] = 2, - ACTIONS(7895), 1, - anon_sym_DQUOTE, + [353406] = 2, + ACTIONS(8055), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346510] = 2, - ACTIONS(5892), 1, + [353414] = 2, + ACTIONS(8057), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346518] = 2, - ACTIONS(7897), 1, - anon_sym_in, + [353422] = 2, + ACTIONS(8059), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346526] = 2, - ACTIONS(7899), 1, + [353430] = 2, + ACTIONS(8061), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346534] = 2, - ACTIONS(7901), 1, - anon_sym_in, + [353438] = 2, + ACTIONS(8063), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346542] = 2, - ACTIONS(7903), 1, - anon_sym_RBRACE, + [353446] = 2, + ACTIONS(8065), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346550] = 2, - ACTIONS(7905), 1, - anon_sym_in, + [353454] = 2, + ACTIONS(8067), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346558] = 2, - ACTIONS(7907), 1, + [353462] = 2, + ACTIONS(8069), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346566] = 2, - ACTIONS(7909), 1, - anon_sym_in, + [353470] = 2, + ACTIONS(8071), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346574] = 2, - ACTIONS(7911), 1, - anon_sym_RBRACE, + [353478] = 2, + ACTIONS(8073), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [353486] = 2, + ACTIONS(8075), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346582] = 2, - ACTIONS(7913), 1, + [353494] = 2, + ACTIONS(8077), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353502] = 2, + ACTIONS(8079), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346590] = 2, - ACTIONS(7915), 1, - anon_sym_RBRACE, + [353510] = 2, + ACTIONS(8081), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346598] = 2, - ACTIONS(7917), 1, - anon_sym_in, + [353518] = 2, + ACTIONS(8083), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346606] = 2, - ACTIONS(7919), 1, - anon_sym_COLON, + [353526] = 2, + ACTIONS(8085), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346614] = 2, - ACTIONS(7921), 1, - sym_identifier, + [353534] = 2, + ACTIONS(8087), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346622] = 2, - ACTIONS(7923), 1, - anon_sym_in, + [353542] = 2, + ACTIONS(8089), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346630] = 2, - ACTIONS(7925), 1, - anon_sym_for, + [353550] = 2, + ACTIONS(8091), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346638] = 2, - ACTIONS(7927), 1, - anon_sym_in, + [353558] = 2, + ACTIONS(8093), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346646] = 2, - ACTIONS(7929), 1, + [353566] = 2, + ACTIONS(8095), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346654] = 2, - ACTIONS(7931), 1, - sym_identifier, + [353574] = 2, + ACTIONS(6002), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346662] = 2, - ACTIONS(7933), 1, - sym_identifier, + [353582] = 2, + ACTIONS(8097), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346670] = 2, - ACTIONS(7935), 1, - sym_identifier, + [353590] = 2, + ACTIONS(8099), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346678] = 2, - ACTIONS(7937), 1, - sym_identifier, + [353598] = 2, + ACTIONS(8101), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [353606] = 2, + ACTIONS(8103), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346686] = 2, - ACTIONS(7939), 1, - anon_sym_in, + [353614] = 2, + ACTIONS(8105), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346694] = 2, - ACTIONS(7941), 1, - anon_sym_RBRACE, + [353622] = 2, + ACTIONS(8107), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346702] = 2, - ACTIONS(7943), 1, - anon_sym_in, + [353630] = 2, + ACTIONS(8109), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346710] = 2, - ACTIONS(7945), 1, - anon_sym_in, + [353638] = 2, + ACTIONS(4290), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346718] = 2, - ACTIONS(7947), 1, - anon_sym_RBRACK, + [353646] = 2, + ACTIONS(8111), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346726] = 2, - ACTIONS(7949), 1, - sym_identifier, + [353654] = 2, + ACTIONS(8113), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346734] = 2, - ACTIONS(7951), 1, + [353662] = 2, + ACTIONS(8115), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346742] = 2, - ACTIONS(7953), 1, - sym_identifier, + [353670] = 2, + ACTIONS(6721), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346750] = 2, - ACTIONS(6635), 1, + [353678] = 2, + ACTIONS(8117), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353686] = 2, + ACTIONS(8119), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353694] = 2, + ACTIONS(8121), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [353702] = 2, + ACTIONS(8123), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346758] = 2, - ACTIONS(7955), 1, - anon_sym_in, + [353710] = 2, + ACTIONS(8125), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346766] = 2, - ACTIONS(7957), 1, - anon_sym_in, + [353718] = 2, + ACTIONS(8127), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346774] = 2, - ACTIONS(7959), 1, - sym_identifier, + [353726] = 2, + ACTIONS(8129), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346782] = 2, - ACTIONS(5588), 1, + [353734] = 2, + ACTIONS(8131), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346790] = 2, - ACTIONS(7961), 1, - sym_identifier, + [353742] = 2, + ACTIONS(8133), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346798] = 2, - ACTIONS(7963), 1, - anon_sym_in, + [353750] = 2, + ACTIONS(8135), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346806] = 2, - ACTIONS(5870), 1, + [353758] = 2, + ACTIONS(8137), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346814] = 2, - ACTIONS(7965), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + [353766] = 2, + ACTIONS(8139), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [346822] = 2, - ACTIONS(7967), 1, - sym_identifier, + [353774] = 2, + ACTIONS(8141), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346830] = 2, - ACTIONS(7969), 1, - anon_sym_in, + [353782] = 2, + ACTIONS(8143), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346838] = 2, - ACTIONS(7971), 1, - anon_sym_RBRACE, + [353790] = 2, + ACTIONS(5796), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346846] = 2, - ACTIONS(7973), 1, - sym_identifier, + [353798] = 2, + ACTIONS(5950), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346854] = 2, - ACTIONS(7975), 1, - anon_sym_RPAREN, + [353806] = 2, + ACTIONS(8145), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346862] = 2, - ACTIONS(7977), 1, - anon_sym_COLON, + [353814] = 2, + ACTIONS(8147), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346870] = 2, - ACTIONS(7979), 1, - anon_sym_in, + [353822] = 2, + ACTIONS(4698), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346878] = 2, - ACTIONS(7981), 1, + [353830] = 2, + ACTIONS(8149), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346886] = 2, - ACTIONS(7983), 1, - anon_sym_in, + [353838] = 2, + ACTIONS(8151), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346894] = 2, - ACTIONS(7985), 1, - sym_identifier, + [353846] = 2, + ACTIONS(8153), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346902] = 2, - ACTIONS(7987), 1, + [353854] = 2, + ACTIONS(8155), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353862] = 2, + ACTIONS(8157), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346910] = 2, - ACTIONS(5844), 1, - anon_sym_RPAREN, + [353870] = 2, + ACTIONS(8159), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346918] = 2, - ACTIONS(7989), 1, + [353878] = 2, + ACTIONS(8161), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353886] = 2, + ACTIONS(8163), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353894] = 2, + ACTIONS(8165), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [353902] = 2, + ACTIONS(8167), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [346926] = 2, - ACTIONS(7991), 1, + [353910] = 2, + ACTIONS(8169), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346934] = 2, - ACTIONS(7993), 1, - anon_sym_RBRACE, + [353918] = 2, + ACTIONS(8171), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346942] = 2, - ACTIONS(7995), 1, - anon_sym_RBRACE, + [353926] = 2, + ACTIONS(8173), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346950] = 2, - ACTIONS(7997), 1, - anon_sym_RBRACE, + [353934] = 2, + ACTIONS(8175), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346958] = 2, - ACTIONS(7999), 1, - anon_sym_RBRACE, + [353942] = 2, + ACTIONS(8177), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346966] = 2, - ACTIONS(8001), 1, - anon_sym_RBRACE, + [353950] = 2, + ACTIONS(8179), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346974] = 2, - ACTIONS(8003), 1, + [353958] = 2, + ACTIONS(8181), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346982] = 2, - ACTIONS(8005), 1, - anon_sym_in, + [353966] = 2, + ACTIONS(5676), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346990] = 2, - ACTIONS(8007), 1, - anon_sym_in, + [353974] = 2, + ACTIONS(8183), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [346998] = 2, - ACTIONS(8009), 1, - anon_sym_LBRACE, + [353982] = 2, + ACTIONS(6703), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347006] = 2, - ACTIONS(8011), 1, - anon_sym_LBRACE, + [353990] = 2, + ACTIONS(5660), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347014] = 2, - ACTIONS(8013), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, + [353998] = 2, + ACTIONS(8185), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [347022] = 2, - ACTIONS(8015), 1, - anon_sym_LBRACE, + [354006] = 2, + ACTIONS(8187), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347030] = 2, - ACTIONS(8017), 1, - anon_sym_LBRACE, + [354014] = 2, + ACTIONS(8189), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347038] = 2, - ACTIONS(5864), 1, - anon_sym_RPAREN, + [354022] = 2, + ACTIONS(8191), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347046] = 2, - ACTIONS(8019), 1, - anon_sym_LBRACE, + [354030] = 2, + ACTIONS(8193), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347054] = 2, - ACTIONS(8021), 1, - anon_sym_LBRACE, + [354038] = 2, + ACTIONS(8195), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347062] = 2, - ACTIONS(8023), 1, - anon_sym_RBRACK, + [354046] = 2, + ACTIONS(8197), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347070] = 2, - ACTIONS(8025), 1, + [354054] = 2, + ACTIONS(5678), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347078] = 2, - ACTIONS(8027), 1, - anon_sym_LBRACE, + [354062] = 2, + ACTIONS(8199), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347086] = 2, - ACTIONS(8029), 1, - anon_sym_LBRACE, + [354070] = 2, + ACTIONS(8201), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347094] = 2, - ACTIONS(8031), 1, - anon_sym_RBRACE, + [354078] = 2, + ACTIONS(8203), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347102] = 2, - ACTIONS(8033), 1, - anon_sym_in, + [354086] = 2, + ACTIONS(8205), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347110] = 2, - ACTIONS(8035), 1, - anon_sym_LBRACE, + [354094] = 2, + ACTIONS(8207), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347118] = 2, - ACTIONS(8037), 1, - anon_sym_LBRACE, + [354102] = 2, + ACTIONS(5990), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347126] = 2, - ACTIONS(8039), 1, - anon_sym_RBRACE, + [354110] = 2, + ACTIONS(7038), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347134] = 2, - ACTIONS(8041), 1, + [354118] = 2, + ACTIONS(8209), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347142] = 2, - ACTIONS(8043), 1, - anon_sym_LBRACE, + [354126] = 2, + ACTIONS(8211), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [354134] = 2, + ACTIONS(8213), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347150] = 2, - ACTIONS(8045), 1, - anon_sym_LBRACE, + [354142] = 2, + ACTIONS(8215), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347158] = 2, - ACTIONS(8047), 1, + [354150] = 2, + ACTIONS(8217), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354158] = 2, + ACTIONS(8219), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347166] = 2, - ACTIONS(8049), 1, - anon_sym_LBRACE, + [354166] = 2, + ACTIONS(8221), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347174] = 2, - ACTIONS(8051), 1, - anon_sym_LBRACE, + [354174] = 2, + ACTIONS(8223), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347182] = 2, - ACTIONS(8053), 1, - anon_sym_LBRACE, + [354182] = 2, + ACTIONS(8225), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347190] = 2, - ACTIONS(8055), 1, - anon_sym_COLON, + [354190] = 2, + ACTIONS(5994), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347198] = 2, - ACTIONS(8057), 1, - anon_sym_COLON, + [354198] = 2, + ACTIONS(8227), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347206] = 2, - ACTIONS(8059), 1, - anon_sym_LBRACE, + [354206] = 2, + ACTIONS(8229), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [354214] = 2, + ACTIONS(8231), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347214] = 2, - ACTIONS(8061), 1, - anon_sym_LBRACE, + [354222] = 2, + ACTIONS(8233), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347222] = 2, - ACTIONS(8063), 1, - anon_sym_LBRACE, + [354230] = 2, + ACTIONS(8235), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347230] = 2, - ACTIONS(8065), 1, - anon_sym_RPAREN, + [354238] = 2, + ACTIONS(8237), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347238] = 2, - ACTIONS(8067), 1, - anon_sym_LBRACE, + [354246] = 2, + ACTIONS(8239), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347246] = 2, - ACTIONS(8069), 1, - anon_sym_LBRACE, + [354254] = 2, + ACTIONS(8241), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347254] = 2, - ACTIONS(8071), 1, - anon_sym_COLON, + [354262] = 2, + ACTIONS(8243), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347262] = 2, - ACTIONS(8073), 1, - sym_identifier, + [354270] = 2, + ACTIONS(8245), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347270] = 2, - ACTIONS(8075), 1, - anon_sym_LBRACE, + [354278] = 2, + ACTIONS(8247), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347278] = 2, - ACTIONS(8077), 1, - anon_sym_LBRACE, + [354286] = 2, + ACTIONS(8249), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347286] = 2, - ACTIONS(8079), 1, + [354294] = 2, + ACTIONS(8251), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [354302] = 2, + ACTIONS(8253), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347294] = 2, - ACTIONS(8081), 1, - anon_sym_in, + [354310] = 2, + ACTIONS(8255), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347302] = 2, - ACTIONS(8083), 1, - anon_sym_LBRACE, + [354318] = 2, + ACTIONS(8257), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347310] = 2, - ACTIONS(8085), 1, - anon_sym_LBRACE, + [354326] = 2, + ACTIONS(8259), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347318] = 2, - ACTIONS(8087), 1, + [354334] = 2, + ACTIONS(8261), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347326] = 2, - ACTIONS(8089), 1, - sym_identifier, + [354342] = 2, + ACTIONS(8263), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347334] = 2, - ACTIONS(8091), 1, - anon_sym_LBRACE, + [354350] = 2, + ACTIONS(8265), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347342] = 2, - ACTIONS(8093), 1, - anon_sym_LBRACE, + [354358] = 2, + ACTIONS(8267), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347350] = 2, - ACTIONS(8095), 1, - sym_identifier, + [354366] = 2, + ACTIONS(8269), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347358] = 2, - ACTIONS(8097), 1, - sym_identifier, + [354374] = 2, + ACTIONS(8271), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347366] = 2, - ACTIONS(8099), 1, - anon_sym_LBRACE, + [354382] = 2, + ACTIONS(8273), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347374] = 2, - ACTIONS(8101), 1, - anon_sym_LBRACE, + [354390] = 2, + ACTIONS(8275), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347382] = 2, - ACTIONS(8103), 1, - sym_identifier, + [354398] = 2, + ACTIONS(8277), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347390] = 2, - ACTIONS(8105), 1, - anon_sym_DQUOTE, + [354406] = 2, + ACTIONS(8279), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347398] = 2, - ACTIONS(8107), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, + [354414] = 2, + ACTIONS(8281), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [347406] = 2, - ACTIONS(8109), 1, - anon_sym_LBRACE, + [354422] = 2, + ACTIONS(8283), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347414] = 2, - ACTIONS(8111), 1, - sym_identifier, + [354430] = 2, + ACTIONS(5684), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347422] = 2, - ACTIONS(5612), 1, + [354438] = 2, + ACTIONS(6639), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347430] = 2, - ACTIONS(8113), 1, - anon_sym_LBRACE, + [354446] = 2, + ACTIONS(8285), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347438] = 2, - ACTIONS(8115), 1, - anon_sym_LBRACE, + [354454] = 2, + ACTIONS(4716), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347446] = 2, - ACTIONS(6629), 1, - anon_sym_RBRACE, + [354462] = 2, + ACTIONS(8287), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347454] = 2, - ACTIONS(8117), 1, - anon_sym_RBRACK, + [354470] = 2, + ACTIONS(4256), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347462] = 2, - ACTIONS(8119), 1, - anon_sym_LBRACE, + [354478] = 2, + ACTIONS(8289), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347470] = 2, - ACTIONS(8121), 1, - anon_sym_LBRACE, + [354486] = 2, + ACTIONS(4290), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347478] = 2, - ACTIONS(8123), 1, + [354494] = 2, + ACTIONS(8291), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347486] = 2, - ACTIONS(8125), 1, + [354502] = 2, + ACTIONS(8293), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347494] = 2, - ACTIONS(8127), 1, - anon_sym_for, + [354510] = 2, + ACTIONS(8295), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347502] = 2, - ACTIONS(8129), 1, - anon_sym_DQUOTE, + [354518] = 2, + ACTIONS(8297), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347510] = 2, - ACTIONS(8131), 1, - anon_sym_RBRACK, + [354526] = 2, + ACTIONS(6166), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347518] = 2, - ACTIONS(8133), 1, + [354534] = 2, + ACTIONS(8299), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347526] = 2, - ACTIONS(8135), 1, + [354542] = 2, + ACTIONS(8301), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347534] = 2, - ACTIONS(8137), 1, - sym_identifier, + [354550] = 2, + ACTIONS(8303), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347542] = 2, - ACTIONS(8139), 1, - anon_sym_RBRACK, + [354558] = 2, + ACTIONS(5958), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347550] = 2, - ACTIONS(8141), 1, + [354566] = 2, + ACTIONS(8305), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347558] = 2, - ACTIONS(8143), 1, - anon_sym_in, + [354574] = 2, + ACTIONS(8307), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347566] = 2, - ACTIONS(8145), 1, - sym_identifier, + [354582] = 2, + ACTIONS(8309), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347574] = 2, - ACTIONS(8147), 1, - sym_identifier, + [354590] = 2, + ACTIONS(8311), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347582] = 2, - ACTIONS(5584), 1, + [354598] = 2, + ACTIONS(8313), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347590] = 2, - ACTIONS(8149), 1, - anon_sym_DQUOTE, + [354606] = 2, + ACTIONS(5978), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347598] = 2, - ACTIONS(8151), 1, + [354614] = 2, + ACTIONS(8315), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347606] = 2, - ACTIONS(8153), 1, - anon_sym_RBRACE, + [354622] = 2, + ACTIONS(8317), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347614] = 2, - ACTIONS(5590), 1, + [354630] = 2, + ACTIONS(5954), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [354638] = 2, + ACTIONS(6635), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347622] = 2, - ACTIONS(8155), 1, - anon_sym_in, + [354646] = 2, + ACTIONS(8319), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347630] = 2, - ACTIONS(6491), 1, + [354654] = 2, + ACTIONS(5664), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347638] = 2, - ACTIONS(8157), 1, - anon_sym_RBRACK, + [354662] = 2, + ACTIONS(8321), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347646] = 2, - ACTIONS(8159), 1, - anon_sym_RBRACE, + [354670] = 2, + ACTIONS(8323), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347654] = 2, - ACTIONS(8161), 1, - anon_sym_RBRACK, + [354678] = 2, + ACTIONS(8325), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347662] = 2, - ACTIONS(8163), 1, + [354686] = 2, + ACTIONS(8327), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347670] = 2, - ACTIONS(8165), 1, + [354694] = 2, + ACTIONS(8329), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347678] = 2, - ACTIONS(6613), 1, + [354702] = 2, + ACTIONS(6609), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347686] = 2, - ACTIONS(8167), 1, - anon_sym_RBRACE, + [354710] = 2, + ACTIONS(8331), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347694] = 2, - ACTIONS(8169), 1, - anon_sym_RPAREN, + [354718] = 2, + ACTIONS(8333), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347702] = 2, - ACTIONS(8171), 1, - anon_sym_RBRACK, + [354726] = 2, + ACTIONS(8335), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347710] = 2, - ACTIONS(8173), 1, - anon_sym_COLON, + [354734] = 2, + ACTIONS(8337), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347718] = 2, - ACTIONS(5858), 1, - anon_sym_RPAREN, + [354742] = 2, + ACTIONS(8339), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347726] = 2, - ACTIONS(8175), 1, + [354750] = 2, + ACTIONS(8341), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347734] = 2, - ACTIONS(8177), 1, - anon_sym_RBRACE, + [354758] = 2, + ACTIONS(8343), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347742] = 2, - ACTIONS(8179), 1, - anon_sym_RBRACE, + [354766] = 2, + ACTIONS(8345), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347750] = 2, - ACTIONS(8181), 1, - sym_identifier, + [354774] = 2, + ACTIONS(8347), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347758] = 2, - ACTIONS(8183), 1, + [354782] = 2, + ACTIONS(8349), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347766] = 2, - ACTIONS(8185), 1, + [354790] = 2, + ACTIONS(8351), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347774] = 2, - ACTIONS(8187), 1, - anon_sym_RBRACE, + [354798] = 2, + ACTIONS(8353), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347782] = 2, - ACTIONS(8189), 1, - anon_sym_RBRACE, + [354806] = 2, + ACTIONS(8355), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347790] = 2, - ACTIONS(8191), 1, + [354814] = 2, + ACTIONS(8357), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347798] = 2, - ACTIONS(8193), 1, - anon_sym_RBRACE, + [354822] = 2, + ACTIONS(8359), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347806] = 2, - ACTIONS(8195), 1, - anon_sym_RBRACE, + [354830] = 2, + ACTIONS(8361), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347814] = 2, - ACTIONS(8197), 1, - anon_sym_DQUOTE, + [354838] = 2, + ACTIONS(8363), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347822] = 2, - ACTIONS(8199), 1, + [354846] = 2, + ACTIONS(8365), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347830] = 2, - ACTIONS(8201), 1, - anon_sym_in, + [354854] = 2, + ACTIONS(8367), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347838] = 2, - ACTIONS(8203), 1, + [354862] = 2, + ACTIONS(8369), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347846] = 2, - ACTIONS(8205), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + [354870] = 2, + ACTIONS(8371), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [347854] = 2, - ACTIONS(8207), 1, + [354878] = 2, + ACTIONS(8373), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347862] = 2, - ACTIONS(8209), 1, - sym_identifier, + [354886] = 2, + ACTIONS(5918), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347870] = 2, - ACTIONS(8211), 1, + [354894] = 2, + ACTIONS(5922), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347878] = 2, - ACTIONS(8213), 1, - anon_sym_in, + [354902] = 2, + ACTIONS(8375), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347886] = 2, - ACTIONS(8215), 1, + [354910] = 2, + ACTIONS(4290), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347894] = 2, - ACTIONS(5888), 1, - anon_sym_RPAREN, + [354918] = 2, + ACTIONS(8377), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347902] = 2, - ACTIONS(8217), 1, - anon_sym_RBRACK, + [354926] = 2, + ACTIONS(4540), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347910] = 2, - ACTIONS(8219), 1, - anon_sym_RBRACE, + [354934] = 2, + ACTIONS(4548), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347918] = 2, - ACTIONS(8221), 1, - anon_sym_in, + [354942] = 2, + ACTIONS(6096), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347926] = 2, - ACTIONS(8223), 1, + [354950] = 2, + ACTIONS(8379), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347934] = 2, - ACTIONS(8225), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [347942] = 2, - ACTIONS(8227), 1, - anon_sym_RBRACK, + [354958] = 2, + ACTIONS(8381), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347950] = 2, - ACTIONS(8229), 1, - anon_sym_RBRACK, + [354966] = 2, + ACTIONS(8383), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347958] = 2, - ACTIONS(8231), 1, + [354974] = 2, + ACTIONS(8385), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347966] = 2, - ACTIONS(8233), 1, + [354982] = 2, + ACTIONS(8387), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347974] = 2, - ACTIONS(8235), 1, - anon_sym_RBRACK, + [354990] = 2, + ACTIONS(8389), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347982] = 2, - ACTIONS(8237), 1, - anon_sym_in, + [354998] = 2, + ACTIONS(8391), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347990] = 2, - ACTIONS(8239), 1, + [355006] = 2, + ACTIONS(8393), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [347998] = 2, - ACTIONS(8241), 1, - anon_sym_RPAREN, + [355014] = 2, + ACTIONS(8395), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348006] = 2, - ACTIONS(4498), 1, + [355022] = 2, + ACTIONS(8397), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348014] = 2, - ACTIONS(8243), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [348022] = 2, - ACTIONS(8245), 1, + [355030] = 2, + ACTIONS(8399), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348030] = 2, - ACTIONS(5900), 1, - anon_sym_RPAREN, + [355038] = 2, + ACTIONS(8401), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348038] = 2, - ACTIONS(8247), 1, + [355046] = 2, + ACTIONS(8403), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348046] = 2, - ACTIONS(8249), 1, - anon_sym_in, + [355054] = 2, + ACTIONS(8405), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348054] = 2, - ACTIONS(8251), 1, + [355062] = 2, + ACTIONS(8407), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348062] = 2, - ACTIONS(8253), 1, - anon_sym_DQUOTE, + [355070] = 2, + ACTIONS(8409), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348070] = 2, - ACTIONS(8255), 1, + [355078] = 2, + ACTIONS(8411), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348078] = 2, - ACTIONS(8257), 1, + [355086] = 2, + ACTIONS(8413), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348086] = 2, - ACTIONS(5602), 1, - anon_sym_RBRACE, + [355094] = 2, + ACTIONS(8415), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348094] = 2, - ACTIONS(8259), 1, - sym_identifier, + [355102] = 2, + ACTIONS(8417), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348102] = 2, - ACTIONS(6553), 1, - anon_sym_RBRACE, + [355110] = 2, + ACTIONS(8419), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348110] = 2, - ACTIONS(8261), 1, - anon_sym_RBRACK, + [355118] = 2, + ACTIONS(6576), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348118] = 2, - ACTIONS(8263), 1, - anon_sym_RPAREN, + [355126] = 2, + ACTIONS(5674), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348126] = 2, - ACTIONS(8265), 1, - anon_sym_in, + [355134] = 2, + ACTIONS(8421), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348134] = 2, - ACTIONS(8267), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [348142] = 2, - ACTIONS(8269), 1, - sym__newline, + [355142] = 2, + ACTIONS(8423), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348150] = 2, - ACTIONS(8271), 1, - anon_sym_in, + [355150] = 2, + ACTIONS(8425), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348158] = 2, - ACTIONS(8273), 1, + [355158] = 2, + ACTIONS(8427), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348166] = 2, - ACTIONS(8275), 1, - anon_sym_in, + [355166] = 2, + ACTIONS(8429), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348174] = 2, - ACTIONS(8277), 1, - anon_sym_RBRACE, + [355174] = 2, + ACTIONS(8431), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348182] = 2, - ACTIONS(5822), 1, - anon_sym_RPAREN, + [355182] = 2, + ACTIONS(8433), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348190] = 2, - ACTIONS(8279), 1, - anon_sym_RBRACE, + [355190] = 2, + ACTIONS(8435), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348198] = 2, - ACTIONS(7487), 1, - sym__newline, + [355198] = 2, + ACTIONS(8437), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348206] = 2, - ACTIONS(8281), 1, - anon_sym_RPAREN, + [355206] = 2, + ACTIONS(8439), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348214] = 2, - ACTIONS(8283), 1, + [355214] = 2, + ACTIONS(7511), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348222] = 2, - ACTIONS(8285), 1, - anon_sym_RBRACE, + [355222] = 2, + ACTIONS(8441), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348230] = 2, - ACTIONS(8287), 1, + [355230] = 2, + ACTIONS(8443), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348238] = 2, - ACTIONS(8289), 1, + [355238] = 2, + ACTIONS(8445), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348246] = 2, - ACTIONS(8291), 1, + [355246] = 2, + ACTIONS(8447), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348254] = 2, - ACTIONS(8293), 1, - anon_sym_in, - ACTIONS(3), 2, + [355254] = 2, + ACTIONS(8449), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [348262] = 2, - ACTIONS(8295), 1, + [355262] = 2, + ACTIONS(8451), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348270] = 2, - ACTIONS(8297), 1, - anon_sym_RBRACE, + [355270] = 2, + ACTIONS(8453), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348278] = 2, - ACTIONS(5678), 1, - sym__newline, + [355278] = 2, + ACTIONS(8455), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348286] = 2, - ACTIONS(8299), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [355286] = 2, + ACTIONS(8457), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348294] = 2, - ACTIONS(8301), 1, + [355294] = 2, + ACTIONS(8459), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348302] = 2, - ACTIONS(8303), 1, - sym_identifier, + [355302] = 2, + ACTIONS(8461), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348310] = 2, - ACTIONS(8305), 1, + [355310] = 2, + ACTIONS(8463), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355318] = 2, + ACTIONS(8465), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348318] = 2, - ACTIONS(8307), 1, - anon_sym_DQUOTE, + [355326] = 2, + ACTIONS(8467), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348326] = 2, - ACTIONS(8309), 1, - anon_sym_RBRACE, + [355334] = 2, + ACTIONS(8469), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348334] = 2, - ACTIONS(8311), 1, + [355342] = 2, + ACTIONS(8471), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348342] = 2, - ACTIONS(8313), 1, + [355350] = 2, + ACTIONS(8473), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348350] = 2, - ACTIONS(8315), 1, - anon_sym_RBRACK, + [355358] = 2, + ACTIONS(8475), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348358] = 2, - ACTIONS(8317), 1, - anon_sym_RBRACK, + [355366] = 2, + ACTIONS(8477), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348366] = 2, - ACTIONS(8319), 1, - sym_identifier, + [355374] = 2, + ACTIONS(8479), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348374] = 2, - ACTIONS(8321), 1, - anon_sym_RPAREN, + [355382] = 2, + ACTIONS(8481), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348382] = 2, - ACTIONS(8323), 1, + [355390] = 2, + ACTIONS(8483), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348390] = 2, - ACTIONS(8325), 1, + [355398] = 2, + ACTIONS(8485), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355406] = 2, + ACTIONS(8487), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348398] = 2, - ACTIONS(8327), 1, + [355414] = 2, + ACTIONS(8489), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348406] = 2, - ACTIONS(8329), 1, - anon_sym_in, + [355422] = 2, + ACTIONS(8491), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348414] = 2, - ACTIONS(8331), 1, - anon_sym_RBRACK, + [355430] = 2, + ACTIONS(8493), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348422] = 2, - ACTIONS(8333), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [355438] = 2, + ACTIONS(8495), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348430] = 2, - ACTIONS(5884), 1, - anon_sym_RPAREN, + [355446] = 2, + ACTIONS(8497), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348438] = 2, - ACTIONS(8335), 1, - sym_identifier, + [355454] = 2, + ACTIONS(8499), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348446] = 2, - ACTIONS(6539), 1, - anon_sym_RBRACE, + [355462] = 2, + ACTIONS(8501), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348454] = 2, - ACTIONS(8337), 1, + [355470] = 2, + ACTIONS(8503), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348462] = 2, - ACTIONS(8339), 1, + [355478] = 2, + ACTIONS(6580), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348470] = 2, - ACTIONS(5830), 1, + [355486] = 2, + ACTIONS(5962), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348478] = 2, - ACTIONS(8341), 1, + [355494] = 2, + ACTIONS(5686), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348486] = 2, - ACTIONS(8343), 1, - anon_sym_RBRACK, + [355502] = 2, + ACTIONS(8505), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348494] = 2, - ACTIONS(8345), 1, - anon_sym_in, + [355510] = 2, + ACTIONS(8507), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348502] = 2, - ACTIONS(8347), 1, + [355518] = 2, + ACTIONS(8509), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348510] = 2, - ACTIONS(5604), 1, + [355526] = 2, + ACTIONS(8511), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348518] = 2, - ACTIONS(8349), 1, + [355534] = 2, + ACTIONS(5974), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355542] = 2, + ACTIONS(8513), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348526] = 2, - ACTIONS(8351), 1, - anon_sym_in, + [355550] = 2, + ACTIONS(8515), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348534] = 2, - ACTIONS(8353), 1, - anon_sym_in, + [355558] = 2, + ACTIONS(5672), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348542] = 2, - ACTIONS(8355), 1, - anon_sym_in, + [355566] = 2, + ACTIONS(8517), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348550] = 2, - ACTIONS(8357), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [355574] = 2, + ACTIONS(8519), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348558] = 2, - ACTIONS(8359), 1, + [355582] = 2, + ACTIONS(8521), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348566] = 2, - ACTIONS(8361), 1, - anon_sym_in, + [355590] = 2, + ACTIONS(8523), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348574] = 2, - ACTIONS(8363), 1, - anon_sym_in, + [355598] = 2, + ACTIONS(8525), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348582] = 2, - ACTIONS(8365), 1, - anon_sym_in, + [355606] = 2, + ACTIONS(8527), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348590] = 2, - ACTIONS(8367), 1, - sym_identifier, + [355614] = 2, + ACTIONS(6586), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348598] = 2, - ACTIONS(8369), 1, - sym_identifier, + [355622] = 2, + ACTIONS(8529), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348606] = 2, - ACTIONS(8371), 1, - anon_sym_DQUOTE, + [355630] = 2, + ACTIONS(8531), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348614] = 2, - ACTIONS(8373), 1, - anon_sym_RBRACE, + [355638] = 2, + ACTIONS(8533), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348622] = 2, - ACTIONS(8375), 1, - anon_sym_DQUOTE, + [355646] = 2, + ACTIONS(8535), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348630] = 2, - ACTIONS(8377), 1, + [355654] = 2, + ACTIONS(8537), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348638] = 2, - ACTIONS(5582), 1, - anon_sym_RBRACE, + [355662] = 2, + ACTIONS(8539), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348646] = 2, - ACTIONS(8379), 1, + [355670] = 2, + ACTIONS(8541), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348654] = 2, - ACTIONS(6621), 1, - anon_sym_RBRACE, + [355678] = 2, + ACTIONS(8543), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348662] = 2, - ACTIONS(5854), 1, - anon_sym_RPAREN, + [355686] = 2, + ACTIONS(8545), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348670] = 2, - ACTIONS(8381), 1, + [355694] = 2, + ACTIONS(8547), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348678] = 2, - ACTIONS(8383), 1, + [355702] = 2, + ACTIONS(8549), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355710] = 2, + ACTIONS(8551), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348686] = 2, - ACTIONS(8385), 1, - sym_identifier, + [355718] = 2, + ACTIONS(8553), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348694] = 2, - ACTIONS(8387), 1, + [355726] = 2, + ACTIONS(8555), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348702] = 2, - ACTIONS(8389), 1, + [355734] = 2, + ACTIONS(8557), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [355742] = 2, + ACTIONS(8559), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348710] = 2, - ACTIONS(8391), 1, - sym_identifier, + [355750] = 2, + ACTIONS(8561), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348718] = 2, - ACTIONS(8393), 1, + [355758] = 2, + ACTIONS(8563), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348726] = 2, - ACTIONS(8395), 1, + [355766] = 2, + ACTIONS(8565), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348734] = 2, - ACTIONS(8397), 1, - anon_sym_in, + [355774] = 2, + ACTIONS(5662), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348742] = 2, - ACTIONS(8399), 1, - anon_sym_RBRACE, + [355782] = 2, + ACTIONS(8567), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348750] = 2, - ACTIONS(8401), 1, + [355790] = 2, + ACTIONS(8569), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348758] = 2, - ACTIONS(4387), 1, + [355798] = 2, + ACTIONS(8571), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348766] = 2, - ACTIONS(8403), 1, - anon_sym_RPAREN, + [355806] = 2, + ACTIONS(8573), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348774] = 2, - ACTIONS(8405), 1, + [355814] = 2, + ACTIONS(8575), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348782] = 2, - ACTIONS(8407), 1, - anon_sym_RPAREN, + [355822] = 2, + ACTIONS(8577), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348790] = 2, - ACTIONS(8409), 1, - sym_identifier, + [355830] = 2, + ACTIONS(8579), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348798] = 2, - ACTIONS(8411), 1, - anon_sym_RBRACE, + [355838] = 2, + ACTIONS(8581), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348806] = 2, - ACTIONS(8413), 1, + [355846] = 2, + ACTIONS(8583), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348814] = 2, - ACTIONS(8415), 1, - anon_sym_in, + [355854] = 2, + ACTIONS(6697), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348822] = 2, - ACTIONS(8417), 1, - anon_sym_RBRACE, + [355862] = 2, + ACTIONS(8585), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348830] = 2, - ACTIONS(8419), 1, + [355870] = 2, + ACTIONS(8587), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348838] = 2, - ACTIONS(8421), 1, + [355878] = 2, + ACTIONS(8589), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348846] = 2, - ACTIONS(8423), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [355886] = 2, + ACTIONS(8591), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348854] = 2, - ACTIONS(8425), 1, + [355894] = 2, + ACTIONS(8593), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348862] = 2, - ACTIONS(8427), 1, + [355902] = 2, + ACTIONS(8595), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348870] = 2, - ACTIONS(8429), 1, - anon_sym_COLON, + [355910] = 2, + ACTIONS(8597), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348878] = 2, - ACTIONS(8431), 1, + [355918] = 2, + ACTIONS(6647), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348886] = 2, - ACTIONS(8433), 1, - anon_sym_COLON, + [355926] = 2, + ACTIONS(6202), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348894] = 2, - ACTIONS(8435), 1, - anon_sym_RBRACE, + [355934] = 2, + ACTIONS(8599), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348902] = 2, - ACTIONS(8437), 1, - anon_sym_RBRACE, + [355942] = 2, + ACTIONS(8601), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348910] = 2, - ACTIONS(8439), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [355950] = 2, + ACTIONS(8603), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348918] = 2, - ACTIONS(8441), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [355958] = 2, + ACTIONS(8605), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348926] = 2, - ACTIONS(8443), 1, - anon_sym_RBRACE, + [355966] = 2, + ACTIONS(8607), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348934] = 2, - ACTIONS(8445), 1, - anon_sym_RBRACE, + [355974] = 2, + ACTIONS(8609), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348942] = 2, - ACTIONS(5594), 1, - anon_sym_RBRACE, + [355982] = 2, + ACTIONS(8611), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348950] = 2, - ACTIONS(8447), 1, + [355990] = 2, + ACTIONS(8613), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348958] = 2, - ACTIONS(8449), 1, - anon_sym_RPAREN, + [355998] = 2, + ACTIONS(8615), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348966] = 2, - ACTIONS(5896), 1, - anon_sym_RPAREN, + [356006] = 2, + ACTIONS(8617), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348974] = 2, - ACTIONS(6521), 1, + [356014] = 2, + ACTIONS(5682), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348982] = 2, - ACTIONS(8451), 1, - anon_sym_RBRACK, + [356022] = 2, + ACTIONS(8619), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348990] = 2, - ACTIONS(8453), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [356030] = 2, + ACTIONS(8621), 1, + sym__newline, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [348998] = 2, - ACTIONS(8455), 1, - anon_sym_RBRACE, + [356038] = 2, + ACTIONS(8623), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349006] = 2, - ACTIONS(8457), 1, - anon_sym_RBRACE, + [356046] = 2, + ACTIONS(8625), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349014] = 2, - ACTIONS(8459), 1, - anon_sym_LBRACE, + [356054] = 2, + ACTIONS(8627), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349022] = 2, - ACTIONS(8461), 1, - anon_sym_COLON, + [356062] = 2, + ACTIONS(8629), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349030] = 2, - ACTIONS(8463), 1, - sym_integer, + [356070] = 2, + ACTIONS(8631), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349038] = 2, - ACTIONS(8465), 1, - anon_sym_RPAREN, + [356078] = 2, + ACTIONS(8633), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349046] = 2, - ACTIONS(8467), 1, - anon_sym_RBRACK, + [356086] = 2, + ACTIONS(8635), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349054] = 2, - ACTIONS(8469), 1, - sym_identifier, + [356094] = 2, + ACTIONS(8637), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349062] = 2, - ACTIONS(8471), 1, + [356102] = 2, + ACTIONS(8639), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349070] = 2, - ACTIONS(8473), 1, + [356110] = 2, + ACTIONS(5998), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349078] = 2, - ACTIONS(8475), 1, - anon_sym_RBRACE, + [356118] = 2, + ACTIONS(8641), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349086] = 2, - ACTIONS(4197), 1, - anon_sym_COLON, + [356126] = 2, + ACTIONS(5886), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349094] = 2, - ACTIONS(8477), 1, - anon_sym_RPAREN, + [356134] = 2, + ACTIONS(8643), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349102] = 2, - ACTIONS(8479), 1, + [356142] = 2, + ACTIONS(8645), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349110] = 2, - ACTIONS(8481), 1, - sym_identifier, + [356150] = 2, + ACTIONS(8647), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349118] = 2, - ACTIONS(5978), 1, - sym__newline, + [356158] = 2, + ACTIONS(8649), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349126] = 2, - ACTIONS(8483), 1, + [356166] = 2, + ACTIONS(8651), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349134] = 2, - ACTIONS(5874), 1, - anon_sym_RPAREN, + [356174] = 2, + ACTIONS(8653), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349142] = 2, - ACTIONS(8485), 1, + [356182] = 2, + ACTIONS(8655), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356190] = 2, + ACTIONS(8657), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [349150] = 2, - ACTIONS(8487), 1, - ts_builtin_sym_end, + [356198] = 2, + ACTIONS(8659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349158] = 2, - ACTIONS(8489), 1, - anon_sym_RBRACE, + [356206] = 2, + ACTIONS(8661), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349166] = 2, - ACTIONS(8491), 1, - anon_sym_COLON, + [356214] = 2, + ACTIONS(8663), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349174] = 2, - ACTIONS(8493), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [349182] = 2, - ACTIONS(8495), 1, - anon_sym_COLON, + [356222] = 2, + ACTIONS(8665), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349190] = 2, - ACTIONS(8497), 1, - sym_identifier, + [356230] = 2, + ACTIONS(8667), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349198] = 2, - ACTIONS(8499), 1, - sym_identifier, + [356238] = 2, + ACTIONS(8669), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349206] = 2, - ACTIONS(8501), 1, + [356246] = 2, + ACTIONS(5688), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349214] = 2, - ACTIONS(8503), 1, + [356254] = 2, + ACTIONS(8671), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349222] = 2, - ACTIONS(8505), 1, + [356262] = 2, + ACTIONS(8673), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349230] = 2, - ACTIONS(8507), 1, - anon_sym_RBRACE, + [356270] = 2, + ACTIONS(8675), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349238] = 2, - ACTIONS(8509), 1, - anon_sym_RBRACK, + [356278] = 2, + ACTIONS(8677), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349246] = 2, - ACTIONS(8511), 1, - anon_sym_in, + [356286] = 2, + ACTIONS(8679), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349254] = 2, - ACTIONS(8513), 1, + [356294] = 2, + ACTIONS(8681), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349262] = 2, - ACTIONS(8515), 1, - anon_sym_in, + [356302] = 2, + ACTIONS(4230), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349270] = 2, - ACTIONS(8517), 1, + [356310] = 2, + ACTIONS(8683), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349278] = 2, - ACTIONS(8519), 1, + [356318] = 2, + ACTIONS(8685), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349286] = 2, - ACTIONS(8521), 1, - anon_sym_COLON, + [356326] = 2, + ACTIONS(4694), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349294] = 2, - ACTIONS(8523), 1, - anon_sym_in, + [356334] = 2, + ACTIONS(8687), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349302] = 2, - ACTIONS(8525), 1, - sym_identifier, + [356342] = 2, + ACTIONS(8689), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349310] = 2, - ACTIONS(8527), 1, - anon_sym_DQUOTE, + [356350] = 2, + ACTIONS(8691), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349318] = 2, - ACTIONS(8529), 1, - anon_sym_RBRACE, + [356358] = 2, + ACTIONS(8693), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349326] = 2, - ACTIONS(8531), 1, - anon_sym_RPAREN, + [356366] = 2, + ACTIONS(8695), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349334] = 2, - ACTIONS(5580), 1, + [356374] = 2, + ACTIONS(6562), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349342] = 2, - ACTIONS(8533), 1, - anon_sym_COLON, + [356382] = 2, + ACTIONS(8697), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349350] = 2, - ACTIONS(6509), 1, - anon_sym_RBRACE, + [356390] = 2, + ACTIONS(8699), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349358] = 2, - ACTIONS(8535), 1, - anon_sym_in, + [356398] = 2, + ACTIONS(7619), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349366] = 2, - ACTIONS(8537), 1, - anon_sym_RBRACK, + [356406] = 2, + ACTIONS(8701), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349374] = 2, - ACTIONS(8539), 1, - anon_sym_RBRACK, + [356414] = 2, + ACTIONS(6717), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349382] = 2, - ACTIONS(6499), 1, - anon_sym_RBRACE, + [356422] = 2, + ACTIONS(8703), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349390] = 2, - ACTIONS(8541), 1, + [356430] = 2, + ACTIONS(5694), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349398] = 2, - ACTIONS(6186), 1, + [356438] = 2, + ACTIONS(8705), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349406] = 2, - ACTIONS(8543), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [356446] = 2, + ACTIONS(8707), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349414] = 2, - ACTIONS(8545), 1, - anon_sym_in, + [356454] = 2, + ACTIONS(8709), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349422] = 2, - ACTIONS(8547), 1, - sym_identifier, + [356462] = 2, + ACTIONS(8711), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349430] = 2, - ACTIONS(5614), 1, - anon_sym_RBRACE, + [356470] = 2, + ACTIONS(8713), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349438] = 2, - ACTIONS(8549), 1, - sym__newline, + [356478] = 2, + ACTIONS(8715), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349446] = 2, - ACTIONS(7477), 1, + [356486] = 2, + ACTIONS(8717), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349454] = 2, - ACTIONS(8551), 1, - anon_sym_RBRACE, + [356494] = 2, + ACTIONS(8719), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349462] = 2, - ACTIONS(8553), 1, + [356502] = 2, + ACTIONS(8721), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349470] = 2, - ACTIONS(8555), 1, - sym_identifier, + [356510] = 2, + ACTIONS(8723), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349478] = 2, - ACTIONS(8557), 1, + [356518] = 2, + ACTIONS(8725), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349486] = 2, - ACTIONS(8559), 1, - anon_sym_DQUOTE, + [356526] = 2, + ACTIONS(8727), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349494] = 2, - ACTIONS(8561), 1, + [356534] = 2, + ACTIONS(4788), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349502] = 2, - ACTIONS(8563), 1, + [356542] = 2, + ACTIONS(8729), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356550] = 2, + ACTIONS(6330), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349510] = 2, - ACTIONS(8565), 1, - anon_sym_RBRACE, + [356558] = 2, + ACTIONS(8731), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [356566] = 2, + ACTIONS(8733), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349518] = 2, - ACTIONS(8567), 1, - anon_sym_RPAREN, + [356574] = 2, + ACTIONS(8735), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349526] = 2, - ACTIONS(8569), 1, + [356582] = 2, + ACTIONS(8737), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356590] = 2, + ACTIONS(8739), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356598] = 2, + ACTIONS(8741), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349534] = 2, - ACTIONS(8571), 1, + [356606] = 2, + ACTIONS(7503), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349542] = 2, - ACTIONS(8573), 1, - anon_sym_in, + [356614] = 2, + ACTIONS(8743), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349550] = 2, - ACTIONS(8575), 1, - anon_sym_in, + [356622] = 2, + ACTIONS(8745), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349558] = 2, - ACTIONS(8577), 1, - anon_sym_in, + [356630] = 2, + ACTIONS(8747), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349566] = 2, - ACTIONS(8579), 1, + [356638] = 2, + ACTIONS(8749), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349574] = 2, - ACTIONS(8581), 1, + [356646] = 2, + ACTIONS(8751), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349582] = 2, - ACTIONS(8583), 1, - sym_identifier, + [356654] = 2, + ACTIONS(8753), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349590] = 2, - ACTIONS(8585), 1, + [356662] = 2, + ACTIONS(8755), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349598] = 2, - ACTIONS(8587), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [356670] = 2, + ACTIONS(8757), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349606] = 2, - ACTIONS(8589), 1, + [356678] = 2, + ACTIONS(8759), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349614] = 2, - ACTIONS(8591), 1, - anon_sym_LBRACE, + [356686] = 2, + ACTIONS(8761), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349622] = 2, - ACTIONS(8593), 1, + [356694] = 2, + ACTIONS(8763), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [349630] = 2, + [356702] = 2, + ACTIONS(8765), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [356710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 1, + ACTIONS(8767), 1, sym_line_continuation, - [349637] = 2, + [356717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8769), 1, sym_line_continuation, - [349644] = 2, + [356724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 1, + ACTIONS(8771), 1, sym_line_continuation, - [349651] = 2, + [356731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8601), 1, + ACTIONS(8773), 1, sym_line_continuation, - [349658] = 2, + [356738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, + ACTIONS(8775), 1, sym_line_continuation, - [349665] = 2, + [356745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8605), 1, + ACTIONS(8777), 1, sym_line_continuation, - [349672] = 2, + [356752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8607), 1, + ACTIONS(8779), 1, sym_line_continuation, - [349679] = 2, + [356759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8609), 1, + ACTIONS(8781), 1, sym_line_continuation, - [349686] = 2, + [356766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8611), 1, + ACTIONS(8783), 1, sym_line_continuation, - [349693] = 2, + [356773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8613), 1, + ACTIONS(8785), 1, sym_line_continuation, - [349700] = 2, + [356780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, + ACTIONS(8787), 1, sym_line_continuation, - [349707] = 2, + [356787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(8789), 1, sym_line_continuation, - [349714] = 2, + [356794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(8791), 1, sym_line_continuation, - [349721] = 2, + [356801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, + ACTIONS(8793), 1, sym_line_continuation, - [349728] = 2, + [356808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8623), 1, + ACTIONS(8795), 1, sym_line_continuation, - [349735] = 2, + [356815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(8797), 1, sym_line_continuation, - [349742] = 2, + [356822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, + ACTIONS(8799), 1, sym_line_continuation, - [349749] = 2, + [356829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 1, + ACTIONS(8801), 1, sym_line_continuation, - [349756] = 2, + [356836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8631), 1, + ACTIONS(8803), 1, sym_line_continuation, - [349763] = 2, + [356843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8805), 1, sym_line_continuation, - [349770] = 2, + [356850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8635), 1, + ACTIONS(8807), 1, sym_line_continuation, - [349777] = 2, + [356857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(8809), 1, sym_line_continuation, - [349784] = 2, + [356864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8639), 1, + ACTIONS(8811), 1, sym_line_continuation, - [349791] = 2, + [356871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 1, + ACTIONS(8813), 1, sym_line_continuation, - [349798] = 2, + [356878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8643), 1, + ACTIONS(8815), 1, sym_line_continuation, - [349805] = 2, + [356885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8645), 1, + ACTIONS(8817), 1, sym_line_continuation, - [349812] = 2, + [356892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8647), 1, + ACTIONS(8819), 1, sym_line_continuation, - [349819] = 2, + [356899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8649), 1, + ACTIONS(8821), 1, sym_line_continuation, - [349826] = 2, + [356906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 1, + ACTIONS(8823), 1, sym_line_continuation, - [349833] = 2, + [356913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8653), 1, + ACTIONS(8825), 1, sym_line_continuation, - [349840] = 2, + [356920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 1, + ACTIONS(8827), 1, sym_line_continuation, - [349847] = 2, + [356927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 1, + ACTIONS(8829), 1, sym_line_continuation, - [349854] = 2, + [356934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8659), 1, + ACTIONS(8831), 1, sym_line_continuation, - [349861] = 2, + [356941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8661), 1, + ACTIONS(8833), 1, sym_line_continuation, - [349868] = 2, + [356948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8663), 1, + ACTIONS(8835), 1, sym_line_continuation, - [349875] = 2, + [356955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 1, + ACTIONS(8837), 1, sym_line_continuation, - [349882] = 2, + [356962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(8839), 1, sym_line_continuation, - [349889] = 2, + [356969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8669), 1, + ACTIONS(8841), 1, sym_line_continuation, - [349896] = 2, + [356976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8671), 1, + ACTIONS(8843), 1, sym_line_continuation, - [349903] = 2, + [356983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8673), 1, + ACTIONS(8845), 1, sym_line_continuation, - [349910] = 2, + [356990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 1, + ACTIONS(8847), 1, sym_line_continuation, - [349917] = 2, + [356997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8677), 1, + ACTIONS(8849), 1, sym_line_continuation, - [349924] = 2, + [357004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8679), 1, + ACTIONS(8851), 1, sym_line_continuation, - [349931] = 2, + [357011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8681), 1, + ACTIONS(8853), 1, sym_line_continuation, - [349938] = 2, + [357018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8683), 1, + ACTIONS(8855), 1, sym_line_continuation, - [349945] = 2, + [357025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8685), 1, + ACTIONS(8857), 1, sym_line_continuation, - [349952] = 2, + [357032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8687), 1, + ACTIONS(8859), 1, sym_line_continuation, - [349959] = 2, + [357039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(8861), 1, sym_line_continuation, - [349966] = 2, + [357046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(8863), 1, sym_line_continuation, - [349973] = 2, + [357053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8691), 1, + ACTIONS(8865), 1, sym_line_continuation, - [349980] = 2, + [357060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 1, + ACTIONS(3301), 1, sym_line_continuation, - [349987] = 2, + [357067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8695), 1, + ACTIONS(8867), 1, sym_line_continuation, - [349994] = 2, + [357074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 1, + ACTIONS(8869), 1, sym_line_continuation, - [350001] = 2, + [357081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8699), 1, + ACTIONS(8871), 1, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(452)] = 0, - [SMALL_STATE(453)] = 117, - [SMALL_STATE(454)] = 234, - [SMALL_STATE(455)] = 355, - [SMALL_STATE(456)] = 476, - [SMALL_STATE(457)] = 593, - [SMALL_STATE(458)] = 710, - [SMALL_STATE(459)] = 827, - [SMALL_STATE(460)] = 944, - [SMALL_STATE(461)] = 1061, - [SMALL_STATE(462)] = 1178, - [SMALL_STATE(463)] = 1299, - [SMALL_STATE(464)] = 1416, - [SMALL_STATE(465)] = 1537, - [SMALL_STATE(466)] = 1654, - [SMALL_STATE(467)] = 1771, - [SMALL_STATE(468)] = 1888, - [SMALL_STATE(469)] = 2005, - [SMALL_STATE(470)] = 2124, - [SMALL_STATE(471)] = 2241, - [SMALL_STATE(472)] = 2362, - [SMALL_STATE(473)] = 2479, - [SMALL_STATE(474)] = 2596, - [SMALL_STATE(475)] = 2717, - [SMALL_STATE(476)] = 2834, - [SMALL_STATE(477)] = 2955, - [SMALL_STATE(478)] = 3072, - [SMALL_STATE(479)] = 3189, - [SMALL_STATE(480)] = 3310, - [SMALL_STATE(481)] = 3427, - [SMALL_STATE(482)] = 3548, - [SMALL_STATE(483)] = 3665, - [SMALL_STATE(484)] = 3782, - [SMALL_STATE(485)] = 3899, - [SMALL_STATE(486)] = 4020, - [SMALL_STATE(487)] = 4137, - [SMALL_STATE(488)] = 4254, - [SMALL_STATE(489)] = 4371, - [SMALL_STATE(490)] = 4492, - [SMALL_STATE(491)] = 4609, - [SMALL_STATE(492)] = 4730, - [SMALL_STATE(493)] = 4851, - [SMALL_STATE(494)] = 4970, - [SMALL_STATE(495)] = 5087, - [SMALL_STATE(496)] = 5208, - [SMALL_STATE(497)] = 5325, - [SMALL_STATE(498)] = 5446, - [SMALL_STATE(499)] = 5563, - [SMALL_STATE(500)] = 5684, - [SMALL_STATE(501)] = 5805, - [SMALL_STATE(502)] = 5926, - [SMALL_STATE(503)] = 6047, - [SMALL_STATE(504)] = 6164, - [SMALL_STATE(505)] = 6285, - [SMALL_STATE(506)] = 6402, - [SMALL_STATE(507)] = 6519, - [SMALL_STATE(508)] = 6636, - [SMALL_STATE(509)] = 6753, - [SMALL_STATE(510)] = 6870, - [SMALL_STATE(511)] = 6987, - [SMALL_STATE(512)] = 7108, - [SMALL_STATE(513)] = 7225, - [SMALL_STATE(514)] = 7346, - [SMALL_STATE(515)] = 7467, - [SMALL_STATE(516)] = 7588, - [SMALL_STATE(517)] = 7705, - [SMALL_STATE(518)] = 7822, - [SMALL_STATE(519)] = 7943, - [SMALL_STATE(520)] = 8064, - [SMALL_STATE(521)] = 8181, - [SMALL_STATE(522)] = 8298, - [SMALL_STATE(523)] = 8419, - [SMALL_STATE(524)] = 8536, - [SMALL_STATE(525)] = 8653, - [SMALL_STATE(526)] = 8770, - [SMALL_STATE(527)] = 8887, - [SMALL_STATE(528)] = 9008, - [SMALL_STATE(529)] = 9129, - [SMALL_STATE(530)] = 9246, - [SMALL_STATE(531)] = 9367, - [SMALL_STATE(532)] = 9484, - [SMALL_STATE(533)] = 9601, - [SMALL_STATE(534)] = 9718, - [SMALL_STATE(535)] = 9835, - [SMALL_STATE(536)] = 9952, - [SMALL_STATE(537)] = 10069, - [SMALL_STATE(538)] = 10186, - [SMALL_STATE(539)] = 10267, - [SMALL_STATE(540)] = 10384, - [SMALL_STATE(541)] = 10501, - [SMALL_STATE(542)] = 10618, - [SMALL_STATE(543)] = 10735, - [SMALL_STATE(544)] = 10856, - [SMALL_STATE(545)] = 10973, - [SMALL_STATE(546)] = 11094, - [SMALL_STATE(547)] = 11211, - [SMALL_STATE(548)] = 11332, - [SMALL_STATE(549)] = 11449, - [SMALL_STATE(550)] = 11566, - [SMALL_STATE(551)] = 11687, - [SMALL_STATE(552)] = 11804, - [SMALL_STATE(553)] = 11921, - [SMALL_STATE(554)] = 12042, - [SMALL_STATE(555)] = 12163, - [SMALL_STATE(556)] = 12280, - [SMALL_STATE(557)] = 12397, - [SMALL_STATE(558)] = 12518, - [SMALL_STATE(559)] = 12635, - [SMALL_STATE(560)] = 12752, - [SMALL_STATE(561)] = 12873, - [SMALL_STATE(562)] = 12990, - [SMALL_STATE(563)] = 13107, - [SMALL_STATE(564)] = 13228, - [SMALL_STATE(565)] = 13345, - [SMALL_STATE(566)] = 13426, - [SMALL_STATE(567)] = 13543, - [SMALL_STATE(568)] = 13660, - [SMALL_STATE(569)] = 13777, - [SMALL_STATE(570)] = 13894, - [SMALL_STATE(571)] = 14011, - [SMALL_STATE(572)] = 14128, - [SMALL_STATE(573)] = 14245, - [SMALL_STATE(574)] = 14362, - [SMALL_STATE(575)] = 14479, - [SMALL_STATE(576)] = 14596, - [SMALL_STATE(577)] = 14713, - [SMALL_STATE(578)] = 14830, - [SMALL_STATE(579)] = 14947, - [SMALL_STATE(580)] = 15068, - [SMALL_STATE(581)] = 15185, - [SMALL_STATE(582)] = 15302, - [SMALL_STATE(583)] = 15419, - [SMALL_STATE(584)] = 15540, - [SMALL_STATE(585)] = 15657, - [SMALL_STATE(586)] = 15774, - [SMALL_STATE(587)] = 15891, - [SMALL_STATE(588)] = 16012, - [SMALL_STATE(589)] = 16129, - [SMALL_STATE(590)] = 16246, - [SMALL_STATE(591)] = 16363, - [SMALL_STATE(592)] = 16480, - [SMALL_STATE(593)] = 16597, - [SMALL_STATE(594)] = 16714, - [SMALL_STATE(595)] = 16835, - [SMALL_STATE(596)] = 16956, - [SMALL_STATE(597)] = 17073, - [SMALL_STATE(598)] = 17190, - [SMALL_STATE(599)] = 17307, - [SMALL_STATE(600)] = 17424, - [SMALL_STATE(601)] = 17541, - [SMALL_STATE(602)] = 17658, - [SMALL_STATE(603)] = 17775, - [SMALL_STATE(604)] = 17892, - [SMALL_STATE(605)] = 18009, - [SMALL_STATE(606)] = 18126, - [SMALL_STATE(607)] = 18243, - [SMALL_STATE(608)] = 18360, - [SMALL_STATE(609)] = 18477, - [SMALL_STATE(610)] = 18594, - [SMALL_STATE(611)] = 18711, - [SMALL_STATE(612)] = 18828, - [SMALL_STATE(613)] = 18945, - [SMALL_STATE(614)] = 19062, - [SMALL_STATE(615)] = 19179, - [SMALL_STATE(616)] = 19296, - [SMALL_STATE(617)] = 19413, - [SMALL_STATE(618)] = 19530, - [SMALL_STATE(619)] = 19651, - [SMALL_STATE(620)] = 19768, - [SMALL_STATE(621)] = 19885, - [SMALL_STATE(622)] = 20002, - [SMALL_STATE(623)] = 20119, - [SMALL_STATE(624)] = 20236, - [SMALL_STATE(625)] = 20357, - [SMALL_STATE(626)] = 20474, - [SMALL_STATE(627)] = 20595, - [SMALL_STATE(628)] = 20712, - [SMALL_STATE(629)] = 20829, - [SMALL_STATE(630)] = 20946, - [SMALL_STATE(631)] = 21063, - [SMALL_STATE(632)] = 21180, - [SMALL_STATE(633)] = 21297, - [SMALL_STATE(634)] = 21414, - [SMALL_STATE(635)] = 21531, - [SMALL_STATE(636)] = 21612, - [SMALL_STATE(637)] = 21729, - [SMALL_STATE(638)] = 21846, - [SMALL_STATE(639)] = 21963, - [SMALL_STATE(640)] = 22080, - [SMALL_STATE(641)] = 22197, - [SMALL_STATE(642)] = 22314, - [SMALL_STATE(643)] = 22395, - [SMALL_STATE(644)] = 22512, - [SMALL_STATE(645)] = 22629, - [SMALL_STATE(646)] = 22746, - [SMALL_STATE(647)] = 22863, - [SMALL_STATE(648)] = 22944, - [SMALL_STATE(649)] = 23061, - [SMALL_STATE(650)] = 23178, - [SMALL_STATE(651)] = 23295, - [SMALL_STATE(652)] = 23412, - [SMALL_STATE(653)] = 23529, - [SMALL_STATE(654)] = 23650, - [SMALL_STATE(655)] = 23767, - [SMALL_STATE(656)] = 23884, - [SMALL_STATE(657)] = 24001, - [SMALL_STATE(658)] = 24118, - [SMALL_STATE(659)] = 24235, - [SMALL_STATE(660)] = 24352, - [SMALL_STATE(661)] = 24469, - [SMALL_STATE(662)] = 24586, - [SMALL_STATE(663)] = 24703, - [SMALL_STATE(664)] = 24820, - [SMALL_STATE(665)] = 24937, - [SMALL_STATE(666)] = 25056, - [SMALL_STATE(667)] = 25173, - [SMALL_STATE(668)] = 25290, - [SMALL_STATE(669)] = 25407, - [SMALL_STATE(670)] = 25528, - [SMALL_STATE(671)] = 25645, - [SMALL_STATE(672)] = 25762, - [SMALL_STATE(673)] = 25879, - [SMALL_STATE(674)] = 25996, - [SMALL_STATE(675)] = 26113, - [SMALL_STATE(676)] = 26230, - [SMALL_STATE(677)] = 26347, - [SMALL_STATE(678)] = 26464, - [SMALL_STATE(679)] = 26581, - [SMALL_STATE(680)] = 26698, - [SMALL_STATE(681)] = 26815, - [SMALL_STATE(682)] = 26932, - [SMALL_STATE(683)] = 27049, - [SMALL_STATE(684)] = 27166, - [SMALL_STATE(685)] = 27283, - [SMALL_STATE(686)] = 27400, - [SMALL_STATE(687)] = 27517, - [SMALL_STATE(688)] = 27634, - [SMALL_STATE(689)] = 27751, - [SMALL_STATE(690)] = 27868, - [SMALL_STATE(691)] = 27985, - [SMALL_STATE(692)] = 28102, - [SMALL_STATE(693)] = 28219, - [SMALL_STATE(694)] = 28336, - [SMALL_STATE(695)] = 28453, - [SMALL_STATE(696)] = 28570, - [SMALL_STATE(697)] = 28687, - [SMALL_STATE(698)] = 28804, - [SMALL_STATE(699)] = 28921, - [SMALL_STATE(700)] = 29038, - [SMALL_STATE(701)] = 29155, - [SMALL_STATE(702)] = 29236, - [SMALL_STATE(703)] = 29353, - [SMALL_STATE(704)] = 29470, - [SMALL_STATE(705)] = 29587, - [SMALL_STATE(706)] = 29704, - [SMALL_STATE(707)] = 29821, - [SMALL_STATE(708)] = 29938, - [SMALL_STATE(709)] = 30059, - [SMALL_STATE(710)] = 30176, - [SMALL_STATE(711)] = 30293, - [SMALL_STATE(712)] = 30410, - [SMALL_STATE(713)] = 30527, - [SMALL_STATE(714)] = 30644, - [SMALL_STATE(715)] = 30761, - [SMALL_STATE(716)] = 30878, - [SMALL_STATE(717)] = 30995, - [SMALL_STATE(718)] = 31116, - [SMALL_STATE(719)] = 31233, - [SMALL_STATE(720)] = 31350, - [SMALL_STATE(721)] = 31471, - [SMALL_STATE(722)] = 31592, - [SMALL_STATE(723)] = 31709, - [SMALL_STATE(724)] = 31793, - [SMALL_STATE(725)] = 31899, - [SMALL_STATE(726)] = 31983, - [SMALL_STATE(727)] = 32089, - [SMALL_STATE(728)] = 32163, - [SMALL_STATE(729)] = 32281, - [SMALL_STATE(730)] = 32355, - [SMALL_STATE(731)] = 32431, - [SMALL_STATE(732)] = 32507, - [SMALL_STATE(733)] = 32581, - [SMALL_STATE(734)] = 32657, - [SMALL_STATE(735)] = 32731, - [SMALL_STATE(736)] = 32805, - [SMALL_STATE(737)] = 32879, - [SMALL_STATE(738)] = 32953, - [SMALL_STATE(739)] = 33027, - [SMALL_STATE(740)] = 33103, - [SMALL_STATE(741)] = 33179, - [SMALL_STATE(742)] = 33253, - [SMALL_STATE(743)] = 33329, - [SMALL_STATE(744)] = 33403, - [SMALL_STATE(745)] = 33477, - [SMALL_STATE(746)] = 33551, - [SMALL_STATE(747)] = 33669, - [SMALL_STATE(748)] = 33747, - [SMALL_STATE(749)] = 33829, - [SMALL_STATE(750)] = 33911, - [SMALL_STATE(751)] = 33989, - [SMALL_STATE(752)] = 34071, - [SMALL_STATE(753)] = 34143, - [SMALL_STATE(754)] = 34215, - [SMALL_STATE(755)] = 34293, - [SMALL_STATE(756)] = 34365, - [SMALL_STATE(757)] = 34473, - [SMALL_STATE(758)] = 34581, - [SMALL_STATE(759)] = 34655, - [SMALL_STATE(760)] = 34727, - [SMALL_STATE(761)] = 34817, - [SMALL_STATE(762)] = 34909, - [SMALL_STATE(763)] = 35003, - [SMALL_STATE(764)] = 35099, - [SMALL_STATE(765)] = 35187, - [SMALL_STATE(766)] = 35271, - [SMALL_STATE(767)] = 35355, - [SMALL_STATE(768)] = 35463, - [SMALL_STATE(769)] = 35535, - [SMALL_STATE(770)] = 35607, - [SMALL_STATE(771)] = 35679, - [SMALL_STATE(772)] = 35751, - [SMALL_STATE(773)] = 35823, - [SMALL_STATE(774)] = 35899, - [SMALL_STATE(775)] = 35975, - [SMALL_STATE(776)] = 36049, - [SMALL_STATE(777)] = 36121, - [SMALL_STATE(778)] = 36193, - [SMALL_STATE(779)] = 36277, - [SMALL_STATE(780)] = 36383, - [SMALL_STATE(781)] = 36489, - [SMALL_STATE(782)] = 36573, - [SMALL_STATE(783)] = 36645, - [SMALL_STATE(784)] = 36717, - [SMALL_STATE(785)] = 36789, - [SMALL_STATE(786)] = 36897, - [SMALL_STATE(787)] = 36971, - [SMALL_STATE(788)] = 37047, - [SMALL_STATE(789)] = 37123, - [SMALL_STATE(790)] = 37207, - [SMALL_STATE(791)] = 37291, - [SMALL_STATE(792)] = 37379, - [SMALL_STATE(793)] = 37475, - [SMALL_STATE(794)] = 37569, - [SMALL_STATE(795)] = 37661, - [SMALL_STATE(796)] = 37751, - [SMALL_STATE(797)] = 37833, - [SMALL_STATE(798)] = 37905, - [SMALL_STATE(799)] = 38013, - [SMALL_STATE(800)] = 38121, - [SMALL_STATE(801)] = 38239, - [SMALL_STATE(802)] = 38311, - [SMALL_STATE(803)] = 38389, - [SMALL_STATE(804)] = 38461, - [SMALL_STATE(805)] = 38533, - [SMALL_STATE(806)] = 38605, - [SMALL_STATE(807)] = 38677, - [SMALL_STATE(808)] = 38751, - [SMALL_STATE(809)] = 38823, - [SMALL_STATE(810)] = 38895, - [SMALL_STATE(811)] = 39010, - [SMALL_STATE(812)] = 39125, - [SMALL_STATE(813)] = 39240, - [SMALL_STATE(814)] = 39355, - [SMALL_STATE(815)] = 39470, - [SMALL_STATE(816)] = 39585, - [SMALL_STATE(817)] = 39700, - [SMALL_STATE(818)] = 39815, - [SMALL_STATE(819)] = 39930, - [SMALL_STATE(820)] = 40045, - [SMALL_STATE(821)] = 40160, - [SMALL_STATE(822)] = 40275, - [SMALL_STATE(823)] = 40390, - [SMALL_STATE(824)] = 40505, - [SMALL_STATE(825)] = 40620, - [SMALL_STATE(826)] = 40735, - [SMALL_STATE(827)] = 40850, - [SMALL_STATE(828)] = 40965, - [SMALL_STATE(829)] = 41080, - [SMALL_STATE(830)] = 41195, - [SMALL_STATE(831)] = 41310, - [SMALL_STATE(832)] = 41425, - [SMALL_STATE(833)] = 41540, - [SMALL_STATE(834)] = 41655, - [SMALL_STATE(835)] = 41770, - [SMALL_STATE(836)] = 41885, - [SMALL_STATE(837)] = 42000, - [SMALL_STATE(838)] = 42115, - [SMALL_STATE(839)] = 42230, - [SMALL_STATE(840)] = 42345, - [SMALL_STATE(841)] = 42460, - [SMALL_STATE(842)] = 42575, - [SMALL_STATE(843)] = 42690, - [SMALL_STATE(844)] = 42805, - [SMALL_STATE(845)] = 42920, - [SMALL_STATE(846)] = 43035, - [SMALL_STATE(847)] = 43150, - [SMALL_STATE(848)] = 43265, - [SMALL_STATE(849)] = 43380, - [SMALL_STATE(850)] = 43495, - [SMALL_STATE(851)] = 43610, - [SMALL_STATE(852)] = 43725, - [SMALL_STATE(853)] = 43840, - [SMALL_STATE(854)] = 43955, - [SMALL_STATE(855)] = 44070, - [SMALL_STATE(856)] = 44185, - [SMALL_STATE(857)] = 44300, - [SMALL_STATE(858)] = 44415, - [SMALL_STATE(859)] = 44530, - [SMALL_STATE(860)] = 44613, - [SMALL_STATE(861)] = 44728, - [SMALL_STATE(862)] = 44815, - [SMALL_STATE(863)] = 44930, - [SMALL_STATE(864)] = 45045, - [SMALL_STATE(865)] = 45140, - [SMALL_STATE(866)] = 45233, - [SMALL_STATE(867)] = 45324, - [SMALL_STATE(868)] = 45439, - [SMALL_STATE(869)] = 45528, - [SMALL_STATE(870)] = 45643, - [SMALL_STATE(871)] = 45750, - [SMALL_STATE(872)] = 45865, - [SMALL_STATE(873)] = 45980, - [SMALL_STATE(874)] = 46087, - [SMALL_STATE(875)] = 46202, - [SMALL_STATE(876)] = 46317, - [SMALL_STATE(877)] = 46432, - [SMALL_STATE(878)] = 46547, - [SMALL_STATE(879)] = 46662, - [SMALL_STATE(880)] = 46777, - [SMALL_STATE(881)] = 46892, - [SMALL_STATE(882)] = 47007, - [SMALL_STATE(883)] = 47122, - [SMALL_STATE(884)] = 47237, - [SMALL_STATE(885)] = 47352, - [SMALL_STATE(886)] = 47467, - [SMALL_STATE(887)] = 47582, - [SMALL_STATE(888)] = 47697, - [SMALL_STATE(889)] = 47812, - [SMALL_STATE(890)] = 47927, - [SMALL_STATE(891)] = 48042, - [SMALL_STATE(892)] = 48157, - [SMALL_STATE(893)] = 48272, - [SMALL_STATE(894)] = 48387, - [SMALL_STATE(895)] = 48502, - [SMALL_STATE(896)] = 48617, - [SMALL_STATE(897)] = 48732, - [SMALL_STATE(898)] = 48847, - [SMALL_STATE(899)] = 48962, - [SMALL_STATE(900)] = 49077, - [SMALL_STATE(901)] = 49184, - [SMALL_STATE(902)] = 49299, - [SMALL_STATE(903)] = 49414, - [SMALL_STATE(904)] = 49529, - [SMALL_STATE(905)] = 49644, - [SMALL_STATE(906)] = 49759, - [SMALL_STATE(907)] = 49842, - [SMALL_STATE(908)] = 49925, - [SMALL_STATE(909)] = 50040, - [SMALL_STATE(910)] = 50155, - [SMALL_STATE(911)] = 50242, - [SMALL_STATE(912)] = 50337, - [SMALL_STATE(913)] = 50430, - [SMALL_STATE(914)] = 50545, - [SMALL_STATE(915)] = 50636, - [SMALL_STATE(916)] = 50751, - [SMALL_STATE(917)] = 50840, - [SMALL_STATE(918)] = 50955, - [SMALL_STATE(919)] = 51070, - [SMALL_STATE(920)] = 51177, - [SMALL_STATE(921)] = 51292, - [SMALL_STATE(922)] = 51399, - [SMALL_STATE(923)] = 51514, - [SMALL_STATE(924)] = 51629, - [SMALL_STATE(925)] = 51744, - [SMALL_STATE(926)] = 51859, - [SMALL_STATE(927)] = 51974, - [SMALL_STATE(928)] = 52089, - [SMALL_STATE(929)] = 52204, - [SMALL_STATE(930)] = 52319, - [SMALL_STATE(931)] = 52434, - [SMALL_STATE(932)] = 52549, - [SMALL_STATE(933)] = 52664, - [SMALL_STATE(934)] = 52779, - [SMALL_STATE(935)] = 52894, - [SMALL_STATE(936)] = 53009, - [SMALL_STATE(937)] = 53124, - [SMALL_STATE(938)] = 53239, - [SMALL_STATE(939)] = 53354, - [SMALL_STATE(940)] = 53469, - [SMALL_STATE(941)] = 53584, - [SMALL_STATE(942)] = 53699, - [SMALL_STATE(943)] = 53814, - [SMALL_STATE(944)] = 53929, - [SMALL_STATE(945)] = 54044, - [SMALL_STATE(946)] = 54159, - [SMALL_STATE(947)] = 54274, - [SMALL_STATE(948)] = 54389, - [SMALL_STATE(949)] = 54504, - [SMALL_STATE(950)] = 54619, - [SMALL_STATE(951)] = 54734, - [SMALL_STATE(952)] = 54849, - [SMALL_STATE(953)] = 54964, - [SMALL_STATE(954)] = 55079, - [SMALL_STATE(955)] = 55194, - [SMALL_STATE(956)] = 55309, - [SMALL_STATE(957)] = 55424, - [SMALL_STATE(958)] = 55539, - [SMALL_STATE(959)] = 55654, - [SMALL_STATE(960)] = 55761, - [SMALL_STATE(961)] = 55876, - [SMALL_STATE(962)] = 55991, - [SMALL_STATE(963)] = 56106, - [SMALL_STATE(964)] = 56221, - [SMALL_STATE(965)] = 56336, - [SMALL_STATE(966)] = 56451, - [SMALL_STATE(967)] = 56566, - [SMALL_STATE(968)] = 56681, - [SMALL_STATE(969)] = 56796, - [SMALL_STATE(970)] = 56911, - [SMALL_STATE(971)] = 57026, - [SMALL_STATE(972)] = 57141, - [SMALL_STATE(973)] = 57256, - [SMALL_STATE(974)] = 57371, - [SMALL_STATE(975)] = 57486, - [SMALL_STATE(976)] = 57601, - [SMALL_STATE(977)] = 57716, - [SMALL_STATE(978)] = 57831, - [SMALL_STATE(979)] = 57946, - [SMALL_STATE(980)] = 58061, - [SMALL_STATE(981)] = 58176, - [SMALL_STATE(982)] = 58291, - [SMALL_STATE(983)] = 58406, - [SMALL_STATE(984)] = 58521, - [SMALL_STATE(985)] = 58636, - [SMALL_STATE(986)] = 58751, - [SMALL_STATE(987)] = 58866, - [SMALL_STATE(988)] = 58981, - [SMALL_STATE(989)] = 59096, - [SMALL_STATE(990)] = 59203, - [SMALL_STATE(991)] = 59318, - [SMALL_STATE(992)] = 59433, - [SMALL_STATE(993)] = 59516, - [SMALL_STATE(994)] = 59599, - [SMALL_STATE(995)] = 59714, - [SMALL_STATE(996)] = 59801, - [SMALL_STATE(997)] = 59896, - [SMALL_STATE(998)] = 59989, - [SMALL_STATE(999)] = 60104, - [SMALL_STATE(1000)] = 60219, - [SMALL_STATE(1001)] = 60334, - [SMALL_STATE(1002)] = 60449, - [SMALL_STATE(1003)] = 60540, - [SMALL_STATE(1004)] = 60629, - [SMALL_STATE(1005)] = 60736, - [SMALL_STATE(1006)] = 60851, - [SMALL_STATE(1007)] = 60958, - [SMALL_STATE(1008)] = 61073, - [SMALL_STATE(1009)] = 61188, - [SMALL_STATE(1010)] = 61303, - [SMALL_STATE(1011)] = 61418, - [SMALL_STATE(1012)] = 61533, - [SMALL_STATE(1013)] = 61648, - [SMALL_STATE(1014)] = 61763, - [SMALL_STATE(1015)] = 61878, - [SMALL_STATE(1016)] = 61993, - [SMALL_STATE(1017)] = 62108, - [SMALL_STATE(1018)] = 62223, - [SMALL_STATE(1019)] = 62338, - [SMALL_STATE(1020)] = 62453, - [SMALL_STATE(1021)] = 62568, - [SMALL_STATE(1022)] = 62683, - [SMALL_STATE(1023)] = 62798, - [SMALL_STATE(1024)] = 62913, - [SMALL_STATE(1025)] = 63028, - [SMALL_STATE(1026)] = 63143, - [SMALL_STATE(1027)] = 63258, - [SMALL_STATE(1028)] = 63373, - [SMALL_STATE(1029)] = 63480, - [SMALL_STATE(1030)] = 63595, - [SMALL_STATE(1031)] = 63710, - [SMALL_STATE(1032)] = 63793, - [SMALL_STATE(1033)] = 63876, - [SMALL_STATE(1034)] = 63963, - [SMALL_STATE(1035)] = 64078, - [SMALL_STATE(1036)] = 64193, - [SMALL_STATE(1037)] = 64288, - [SMALL_STATE(1038)] = 64381, - [SMALL_STATE(1039)] = 64472, - [SMALL_STATE(1040)] = 64587, - [SMALL_STATE(1041)] = 64676, - [SMALL_STATE(1042)] = 64791, - [SMALL_STATE(1043)] = 64906, - [SMALL_STATE(1044)] = 65013, - [SMALL_STATE(1045)] = 65128, - [SMALL_STATE(1046)] = 65243, - [SMALL_STATE(1047)] = 65350, - [SMALL_STATE(1048)] = 65465, - [SMALL_STATE(1049)] = 65580, - [SMALL_STATE(1050)] = 65695, - [SMALL_STATE(1051)] = 65810, - [SMALL_STATE(1052)] = 65925, - [SMALL_STATE(1053)] = 66040, - [SMALL_STATE(1054)] = 66155, - [SMALL_STATE(1055)] = 66270, - [SMALL_STATE(1056)] = 66385, - [SMALL_STATE(1057)] = 66500, - [SMALL_STATE(1058)] = 66615, - [SMALL_STATE(1059)] = 66730, - [SMALL_STATE(1060)] = 66845, - [SMALL_STATE(1061)] = 66960, - [SMALL_STATE(1062)] = 67075, - [SMALL_STATE(1063)] = 67190, - [SMALL_STATE(1064)] = 67305, - [SMALL_STATE(1065)] = 67410, - [SMALL_STATE(1066)] = 67525, - [SMALL_STATE(1067)] = 67640, - [SMALL_STATE(1068)] = 67755, - [SMALL_STATE(1069)] = 67870, - [SMALL_STATE(1070)] = 67985, - [SMALL_STATE(1071)] = 68100, - [SMALL_STATE(1072)] = 68215, - [SMALL_STATE(1073)] = 68330, - [SMALL_STATE(1074)] = 68445, - [SMALL_STATE(1075)] = 68560, - [SMALL_STATE(1076)] = 68675, - [SMALL_STATE(1077)] = 68752, - [SMALL_STATE(1078)] = 68867, - [SMALL_STATE(1079)] = 68944, - [SMALL_STATE(1080)] = 69059, - [SMALL_STATE(1081)] = 69164, - [SMALL_STATE(1082)] = 69279, - [SMALL_STATE(1083)] = 69394, - [SMALL_STATE(1084)] = 69509, - [SMALL_STATE(1085)] = 69624, - [SMALL_STATE(1086)] = 69739, - [SMALL_STATE(1087)] = 69820, - [SMALL_STATE(1088)] = 69935, - [SMALL_STATE(1089)] = 70050, - [SMALL_STATE(1090)] = 70165, - [SMALL_STATE(1091)] = 70280, - [SMALL_STATE(1092)] = 70395, - [SMALL_STATE(1093)] = 70510, - [SMALL_STATE(1094)] = 70625, - [SMALL_STATE(1095)] = 70706, - [SMALL_STATE(1096)] = 70821, - [SMALL_STATE(1097)] = 70936, - [SMALL_STATE(1098)] = 71051, - [SMALL_STATE(1099)] = 71168, - [SMALL_STATE(1100)] = 71283, - [SMALL_STATE(1101)] = 71398, - [SMALL_STATE(1102)] = 71513, - [SMALL_STATE(1103)] = 71590, - [SMALL_STATE(1104)] = 71705, - [SMALL_STATE(1105)] = 71820, - [SMALL_STATE(1106)] = 71935, - [SMALL_STATE(1107)] = 72050, - [SMALL_STATE(1108)] = 72165, - [SMALL_STATE(1109)] = 72280, - [SMALL_STATE(1110)] = 72395, - [SMALL_STATE(1111)] = 72510, - [SMALL_STATE(1112)] = 72625, - [SMALL_STATE(1113)] = 72740, - [SMALL_STATE(1114)] = 72855, - [SMALL_STATE(1115)] = 72970, - [SMALL_STATE(1116)] = 73085, - [SMALL_STATE(1117)] = 73200, - [SMALL_STATE(1118)] = 73315, - [SMALL_STATE(1119)] = 73430, - [SMALL_STATE(1120)] = 73545, - [SMALL_STATE(1121)] = 73660, - [SMALL_STATE(1122)] = 73775, - [SMALL_STATE(1123)] = 73890, - [SMALL_STATE(1124)] = 74005, - [SMALL_STATE(1125)] = 74120, - [SMALL_STATE(1126)] = 74225, - [SMALL_STATE(1127)] = 74340, - [SMALL_STATE(1128)] = 74445, - [SMALL_STATE(1129)] = 74560, - [SMALL_STATE(1130)] = 74631, - [SMALL_STATE(1131)] = 74746, - [SMALL_STATE(1132)] = 74861, - [SMALL_STATE(1133)] = 74976, - [SMALL_STATE(1134)] = 75091, - [SMALL_STATE(1135)] = 75206, - [SMALL_STATE(1136)] = 75321, - [SMALL_STATE(1137)] = 75436, - [SMALL_STATE(1138)] = 75551, - [SMALL_STATE(1139)] = 75666, - [SMALL_STATE(1140)] = 75781, - [SMALL_STATE(1141)] = 75896, - [SMALL_STATE(1142)] = 76011, - [SMALL_STATE(1143)] = 76126, - [SMALL_STATE(1144)] = 76241, - [SMALL_STATE(1145)] = 76312, - [SMALL_STATE(1146)] = 76427, - [SMALL_STATE(1147)] = 76542, - [SMALL_STATE(1148)] = 76657, - [SMALL_STATE(1149)] = 76772, - [SMALL_STATE(1150)] = 76887, - [SMALL_STATE(1151)] = 77002, - [SMALL_STATE(1152)] = 77117, - [SMALL_STATE(1153)] = 77232, - [SMALL_STATE(1154)] = 77347, - [SMALL_STATE(1155)] = 77462, - [SMALL_STATE(1156)] = 77539, - [SMALL_STATE(1157)] = 77654, - [SMALL_STATE(1158)] = 77769, - [SMALL_STATE(1159)] = 77884, - [SMALL_STATE(1160)] = 77999, - [SMALL_STATE(1161)] = 78114, - [SMALL_STATE(1162)] = 78229, - [SMALL_STATE(1163)] = 78344, - [SMALL_STATE(1164)] = 78459, - [SMALL_STATE(1165)] = 78574, - [SMALL_STATE(1166)] = 78689, - [SMALL_STATE(1167)] = 78804, - [SMALL_STATE(1168)] = 78887, - [SMALL_STATE(1169)] = 79002, - [SMALL_STATE(1170)] = 79117, - [SMALL_STATE(1171)] = 79232, - [SMALL_STATE(1172)] = 79347, - [SMALL_STATE(1173)] = 79462, - [SMALL_STATE(1174)] = 79539, - [SMALL_STATE(1175)] = 79654, - [SMALL_STATE(1176)] = 79769, - [SMALL_STATE(1177)] = 79884, - [SMALL_STATE(1178)] = 79999, - [SMALL_STATE(1179)] = 80114, - [SMALL_STATE(1180)] = 80229, - [SMALL_STATE(1181)] = 80344, - [SMALL_STATE(1182)] = 80459, - [SMALL_STATE(1183)] = 80574, - [SMALL_STATE(1184)] = 80689, - [SMALL_STATE(1185)] = 80804, - [SMALL_STATE(1186)] = 80919, - [SMALL_STATE(1187)] = 81000, - [SMALL_STATE(1188)] = 81081, - [SMALL_STATE(1189)] = 81196, - [SMALL_STATE(1190)] = 81311, - [SMALL_STATE(1191)] = 81426, - [SMALL_STATE(1192)] = 81541, - [SMALL_STATE(1193)] = 81656, - [SMALL_STATE(1194)] = 81771, - [SMALL_STATE(1195)] = 81848, - [SMALL_STATE(1196)] = 81963, - [SMALL_STATE(1197)] = 82078, - [SMALL_STATE(1198)] = 82193, - [SMALL_STATE(1199)] = 82274, - [SMALL_STATE(1200)] = 82355, - [SMALL_STATE(1201)] = 82470, - [SMALL_STATE(1202)] = 82585, - [SMALL_STATE(1203)] = 82666, - [SMALL_STATE(1204)] = 82781, - [SMALL_STATE(1205)] = 82898, - [SMALL_STATE(1206)] = 83013, - [SMALL_STATE(1207)] = 83094, - [SMALL_STATE(1208)] = 83209, - [SMALL_STATE(1209)] = 83324, - [SMALL_STATE(1210)] = 83401, - [SMALL_STATE(1211)] = 83472, - [SMALL_STATE(1212)] = 83549, - [SMALL_STATE(1213)] = 83664, - [SMALL_STATE(1214)] = 83779, - [SMALL_STATE(1215)] = 83894, - [SMALL_STATE(1216)] = 84009, - [SMALL_STATE(1217)] = 84124, - [SMALL_STATE(1218)] = 84239, - [SMALL_STATE(1219)] = 84354, - [SMALL_STATE(1220)] = 84469, - [SMALL_STATE(1221)] = 84584, - [SMALL_STATE(1222)] = 84699, - [SMALL_STATE(1223)] = 84814, - [SMALL_STATE(1224)] = 84929, - [SMALL_STATE(1225)] = 85044, - [SMALL_STATE(1226)] = 85159, - [SMALL_STATE(1227)] = 85274, - [SMALL_STATE(1228)] = 85389, - [SMALL_STATE(1229)] = 85504, - [SMALL_STATE(1230)] = 85619, - [SMALL_STATE(1231)] = 85734, - [SMALL_STATE(1232)] = 85849, - [SMALL_STATE(1233)] = 85964, - [SMALL_STATE(1234)] = 86079, - [SMALL_STATE(1235)] = 86194, - [SMALL_STATE(1236)] = 86277, - [SMALL_STATE(1237)] = 86392, - [SMALL_STATE(1238)] = 86507, - [SMALL_STATE(1239)] = 86590, - [SMALL_STATE(1240)] = 86705, - [SMALL_STATE(1241)] = 86820, - [SMALL_STATE(1242)] = 86935, - [SMALL_STATE(1243)] = 87050, - [SMALL_STATE(1244)] = 87165, - [SMALL_STATE(1245)] = 87280, - [SMALL_STATE(1246)] = 87395, - [SMALL_STATE(1247)] = 87510, - [SMALL_STATE(1248)] = 87625, - [SMALL_STATE(1249)] = 87740, - [SMALL_STATE(1250)] = 87823, - [SMALL_STATE(1251)] = 87938, - [SMALL_STATE(1252)] = 88053, - [SMALL_STATE(1253)] = 88168, - [SMALL_STATE(1254)] = 88283, - [SMALL_STATE(1255)] = 88398, - [SMALL_STATE(1256)] = 88513, - [SMALL_STATE(1257)] = 88628, - [SMALL_STATE(1258)] = 88743, - [SMALL_STATE(1259)] = 88858, - [SMALL_STATE(1260)] = 88973, - [SMALL_STATE(1261)] = 89088, - [SMALL_STATE(1262)] = 89203, - [SMALL_STATE(1263)] = 89318, - [SMALL_STATE(1264)] = 89433, - [SMALL_STATE(1265)] = 89548, - [SMALL_STATE(1266)] = 89631, - [SMALL_STATE(1267)] = 89746, - [SMALL_STATE(1268)] = 89861, - [SMALL_STATE(1269)] = 89976, - [SMALL_STATE(1270)] = 90091, - [SMALL_STATE(1271)] = 90206, - [SMALL_STATE(1272)] = 90321, - [SMALL_STATE(1273)] = 90436, - [SMALL_STATE(1274)] = 90551, - [SMALL_STATE(1275)] = 90666, - [SMALL_STATE(1276)] = 90781, - [SMALL_STATE(1277)] = 90896, - [SMALL_STATE(1278)] = 91011, - [SMALL_STATE(1279)] = 91126, - [SMALL_STATE(1280)] = 91241, - [SMALL_STATE(1281)] = 91356, - [SMALL_STATE(1282)] = 91471, - [SMALL_STATE(1283)] = 91586, - [SMALL_STATE(1284)] = 91701, - [SMALL_STATE(1285)] = 91816, - [SMALL_STATE(1286)] = 91931, - [SMALL_STATE(1287)] = 92046, - [SMALL_STATE(1288)] = 92161, - [SMALL_STATE(1289)] = 92276, - [SMALL_STATE(1290)] = 92391, - [SMALL_STATE(1291)] = 92506, - [SMALL_STATE(1292)] = 92621, - [SMALL_STATE(1293)] = 92736, - [SMALL_STATE(1294)] = 92851, - [SMALL_STATE(1295)] = 92966, - [SMALL_STATE(1296)] = 93081, - [SMALL_STATE(1297)] = 93196, - [SMALL_STATE(1298)] = 93311, - [SMALL_STATE(1299)] = 93426, - [SMALL_STATE(1300)] = 93541, - [SMALL_STATE(1301)] = 93656, - [SMALL_STATE(1302)] = 93771, - [SMALL_STATE(1303)] = 93886, - [SMALL_STATE(1304)] = 94001, - [SMALL_STATE(1305)] = 94116, - [SMALL_STATE(1306)] = 94231, - [SMALL_STATE(1307)] = 94346, - [SMALL_STATE(1308)] = 94461, - [SMALL_STATE(1309)] = 94576, - [SMALL_STATE(1310)] = 94691, - [SMALL_STATE(1311)] = 94806, - [SMALL_STATE(1312)] = 94921, - [SMALL_STATE(1313)] = 95036, - [SMALL_STATE(1314)] = 95151, - [SMALL_STATE(1315)] = 95266, - [SMALL_STATE(1316)] = 95381, - [SMALL_STATE(1317)] = 95496, - [SMALL_STATE(1318)] = 95567, - [SMALL_STATE(1319)] = 95682, - [SMALL_STATE(1320)] = 95797, - [SMALL_STATE(1321)] = 95912, - [SMALL_STATE(1322)] = 96027, - [SMALL_STATE(1323)] = 96142, - [SMALL_STATE(1324)] = 96257, - [SMALL_STATE(1325)] = 96372, - [SMALL_STATE(1326)] = 96487, - [SMALL_STATE(1327)] = 96602, - [SMALL_STATE(1328)] = 96717, - [SMALL_STATE(1329)] = 96832, - [SMALL_STATE(1330)] = 96947, - [SMALL_STATE(1331)] = 97062, - [SMALL_STATE(1332)] = 97177, - [SMALL_STATE(1333)] = 97292, - [SMALL_STATE(1334)] = 97407, - [SMALL_STATE(1335)] = 97522, - [SMALL_STATE(1336)] = 97637, - [SMALL_STATE(1337)] = 97752, - [SMALL_STATE(1338)] = 97867, - [SMALL_STATE(1339)] = 97982, - [SMALL_STATE(1340)] = 98097, - [SMALL_STATE(1341)] = 98212, - [SMALL_STATE(1342)] = 98327, - [SMALL_STATE(1343)] = 98442, - [SMALL_STATE(1344)] = 98557, - [SMALL_STATE(1345)] = 98672, - [SMALL_STATE(1346)] = 98787, - [SMALL_STATE(1347)] = 98902, - [SMALL_STATE(1348)] = 99017, - [SMALL_STATE(1349)] = 99132, - [SMALL_STATE(1350)] = 99247, - [SMALL_STATE(1351)] = 99362, - [SMALL_STATE(1352)] = 99477, - [SMALL_STATE(1353)] = 99592, - [SMALL_STATE(1354)] = 99707, - [SMALL_STATE(1355)] = 99822, - [SMALL_STATE(1356)] = 99937, - [SMALL_STATE(1357)] = 100052, - [SMALL_STATE(1358)] = 100167, - [SMALL_STATE(1359)] = 100282, - [SMALL_STATE(1360)] = 100397, - [SMALL_STATE(1361)] = 100512, - [SMALL_STATE(1362)] = 100585, - [SMALL_STATE(1363)] = 100700, - [SMALL_STATE(1364)] = 100815, - [SMALL_STATE(1365)] = 100930, - [SMALL_STATE(1366)] = 101035, - [SMALL_STATE(1367)] = 101150, - [SMALL_STATE(1368)] = 101265, - [SMALL_STATE(1369)] = 101380, - [SMALL_STATE(1370)] = 101495, - [SMALL_STATE(1371)] = 101610, - [SMALL_STATE(1372)] = 101683, - [SMALL_STATE(1373)] = 101798, - [SMALL_STATE(1374)] = 101913, - [SMALL_STATE(1375)] = 102028, - [SMALL_STATE(1376)] = 102143, - [SMALL_STATE(1377)] = 102258, - [SMALL_STATE(1378)] = 102373, - [SMALL_STATE(1379)] = 102488, - [SMALL_STATE(1380)] = 102603, - [SMALL_STATE(1381)] = 102718, - [SMALL_STATE(1382)] = 102833, - [SMALL_STATE(1383)] = 102948, - [SMALL_STATE(1384)] = 103063, - [SMALL_STATE(1385)] = 103178, - [SMALL_STATE(1386)] = 103253, - [SMALL_STATE(1387)] = 103368, - [SMALL_STATE(1388)] = 103483, - [SMALL_STATE(1389)] = 103598, - [SMALL_STATE(1390)] = 103713, - [SMALL_STATE(1391)] = 103828, - [SMALL_STATE(1392)] = 103943, - [SMALL_STATE(1393)] = 104058, - [SMALL_STATE(1394)] = 104173, - [SMALL_STATE(1395)] = 104288, - [SMALL_STATE(1396)] = 104403, - [SMALL_STATE(1397)] = 104518, - [SMALL_STATE(1398)] = 104633, - [SMALL_STATE(1399)] = 104748, - [SMALL_STATE(1400)] = 104863, - [SMALL_STATE(1401)] = 104978, - [SMALL_STATE(1402)] = 105093, - [SMALL_STATE(1403)] = 105208, - [SMALL_STATE(1404)] = 105323, - [SMALL_STATE(1405)] = 105438, - [SMALL_STATE(1406)] = 105553, - [SMALL_STATE(1407)] = 105668, - [SMALL_STATE(1408)] = 105783, - [SMALL_STATE(1409)] = 105898, - [SMALL_STATE(1410)] = 106013, - [SMALL_STATE(1411)] = 106128, - [SMALL_STATE(1412)] = 106233, - [SMALL_STATE(1413)] = 106348, - [SMALL_STATE(1414)] = 106463, - [SMALL_STATE(1415)] = 106578, - [SMALL_STATE(1416)] = 106693, - [SMALL_STATE(1417)] = 106808, - [SMALL_STATE(1418)] = 106923, - [SMALL_STATE(1419)] = 107006, - [SMALL_STATE(1420)] = 107121, - [SMALL_STATE(1421)] = 107194, - [SMALL_STATE(1422)] = 107309, - [SMALL_STATE(1423)] = 107384, - [SMALL_STATE(1424)] = 107499, - [SMALL_STATE(1425)] = 107614, - [SMALL_STATE(1426)] = 107729, - [SMALL_STATE(1427)] = 107834, - [SMALL_STATE(1428)] = 107949, - [SMALL_STATE(1429)] = 108064, - [SMALL_STATE(1430)] = 108179, - [SMALL_STATE(1431)] = 108262, - [SMALL_STATE(1432)] = 108377, - [SMALL_STATE(1433)] = 108450, - [SMALL_STATE(1434)] = 108565, - [SMALL_STATE(1435)] = 108680, - [SMALL_STATE(1436)] = 108795, - [SMALL_STATE(1437)] = 108868, - [SMALL_STATE(1438)] = 108983, - [SMALL_STATE(1439)] = 109098, - [SMALL_STATE(1440)] = 109213, - [SMALL_STATE(1441)] = 109328, - [SMALL_STATE(1442)] = 109443, - [SMALL_STATE(1443)] = 109558, - [SMALL_STATE(1444)] = 109673, - [SMALL_STATE(1445)] = 109788, - [SMALL_STATE(1446)] = 109903, - [SMALL_STATE(1447)] = 110018, - [SMALL_STATE(1448)] = 110133, - [SMALL_STATE(1449)] = 110248, - [SMALL_STATE(1450)] = 110363, - [SMALL_STATE(1451)] = 110478, - [SMALL_STATE(1452)] = 110593, - [SMALL_STATE(1453)] = 110708, - [SMALL_STATE(1454)] = 110823, - [SMALL_STATE(1455)] = 110938, - [SMALL_STATE(1456)] = 111053, - [SMALL_STATE(1457)] = 111168, - [SMALL_STATE(1458)] = 111283, - [SMALL_STATE(1459)] = 111398, - [SMALL_STATE(1460)] = 111513, - [SMALL_STATE(1461)] = 111628, - [SMALL_STATE(1462)] = 111703, - [SMALL_STATE(1463)] = 111818, - [SMALL_STATE(1464)] = 111933, - [SMALL_STATE(1465)] = 112038, - [SMALL_STATE(1466)] = 112153, - [SMALL_STATE(1467)] = 112236, - [SMALL_STATE(1468)] = 112351, - [SMALL_STATE(1469)] = 112466, - [SMALL_STATE(1470)] = 112581, - [SMALL_STATE(1471)] = 112654, - [SMALL_STATE(1472)] = 112727, - [SMALL_STATE(1473)] = 112800, - [SMALL_STATE(1474)] = 112873, - [SMALL_STATE(1475)] = 112948, - [SMALL_STATE(1476)] = 113023, - [SMALL_STATE(1477)] = 113094, - [SMALL_STATE(1478)] = 113165, - [SMALL_STATE(1479)] = 113236, - [SMALL_STATE(1480)] = 113307, - [SMALL_STATE(1481)] = 113380, - [SMALL_STATE(1482)] = 113451, - [SMALL_STATE(1483)] = 113522, - [SMALL_STATE(1484)] = 113593, - [SMALL_STATE(1485)] = 113664, - [SMALL_STATE(1486)] = 113779, - [SMALL_STATE(1487)] = 113852, - [SMALL_STATE(1488)] = 113923, - [SMALL_STATE(1489)] = 114038, - [SMALL_STATE(1490)] = 114109, - [SMALL_STATE(1491)] = 114224, - [SMALL_STATE(1492)] = 114299, - [SMALL_STATE(1493)] = 114414, - [SMALL_STATE(1494)] = 114487, - [SMALL_STATE(1495)] = 114560, - [SMALL_STATE(1496)] = 114633, - [SMALL_STATE(1497)] = 114706, - [SMALL_STATE(1498)] = 114821, - [SMALL_STATE(1499)] = 114936, - [SMALL_STATE(1500)] = 115051, - [SMALL_STATE(1501)] = 115124, - [SMALL_STATE(1502)] = 115197, - [SMALL_STATE(1503)] = 115272, - [SMALL_STATE(1504)] = 115347, - [SMALL_STATE(1505)] = 115420, - [SMALL_STATE(1506)] = 115535, - [SMALL_STATE(1507)] = 115610, - [SMALL_STATE(1508)] = 115683, - [SMALL_STATE(1509)] = 115756, - [SMALL_STATE(1510)] = 115829, - [SMALL_STATE(1511)] = 115904, - [SMALL_STATE(1512)] = 115979, - [SMALL_STATE(1513)] = 116052, - [SMALL_STATE(1514)] = 116125, - [SMALL_STATE(1515)] = 116200, - [SMALL_STATE(1516)] = 116279, - [SMALL_STATE(1517)] = 116394, - [SMALL_STATE(1518)] = 116509, - [SMALL_STATE(1519)] = 116582, - [SMALL_STATE(1520)] = 116655, - [SMALL_STATE(1521)] = 116770, - [SMALL_STATE(1522)] = 116885, - [SMALL_STATE(1523)] = 117000, - [SMALL_STATE(1524)] = 117115, - [SMALL_STATE(1525)] = 117230, - [SMALL_STATE(1526)] = 117345, - [SMALL_STATE(1527)] = 117460, - [SMALL_STATE(1528)] = 117575, - [SMALL_STATE(1529)] = 117690, - [SMALL_STATE(1530)] = 117805, - [SMALL_STATE(1531)] = 117920, - [SMALL_STATE(1532)] = 118035, - [SMALL_STATE(1533)] = 118150, - [SMALL_STATE(1534)] = 118221, - [SMALL_STATE(1535)] = 118304, - [SMALL_STATE(1536)] = 118377, - [SMALL_STATE(1537)] = 118492, - [SMALL_STATE(1538)] = 118607, - [SMALL_STATE(1539)] = 118722, - [SMALL_STATE(1540)] = 118793, - [SMALL_STATE(1541)] = 118866, - [SMALL_STATE(1542)] = 118981, - [SMALL_STATE(1543)] = 119096, - [SMALL_STATE(1544)] = 119211, - [SMALL_STATE(1545)] = 119326, - [SMALL_STATE(1546)] = 119441, - [SMALL_STATE(1547)] = 119556, - [SMALL_STATE(1548)] = 119671, - [SMALL_STATE(1549)] = 119786, - [SMALL_STATE(1550)] = 119855, - [SMALL_STATE(1551)] = 119970, - [SMALL_STATE(1552)] = 120085, - [SMALL_STATE(1553)] = 120154, - [SMALL_STATE(1554)] = 120225, - [SMALL_STATE(1555)] = 120340, - [SMALL_STATE(1556)] = 120455, - [SMALL_STATE(1557)] = 120570, - [SMALL_STATE(1558)] = 120685, - [SMALL_STATE(1559)] = 120800, - [SMALL_STATE(1560)] = 120873, - [SMALL_STATE(1561)] = 120988, - [SMALL_STATE(1562)] = 121059, - [SMALL_STATE(1563)] = 121128, - [SMALL_STATE(1564)] = 121197, - [SMALL_STATE(1565)] = 121268, - [SMALL_STATE(1566)] = 121383, - [SMALL_STATE(1567)] = 121498, - [SMALL_STATE(1568)] = 121613, - [SMALL_STATE(1569)] = 121686, - [SMALL_STATE(1570)] = 121801, - [SMALL_STATE(1571)] = 121916, - [SMALL_STATE(1572)] = 121991, - [SMALL_STATE(1573)] = 122106, - [SMALL_STATE(1574)] = 122177, - [SMALL_STATE(1575)] = 122248, - [SMALL_STATE(1576)] = 122363, - [SMALL_STATE(1577)] = 122478, - [SMALL_STATE(1578)] = 122553, - [SMALL_STATE(1579)] = 122668, - [SMALL_STATE(1580)] = 122783, - [SMALL_STATE(1581)] = 122852, - [SMALL_STATE(1582)] = 122967, - [SMALL_STATE(1583)] = 123036, - [SMALL_STATE(1584)] = 123107, - [SMALL_STATE(1585)] = 123176, - [SMALL_STATE(1586)] = 123291, - [SMALL_STATE(1587)] = 123406, - [SMALL_STATE(1588)] = 123521, - [SMALL_STATE(1589)] = 123636, - [SMALL_STATE(1590)] = 123751, - [SMALL_STATE(1591)] = 123866, - [SMALL_STATE(1592)] = 123981, - [SMALL_STATE(1593)] = 124096, - [SMALL_STATE(1594)] = 124211, - [SMALL_STATE(1595)] = 124326, - [SMALL_STATE(1596)] = 124441, - [SMALL_STATE(1597)] = 124556, - [SMALL_STATE(1598)] = 124671, - [SMALL_STATE(1599)] = 124786, - [SMALL_STATE(1600)] = 124901, - [SMALL_STATE(1601)] = 125016, - [SMALL_STATE(1602)] = 125087, - [SMALL_STATE(1603)] = 125202, - [SMALL_STATE(1604)] = 125317, - [SMALL_STATE(1605)] = 125386, - [SMALL_STATE(1606)] = 125455, - [SMALL_STATE(1607)] = 125524, - [SMALL_STATE(1608)] = 125639, - [SMALL_STATE(1609)] = 125754, - [SMALL_STATE(1610)] = 125823, - [SMALL_STATE(1611)] = 125938, - [SMALL_STATE(1612)] = 126007, - [SMALL_STATE(1613)] = 126122, - [SMALL_STATE(1614)] = 126237, - [SMALL_STATE(1615)] = 126308, - [SMALL_STATE(1616)] = 126423, - [SMALL_STATE(1617)] = 126538, - [SMALL_STATE(1618)] = 126609, - [SMALL_STATE(1619)] = 126724, - [SMALL_STATE(1620)] = 126795, - [SMALL_STATE(1621)] = 126866, - [SMALL_STATE(1622)] = 126981, - [SMALL_STATE(1623)] = 127052, - [SMALL_STATE(1624)] = 127167, - [SMALL_STATE(1625)] = 127282, - [SMALL_STATE(1626)] = 127397, - [SMALL_STATE(1627)] = 127512, - [SMALL_STATE(1628)] = 127627, - [SMALL_STATE(1629)] = 127698, - [SMALL_STATE(1630)] = 127813, - [SMALL_STATE(1631)] = 127928, - [SMALL_STATE(1632)] = 128003, - [SMALL_STATE(1633)] = 128118, - [SMALL_STATE(1634)] = 128193, - [SMALL_STATE(1635)] = 128264, - [SMALL_STATE(1636)] = 128379, - [SMALL_STATE(1637)] = 128494, - [SMALL_STATE(1638)] = 128609, - [SMALL_STATE(1639)] = 128680, - [SMALL_STATE(1640)] = 128795, - [SMALL_STATE(1641)] = 128910, - [SMALL_STATE(1642)] = 129025, - [SMALL_STATE(1643)] = 129140, - [SMALL_STATE(1644)] = 129211, - [SMALL_STATE(1645)] = 129326, - [SMALL_STATE(1646)] = 129441, - [SMALL_STATE(1647)] = 129556, - [SMALL_STATE(1648)] = 129671, - [SMALL_STATE(1649)] = 129742, - [SMALL_STATE(1650)] = 129857, - [SMALL_STATE(1651)] = 129972, - [SMALL_STATE(1652)] = 130087, - [SMALL_STATE(1653)] = 130202, - [SMALL_STATE(1654)] = 130317, - [SMALL_STATE(1655)] = 130432, - [SMALL_STATE(1656)] = 130503, - [SMALL_STATE(1657)] = 130618, - [SMALL_STATE(1658)] = 130733, - [SMALL_STATE(1659)] = 130848, - [SMALL_STATE(1660)] = 130919, - [SMALL_STATE(1661)] = 131034, - [SMALL_STATE(1662)] = 131103, - [SMALL_STATE(1663)] = 131218, - [SMALL_STATE(1664)] = 131333, - [SMALL_STATE(1665)] = 131448, - [SMALL_STATE(1666)] = 131517, - [SMALL_STATE(1667)] = 131632, - [SMALL_STATE(1668)] = 131701, - [SMALL_STATE(1669)] = 131770, - [SMALL_STATE(1670)] = 131839, - [SMALL_STATE(1671)] = 131954, - [SMALL_STATE(1672)] = 132069, - [SMALL_STATE(1673)] = 132184, - [SMALL_STATE(1674)] = 132299, - [SMALL_STATE(1675)] = 132414, - [SMALL_STATE(1676)] = 132529, - [SMALL_STATE(1677)] = 132644, - [SMALL_STATE(1678)] = 132759, - [SMALL_STATE(1679)] = 132874, - [SMALL_STATE(1680)] = 132989, - [SMALL_STATE(1681)] = 133104, - [SMALL_STATE(1682)] = 133219, - [SMALL_STATE(1683)] = 133334, - [SMALL_STATE(1684)] = 133449, - [SMALL_STATE(1685)] = 133564, - [SMALL_STATE(1686)] = 133679, - [SMALL_STATE(1687)] = 133794, - [SMALL_STATE(1688)] = 133909, - [SMALL_STATE(1689)] = 134024, - [SMALL_STATE(1690)] = 134139, - [SMALL_STATE(1691)] = 134254, - [SMALL_STATE(1692)] = 134369, - [SMALL_STATE(1693)] = 134438, - [SMALL_STATE(1694)] = 134553, - [SMALL_STATE(1695)] = 134668, - [SMALL_STATE(1696)] = 134783, - [SMALL_STATE(1697)] = 134898, - [SMALL_STATE(1698)] = 135013, - [SMALL_STATE(1699)] = 135128, - [SMALL_STATE(1700)] = 135199, - [SMALL_STATE(1701)] = 135268, - [SMALL_STATE(1702)] = 135383, - [SMALL_STATE(1703)] = 135498, - [SMALL_STATE(1704)] = 135613, - [SMALL_STATE(1705)] = 135682, - [SMALL_STATE(1706)] = 135797, - [SMALL_STATE(1707)] = 135912, - [SMALL_STATE(1708)] = 136027, - [SMALL_STATE(1709)] = 136142, - [SMALL_STATE(1710)] = 136257, - [SMALL_STATE(1711)] = 136328, - [SMALL_STATE(1712)] = 136399, - [SMALL_STATE(1713)] = 136514, - [SMALL_STATE(1714)] = 136593, - [SMALL_STATE(1715)] = 136708, - [SMALL_STATE(1716)] = 136823, - [SMALL_STATE(1717)] = 136938, - [SMALL_STATE(1718)] = 137053, - [SMALL_STATE(1719)] = 137168, - [SMALL_STATE(1720)] = 137283, - [SMALL_STATE(1721)] = 137398, - [SMALL_STATE(1722)] = 137513, - [SMALL_STATE(1723)] = 137628, - [SMALL_STATE(1724)] = 137743, - [SMALL_STATE(1725)] = 137858, - [SMALL_STATE(1726)] = 137973, - [SMALL_STATE(1727)] = 138088, - [SMALL_STATE(1728)] = 138203, - [SMALL_STATE(1729)] = 138318, - [SMALL_STATE(1730)] = 138433, - [SMALL_STATE(1731)] = 138548, - [SMALL_STATE(1732)] = 138663, - [SMALL_STATE(1733)] = 138778, - [SMALL_STATE(1734)] = 138893, - [SMALL_STATE(1735)] = 139008, - [SMALL_STATE(1736)] = 139123, - [SMALL_STATE(1737)] = 139238, - [SMALL_STATE(1738)] = 139353, - [SMALL_STATE(1739)] = 139468, - [SMALL_STATE(1740)] = 139539, - [SMALL_STATE(1741)] = 139608, - [SMALL_STATE(1742)] = 139677, - [SMALL_STATE(1743)] = 139792, - [SMALL_STATE(1744)] = 139865, - [SMALL_STATE(1745)] = 139980, - [SMALL_STATE(1746)] = 140095, - [SMALL_STATE(1747)] = 140210, - [SMALL_STATE(1748)] = 140325, - [SMALL_STATE(1749)] = 140440, - [SMALL_STATE(1750)] = 140555, - [SMALL_STATE(1751)] = 140670, - [SMALL_STATE(1752)] = 140785, - [SMALL_STATE(1753)] = 140900, - [SMALL_STATE(1754)] = 141015, - [SMALL_STATE(1755)] = 141130, - [SMALL_STATE(1756)] = 141245, - [SMALL_STATE(1757)] = 141360, - [SMALL_STATE(1758)] = 141475, - [SMALL_STATE(1759)] = 141590, - [SMALL_STATE(1760)] = 141661, - [SMALL_STATE(1761)] = 141776, - [SMALL_STATE(1762)] = 141891, - [SMALL_STATE(1763)] = 141962, - [SMALL_STATE(1764)] = 142031, - [SMALL_STATE(1765)] = 142146, - [SMALL_STATE(1766)] = 142261, - [SMALL_STATE(1767)] = 142376, - [SMALL_STATE(1768)] = 142491, - [SMALL_STATE(1769)] = 142606, - [SMALL_STATE(1770)] = 142721, - [SMALL_STATE(1771)] = 142836, - [SMALL_STATE(1772)] = 142951, - [SMALL_STATE(1773)] = 143066, - [SMALL_STATE(1774)] = 143181, - [SMALL_STATE(1775)] = 143296, - [SMALL_STATE(1776)] = 143411, - [SMALL_STATE(1777)] = 143526, - [SMALL_STATE(1778)] = 143595, - [SMALL_STATE(1779)] = 143710, - [SMALL_STATE(1780)] = 143825, - [SMALL_STATE(1781)] = 143940, - [SMALL_STATE(1782)] = 144055, - [SMALL_STATE(1783)] = 144170, - [SMALL_STATE(1784)] = 144285, - [SMALL_STATE(1785)] = 144400, - [SMALL_STATE(1786)] = 144515, - [SMALL_STATE(1787)] = 144630, - [SMALL_STATE(1788)] = 144745, - [SMALL_STATE(1789)] = 144860, - [SMALL_STATE(1790)] = 144975, - [SMALL_STATE(1791)] = 145090, - [SMALL_STATE(1792)] = 145205, - [SMALL_STATE(1793)] = 145320, - [SMALL_STATE(1794)] = 145435, - [SMALL_STATE(1795)] = 145550, - [SMALL_STATE(1796)] = 145665, - [SMALL_STATE(1797)] = 145780, - [SMALL_STATE(1798)] = 145895, - [SMALL_STATE(1799)] = 145966, - [SMALL_STATE(1800)] = 146081, - [SMALL_STATE(1801)] = 146196, - [SMALL_STATE(1802)] = 146311, - [SMALL_STATE(1803)] = 146426, - [SMALL_STATE(1804)] = 146541, - [SMALL_STATE(1805)] = 146656, - [SMALL_STATE(1806)] = 146771, - [SMALL_STATE(1807)] = 146886, - [SMALL_STATE(1808)] = 147001, - [SMALL_STATE(1809)] = 147116, - [SMALL_STATE(1810)] = 147231, - [SMALL_STATE(1811)] = 147346, - [SMALL_STATE(1812)] = 147461, - [SMALL_STATE(1813)] = 147576, - [SMALL_STATE(1814)] = 147691, - [SMALL_STATE(1815)] = 147806, - [SMALL_STATE(1816)] = 147921, - [SMALL_STATE(1817)] = 148036, - [SMALL_STATE(1818)] = 148151, - [SMALL_STATE(1819)] = 148266, - [SMALL_STATE(1820)] = 148381, - [SMALL_STATE(1821)] = 148496, - [SMALL_STATE(1822)] = 148611, - [SMALL_STATE(1823)] = 148726, - [SMALL_STATE(1824)] = 148841, - [SMALL_STATE(1825)] = 148956, - [SMALL_STATE(1826)] = 149071, - [SMALL_STATE(1827)] = 149186, - [SMALL_STATE(1828)] = 149301, - [SMALL_STATE(1829)] = 149416, - [SMALL_STATE(1830)] = 149531, - [SMALL_STATE(1831)] = 149646, - [SMALL_STATE(1832)] = 149761, - [SMALL_STATE(1833)] = 149876, - [SMALL_STATE(1834)] = 149991, - [SMALL_STATE(1835)] = 150106, - [SMALL_STATE(1836)] = 150221, - [SMALL_STATE(1837)] = 150336, - [SMALL_STATE(1838)] = 150451, - [SMALL_STATE(1839)] = 150566, - [SMALL_STATE(1840)] = 150681, - [SMALL_STATE(1841)] = 150796, - [SMALL_STATE(1842)] = 150911, - [SMALL_STATE(1843)] = 151026, - [SMALL_STATE(1844)] = 151141, - [SMALL_STATE(1845)] = 151256, - [SMALL_STATE(1846)] = 151371, - [SMALL_STATE(1847)] = 151486, - [SMALL_STATE(1848)] = 151601, - [SMALL_STATE(1849)] = 151716, - [SMALL_STATE(1850)] = 151831, - [SMALL_STATE(1851)] = 151946, - [SMALL_STATE(1852)] = 152061, - [SMALL_STATE(1853)] = 152176, - [SMALL_STATE(1854)] = 152291, - [SMALL_STATE(1855)] = 152406, - [SMALL_STATE(1856)] = 152521, - [SMALL_STATE(1857)] = 152636, - [SMALL_STATE(1858)] = 152751, - [SMALL_STATE(1859)] = 152866, - [SMALL_STATE(1860)] = 152981, - [SMALL_STATE(1861)] = 153096, - [SMALL_STATE(1862)] = 153211, - [SMALL_STATE(1863)] = 153326, - [SMALL_STATE(1864)] = 153441, - [SMALL_STATE(1865)] = 153556, - [SMALL_STATE(1866)] = 153671, - [SMALL_STATE(1867)] = 153786, - [SMALL_STATE(1868)] = 153901, - [SMALL_STATE(1869)] = 154016, - [SMALL_STATE(1870)] = 154131, - [SMALL_STATE(1871)] = 154246, - [SMALL_STATE(1872)] = 154361, - [SMALL_STATE(1873)] = 154476, - [SMALL_STATE(1874)] = 154591, - [SMALL_STATE(1875)] = 154659, - [SMALL_STATE(1876)] = 154765, - [SMALL_STATE(1877)] = 154847, - [SMALL_STATE(1878)] = 154919, - [SMALL_STATE(1879)] = 154989, - [SMALL_STATE(1880)] = 155093, - [SMALL_STATE(1881)] = 155163, - [SMALL_STATE(1882)] = 155231, - [SMALL_STATE(1883)] = 155299, - [SMALL_STATE(1884)] = 155367, - [SMALL_STATE(1885)] = 155435, - [SMALL_STATE(1886)] = 155503, - [SMALL_STATE(1887)] = 155571, - [SMALL_STATE(1888)] = 155639, - [SMALL_STATE(1889)] = 155707, - [SMALL_STATE(1890)] = 155775, - [SMALL_STATE(1891)] = 155843, - [SMALL_STATE(1892)] = 155911, - [SMALL_STATE(1893)] = 155979, - [SMALL_STATE(1894)] = 156067, - [SMALL_STATE(1895)] = 156157, - [SMALL_STATE(1896)] = 156249, - [SMALL_STATE(1897)] = 156343, - [SMALL_STATE(1898)] = 156413, - [SMALL_STATE(1899)] = 156481, - [SMALL_STATE(1900)] = 156551, - [SMALL_STATE(1901)] = 156655, - [SMALL_STATE(1902)] = 156725, - [SMALL_STATE(1903)] = 156811, - [SMALL_STATE(1904)] = 156879, - [SMALL_STATE(1905)] = 156985, - [SMALL_STATE(1906)] = 157053, - [SMALL_STATE(1907)] = 157135, - [SMALL_STATE(1908)] = 157203, - [SMALL_STATE(1909)] = 157271, - [SMALL_STATE(1910)] = 157339, - [SMALL_STATE(1911)] = 157421, - [SMALL_STATE(1912)] = 157491, - [SMALL_STATE(1913)] = 157559, - [SMALL_STATE(1914)] = 157627, - [SMALL_STATE(1915)] = 157707, - [SMALL_STATE(1916)] = 157777, - [SMALL_STATE(1917)] = 157847, - [SMALL_STATE(1918)] = 157915, - [SMALL_STATE(1919)] = 157983, - [SMALL_STATE(1920)] = 158065, - [SMALL_STATE(1921)] = 158133, - [SMALL_STATE(1922)] = 158201, - [SMALL_STATE(1923)] = 158269, - [SMALL_STATE(1924)] = 158337, - [SMALL_STATE(1925)] = 158419, - [SMALL_STATE(1926)] = 158487, - [SMALL_STATE(1927)] = 158557, - [SMALL_STATE(1928)] = 158625, - [SMALL_STATE(1929)] = 158695, - [SMALL_STATE(1930)] = 158765, - [SMALL_STATE(1931)] = 158833, - [SMALL_STATE(1932)] = 158901, - [SMALL_STATE(1933)] = 158969, - [SMALL_STATE(1934)] = 159039, - [SMALL_STATE(1935)] = 159107, - [SMALL_STATE(1936)] = 159177, - [SMALL_STATE(1937)] = 159245, - [SMALL_STATE(1938)] = 159315, - [SMALL_STATE(1939)] = 159385, - [SMALL_STATE(1940)] = 159453, - [SMALL_STATE(1941)] = 159523, - [SMALL_STATE(1942)] = 159591, - [SMALL_STATE(1943)] = 159659, - [SMALL_STATE(1944)] = 159763, - [SMALL_STATE(1945)] = 159831, - [SMALL_STATE(1946)] = 159899, - [SMALL_STATE(1947)] = 159967, - [SMALL_STATE(1948)] = 160035, - [SMALL_STATE(1949)] = 160103, - [SMALL_STATE(1950)] = 160171, - [SMALL_STATE(1951)] = 160243, - [SMALL_STATE(1952)] = 160311, - [SMALL_STATE(1953)] = 160379, - [SMALL_STATE(1954)] = 160447, - [SMALL_STATE(1955)] = 160515, - [SMALL_STATE(1956)] = 160583, - [SMALL_STATE(1957)] = 160689, - [SMALL_STATE(1958)] = 160757, - [SMALL_STATE(1959)] = 160825, - [SMALL_STATE(1960)] = 160897, - [SMALL_STATE(1961)] = 161003, - [SMALL_STATE(1962)] = 161073, - [SMALL_STATE(1963)] = 161141, - [SMALL_STATE(1964)] = 161211, - [SMALL_STATE(1965)] = 161279, - [SMALL_STATE(1966)] = 161347, - [SMALL_STATE(1967)] = 161415, - [SMALL_STATE(1968)] = 161483, - [SMALL_STATE(1969)] = 161553, - [SMALL_STATE(1970)] = 161621, - [SMALL_STATE(1971)] = 161689, - [SMALL_STATE(1972)] = 161759, - [SMALL_STATE(1973)] = 161827, - [SMALL_STATE(1974)] = 161895, - [SMALL_STATE(1975)] = 161963, - [SMALL_STATE(1976)] = 162031, - [SMALL_STATE(1977)] = 162099, - [SMALL_STATE(1978)] = 162167, - [SMALL_STATE(1979)] = 162235, - [SMALL_STATE(1980)] = 162303, - [SMALL_STATE(1981)] = 162375, - [SMALL_STATE(1982)] = 162451, - [SMALL_STATE(1983)] = 162529, - [SMALL_STATE(1984)] = 162597, - [SMALL_STATE(1985)] = 162665, - [SMALL_STATE(1986)] = 162733, - [SMALL_STATE(1987)] = 162801, - [SMALL_STATE(1988)] = 162869, - [SMALL_STATE(1989)] = 162937, - [SMALL_STATE(1990)] = 163005, - [SMALL_STATE(1991)] = 163073, - [SMALL_STATE(1992)] = 163141, - [SMALL_STATE(1993)] = 163209, - [SMALL_STATE(1994)] = 163281, - [SMALL_STATE(1995)] = 163357, - [SMALL_STATE(1996)] = 163439, - [SMALL_STATE(1997)] = 163507, - [SMALL_STATE(1998)] = 163575, - [SMALL_STATE(1999)] = 163643, - [SMALL_STATE(2000)] = 163711, - [SMALL_STATE(2001)] = 163779, - [SMALL_STATE(2002)] = 163857, - [SMALL_STATE(2003)] = 163925, - [SMALL_STATE(2004)] = 163995, - [SMALL_STATE(2005)] = 164063, - [SMALL_STATE(2006)] = 164131, - [SMALL_STATE(2007)] = 164209, - [SMALL_STATE(2008)] = 164277, - [SMALL_STATE(2009)] = 164345, - [SMALL_STATE(2010)] = 164427, - [SMALL_STATE(2011)] = 164495, - [SMALL_STATE(2012)] = 164563, - [SMALL_STATE(2013)] = 164631, - [SMALL_STATE(2014)] = 164701, - [SMALL_STATE(2015)] = 164807, - [SMALL_STATE(2016)] = 164875, - [SMALL_STATE(2017)] = 164957, - [SMALL_STATE(2018)] = 165025, - [SMALL_STATE(2019)] = 165093, - [SMALL_STATE(2020)] = 165161, - [SMALL_STATE(2021)] = 165239, - [SMALL_STATE(2022)] = 165309, - [SMALL_STATE(2023)] = 165379, - [SMALL_STATE(2024)] = 165447, - [SMALL_STATE(2025)] = 165515, - [SMALL_STATE(2026)] = 165583, - [SMALL_STATE(2027)] = 165651, - [SMALL_STATE(2028)] = 165721, - [SMALL_STATE(2029)] = 165791, - [SMALL_STATE(2030)] = 165859, - [SMALL_STATE(2031)] = 165929, - [SMALL_STATE(2032)] = 165999, - [SMALL_STATE(2033)] = 166085, - [SMALL_STATE(2034)] = 166189, - [SMALL_STATE(2035)] = 166283, - [SMALL_STATE(2036)] = 166353, - [SMALL_STATE(2037)] = 166445, - [SMALL_STATE(2038)] = 166513, - [SMALL_STATE(2039)] = 166581, - [SMALL_STATE(2040)] = 166649, - [SMALL_STATE(2041)] = 166717, - [SMALL_STATE(2042)] = 166787, - [SMALL_STATE(2043)] = 166855, - [SMALL_STATE(2044)] = 166929, - [SMALL_STATE(2045)] = 167003, - [SMALL_STATE(2046)] = 167075, - [SMALL_STATE(2047)] = 167149, - [SMALL_STATE(2048)] = 167225, - [SMALL_STATE(2049)] = 167297, - [SMALL_STATE(2050)] = 167377, - [SMALL_STATE(2051)] = 167445, - [SMALL_STATE(2052)] = 167535, - [SMALL_STATE(2053)] = 167607, - [SMALL_STATE(2054)] = 167675, - [SMALL_STATE(2055)] = 167747, - [SMALL_STATE(2056)] = 167827, - [SMALL_STATE(2057)] = 167899, - [SMALL_STATE(2058)] = 167967, - [SMALL_STATE(2059)] = 168043, - [SMALL_STATE(2060)] = 168111, - [SMALL_STATE(2061)] = 168181, - [SMALL_STATE(2062)] = 168253, - [SMALL_STATE(2063)] = 168321, - [SMALL_STATE(2064)] = 168393, - [SMALL_STATE(2065)] = 168481, - [SMALL_STATE(2066)] = 168551, - [SMALL_STATE(2067)] = 168619, - [SMALL_STATE(2068)] = 168687, - [SMALL_STATE(2069)] = 168757, - [SMALL_STATE(2070)] = 168827, - [SMALL_STATE(2071)] = 168895, - [SMALL_STATE(2072)] = 168963, - [SMALL_STATE(2073)] = 169033, - [SMALL_STATE(2074)] = 169105, - [SMALL_STATE(2075)] = 169173, - [SMALL_STATE(2076)] = 169241, - [SMALL_STATE(2077)] = 169309, - [SMALL_STATE(2078)] = 169377, - [SMALL_STATE(2079)] = 169457, - [SMALL_STATE(2080)] = 169525, - [SMALL_STATE(2081)] = 169593, - [SMALL_STATE(2082)] = 169665, - [SMALL_STATE(2083)] = 169733, - [SMALL_STATE(2084)] = 169801, - [SMALL_STATE(2085)] = 169873, - [SMALL_STATE(2086)] = 169979, - [SMALL_STATE(2087)] = 170051, - [SMALL_STATE(2088)] = 170119, - [SMALL_STATE(2089)] = 170191, - [SMALL_STATE(2090)] = 170259, - [SMALL_STATE(2091)] = 170331, - [SMALL_STATE(2092)] = 170403, - [SMALL_STATE(2093)] = 170477, - [SMALL_STATE(2094)] = 170549, - [SMALL_STATE(2095)] = 170623, - [SMALL_STATE(2096)] = 170697, - [SMALL_STATE(2097)] = 170765, - [SMALL_STATE(2098)] = 170833, - [SMALL_STATE(2099)] = 170903, - [SMALL_STATE(2100)] = 170971, - [SMALL_STATE(2101)] = 171038, - [SMALL_STATE(2102)] = 171107, - [SMALL_STATE(2103)] = 171176, - [SMALL_STATE(2104)] = 171245, - [SMALL_STATE(2105)] = 171314, - [SMALL_STATE(2106)] = 171381, - [SMALL_STATE(2107)] = 171448, - [SMALL_STATE(2108)] = 171517, - [SMALL_STATE(2109)] = 171584, - [SMALL_STATE(2110)] = 171651, - [SMALL_STATE(2111)] = 171718, - [SMALL_STATE(2112)] = 171787, - [SMALL_STATE(2113)] = 171854, - [SMALL_STATE(2114)] = 171923, - [SMALL_STATE(2115)] = 171992, - [SMALL_STATE(2116)] = 172069, - [SMALL_STATE(2117)] = 172136, - [SMALL_STATE(2118)] = 172203, - [SMALL_STATE(2119)] = 172270, - [SMALL_STATE(2120)] = 172337, - [SMALL_STATE(2121)] = 172414, - [SMALL_STATE(2122)] = 172491, - [SMALL_STATE(2123)] = 172558, - [SMALL_STATE(2124)] = 172625, - [SMALL_STATE(2125)] = 172692, - [SMALL_STATE(2126)] = 172759, - [SMALL_STATE(2127)] = 172826, - [SMALL_STATE(2128)] = 172895, - [SMALL_STATE(2129)] = 172972, - [SMALL_STATE(2130)] = 173039, - [SMALL_STATE(2131)] = 173106, - [SMALL_STATE(2132)] = 173175, - [SMALL_STATE(2133)] = 173242, - [SMALL_STATE(2134)] = 173309, - [SMALL_STATE(2135)] = 173376, - [SMALL_STATE(2136)] = 173443, - [SMALL_STATE(2137)] = 173510, - [SMALL_STATE(2138)] = 173587, - [SMALL_STATE(2139)] = 173656, - [SMALL_STATE(2140)] = 173723, - [SMALL_STATE(2141)] = 173790, - [SMALL_STATE(2142)] = 173857, - [SMALL_STATE(2143)] = 173924, - [SMALL_STATE(2144)] = 173991, - [SMALL_STATE(2145)] = 174068, - [SMALL_STATE(2146)] = 174135, - [SMALL_STATE(2147)] = 174202, - [SMALL_STATE(2148)] = 174273, - [SMALL_STATE(2149)] = 174340, - [SMALL_STATE(2150)] = 174407, - [SMALL_STATE(2151)] = 174474, - [SMALL_STATE(2152)] = 174545, - [SMALL_STATE(2153)] = 174612, - [SMALL_STATE(2154)] = 174679, - [SMALL_STATE(2155)] = 174750, - [SMALL_STATE(2156)] = 174821, - [SMALL_STATE(2157)] = 174888, - [SMALL_STATE(2158)] = 174955, - [SMALL_STATE(2159)] = 175032, - [SMALL_STATE(2160)] = 175099, - [SMALL_STATE(2161)] = 175166, - [SMALL_STATE(2162)] = 175233, - [SMALL_STATE(2163)] = 175300, - [SMALL_STATE(2164)] = 175367, - [SMALL_STATE(2165)] = 175436, - [SMALL_STATE(2166)] = 175507, - [SMALL_STATE(2167)] = 175574, - [SMALL_STATE(2168)] = 175641, - [SMALL_STATE(2169)] = 175708, - [SMALL_STATE(2170)] = 175775, - [SMALL_STATE(2171)] = 175842, - [SMALL_STATE(2172)] = 175909, - [SMALL_STATE(2173)] = 175986, - [SMALL_STATE(2174)] = 176053, - [SMALL_STATE(2175)] = 176122, - [SMALL_STATE(2176)] = 176189, - [SMALL_STATE(2177)] = 176256, - [SMALL_STATE(2178)] = 176323, - [SMALL_STATE(2179)] = 176390, - [SMALL_STATE(2180)] = 176457, - [SMALL_STATE(2181)] = 176524, - [SMALL_STATE(2182)] = 176591, - [SMALL_STATE(2183)] = 176658, - [SMALL_STATE(2184)] = 176725, - [SMALL_STATE(2185)] = 176792, - [SMALL_STATE(2186)] = 176859, - [SMALL_STATE(2187)] = 176926, - [SMALL_STATE(2188)] = 176993, - [SMALL_STATE(2189)] = 177060, - [SMALL_STATE(2190)] = 177127, - [SMALL_STATE(2191)] = 177194, - [SMALL_STATE(2192)] = 177261, - [SMALL_STATE(2193)] = 177328, - [SMALL_STATE(2194)] = 177395, - [SMALL_STATE(2195)] = 177466, - [SMALL_STATE(2196)] = 177533, - [SMALL_STATE(2197)] = 177600, - [SMALL_STATE(2198)] = 177667, - [SMALL_STATE(2199)] = 177734, - [SMALL_STATE(2200)] = 177805, - [SMALL_STATE(2201)] = 177872, - [SMALL_STATE(2202)] = 177939, - [SMALL_STATE(2203)] = 178006, - [SMALL_STATE(2204)] = 178073, - [SMALL_STATE(2205)] = 178142, - [SMALL_STATE(2206)] = 178209, - [SMALL_STATE(2207)] = 178276, - [SMALL_STATE(2208)] = 178343, - [SMALL_STATE(2209)] = 178412, - [SMALL_STATE(2210)] = 178483, - [SMALL_STATE(2211)] = 178554, - [SMALL_STATE(2212)] = 178621, - [SMALL_STATE(2213)] = 178688, - [SMALL_STATE(2214)] = 178755, - [SMALL_STATE(2215)] = 178822, - [SMALL_STATE(2216)] = 178889, - [SMALL_STATE(2217)] = 178956, - [SMALL_STATE(2218)] = 179023, - [SMALL_STATE(2219)] = 179090, - [SMALL_STATE(2220)] = 179157, - [SMALL_STATE(2221)] = 179224, - [SMALL_STATE(2222)] = 179291, - [SMALL_STATE(2223)] = 179358, - [SMALL_STATE(2224)] = 179425, - [SMALL_STATE(2225)] = 179492, - [SMALL_STATE(2226)] = 179559, - [SMALL_STATE(2227)] = 179628, - [SMALL_STATE(2228)] = 179695, - [SMALL_STATE(2229)] = 179762, - [SMALL_STATE(2230)] = 179829, - [SMALL_STATE(2231)] = 179896, - [SMALL_STATE(2232)] = 179967, - [SMALL_STATE(2233)] = 180034, - [SMALL_STATE(2234)] = 180101, - [SMALL_STATE(2235)] = 180177, - [SMALL_STATE(2236)] = 180253, - [SMALL_STATE(2237)] = 180323, - [SMALL_STATE(2238)] = 180393, - [SMALL_STATE(2239)] = 180469, - [SMALL_STATE(2240)] = 180539, - [SMALL_STATE(2241)] = 180609, - [SMALL_STATE(2242)] = 180684, - [SMALL_STATE(2243)] = 180759, - [SMALL_STATE(2244)] = 180834, - [SMALL_STATE(2245)] = 180909, - [SMALL_STATE(2246)] = 180984, - [SMALL_STATE(2247)] = 181059, - [SMALL_STATE(2248)] = 181127, - [SMALL_STATE(2249)] = 181213, - [SMALL_STATE(2250)] = 181301, - [SMALL_STATE(2251)] = 181391, - [SMALL_STATE(2252)] = 181465, - [SMALL_STATE(2253)] = 181567, - [SMALL_STATE(2254)] = 181645, - [SMALL_STATE(2255)] = 181715, - [SMALL_STATE(2256)] = 181819, - [SMALL_STATE(2257)] = 181911, - [SMALL_STATE(2258)] = 181993, - [SMALL_STATE(2259)] = 182071, - [SMALL_STATE(2260)] = 182159, - [SMALL_STATE(2261)] = 182263, - [SMALL_STATE(2262)] = 182349, - [SMALL_STATE(2263)] = 182433, - [SMALL_STATE(2264)] = 182535, - [SMALL_STATE(2265)] = 182601, - [SMALL_STATE(2266)] = 182705, - [SMALL_STATE(2267)] = 182771, - [SMALL_STATE(2268)] = 182845, - [SMALL_STATE(2269)] = 182947, - [SMALL_STATE(2270)] = 183013, - [SMALL_STATE(2271)] = 183091, - [SMALL_STATE(2272)] = 183169, - [SMALL_STATE(2273)] = 183237, - [SMALL_STATE(2274)] = 183307, - [SMALL_STATE(2275)] = 183385, - [SMALL_STATE(2276)] = 183475, - [SMALL_STATE(2277)] = 183547, - [SMALL_STATE(2278)] = 183629, - [SMALL_STATE(2279)] = 183707, - [SMALL_STATE(2280)] = 183773, - [SMALL_STATE(2281)] = 183851, - [SMALL_STATE(2282)] = 183923, - [SMALL_STATE(2283)] = 183989, - [SMALL_STATE(2284)] = 184059, - [SMALL_STATE(2285)] = 184125, - [SMALL_STATE(2286)] = 184195, - [SMALL_STATE(2287)] = 184263, - [SMALL_STATE(2288)] = 184363, - [SMALL_STATE(2289)] = 184429, - [SMALL_STATE(2290)] = 184497, - [SMALL_STATE(2291)] = 184565, - [SMALL_STATE(2292)] = 184633, - [SMALL_STATE(2293)] = 184735, - [SMALL_STATE(2294)] = 184801, - [SMALL_STATE(2295)] = 184869, - [SMALL_STATE(2296)] = 184935, - [SMALL_STATE(2297)] = 185007, - [SMALL_STATE(2298)] = 185075, - [SMALL_STATE(2299)] = 185141, - [SMALL_STATE(2300)] = 185217, - [SMALL_STATE(2301)] = 185283, - [SMALL_STATE(2302)] = 185353, - [SMALL_STATE(2303)] = 185427, - [SMALL_STATE(2304)] = 185495, - [SMALL_STATE(2305)] = 185565, - [SMALL_STATE(2306)] = 185635, - [SMALL_STATE(2307)] = 185711, - [SMALL_STATE(2308)] = 185777, - [SMALL_STATE(2309)] = 185849, - [SMALL_STATE(2310)] = 185925, - [SMALL_STATE(2311)] = 185995, - [SMALL_STATE(2312)] = 186065, - [SMALL_STATE(2313)] = 186131, - [SMALL_STATE(2314)] = 186231, - [SMALL_STATE(2315)] = 186333, - [SMALL_STATE(2316)] = 186401, - [SMALL_STATE(2317)] = 186471, - [SMALL_STATE(2318)] = 186539, - [SMALL_STATE(2319)] = 186617, - [SMALL_STATE(2320)] = 186693, - [SMALL_STATE(2321)] = 186761, - [SMALL_STATE(2322)] = 186829, - [SMALL_STATE(2323)] = 186897, - [SMALL_STATE(2324)] = 186962, - [SMALL_STATE(2325)] = 187035, - [SMALL_STATE(2326)] = 187108, - [SMALL_STATE(2327)] = 187173, - [SMALL_STATE(2328)] = 187238, - [SMALL_STATE(2329)] = 187303, - [SMALL_STATE(2330)] = 187368, - [SMALL_STATE(2331)] = 187433, - [SMALL_STATE(2332)] = 187496, - [SMALL_STATE(2333)] = 187559, - [SMALL_STATE(2334)] = 187622, - [SMALL_STATE(2335)] = 187685, - [SMALL_STATE(2336)] = 187748, - [SMALL_STATE(2337)] = 187821, - [SMALL_STATE(2338)] = 187894, - [SMALL_STATE(2339)] = 187959, - [SMALL_STATE(2340)] = 188022, - [SMALL_STATE(2341)] = 188087, - [SMALL_STATE(2342)] = 188160, - [SMALL_STATE(2343)] = 188223, - [SMALL_STATE(2344)] = 188286, - [SMALL_STATE(2345)] = 188359, - [SMALL_STATE(2346)] = 188422, - [SMALL_STATE(2347)] = 188485, - [SMALL_STATE(2348)] = 188548, - [SMALL_STATE(2349)] = 188613, - [SMALL_STATE(2350)] = 188678, - [SMALL_STATE(2351)] = 188755, - [SMALL_STATE(2352)] = 188854, - [SMALL_STATE(2353)] = 188919, - [SMALL_STATE(2354)] = 188984, - [SMALL_STATE(2355)] = 189049, - [SMALL_STATE(2356)] = 189114, - [SMALL_STATE(2357)] = 189187, - [SMALL_STATE(2358)] = 189262, - [SMALL_STATE(2359)] = 189333, - [SMALL_STATE(2360)] = 189406, - [SMALL_STATE(2361)] = 189507, - [SMALL_STATE(2362)] = 189608, - [SMALL_STATE(2363)] = 189681, - [SMALL_STATE(2364)] = 189764, - [SMALL_STATE(2365)] = 189829, - [SMALL_STATE(2366)] = 189894, - [SMALL_STATE(2367)] = 189959, - [SMALL_STATE(2368)] = 190044, - [SMALL_STATE(2369)] = 190131, - [SMALL_STATE(2370)] = 190220, - [SMALL_STATE(2371)] = 190301, - [SMALL_STATE(2372)] = 190378, - [SMALL_STATE(2373)] = 190455, - [SMALL_STATE(2374)] = 190530, - [SMALL_STATE(2375)] = 190599, - [SMALL_STATE(2376)] = 190668, - [SMALL_STATE(2377)] = 190735, - [SMALL_STATE(2378)] = 190804, - [SMALL_STATE(2379)] = 190871, - [SMALL_STATE(2380)] = 190938, - [SMALL_STATE(2381)] = 191005, - [SMALL_STATE(2382)] = 191072, - [SMALL_STATE(2383)] = 191145, - [SMALL_STATE(2384)] = 191212, - [SMALL_STATE(2385)] = 191277, - [SMALL_STATE(2386)] = 191344, - [SMALL_STATE(2387)] = 191445, - [SMALL_STATE(2388)] = 191510, - [SMALL_STATE(2389)] = 191575, - [SMALL_STATE(2390)] = 191640, - [SMALL_STATE(2391)] = 191705, - [SMALL_STATE(2392)] = 191774, - [SMALL_STATE(2393)] = 191839, - [SMALL_STATE(2394)] = 191904, - [SMALL_STATE(2395)] = 191971, - [SMALL_STATE(2396)] = 192036, - [SMALL_STATE(2397)] = 192101, - [SMALL_STATE(2398)] = 192174, - [SMALL_STATE(2399)] = 192251, - [SMALL_STATE(2400)] = 192350, - [SMALL_STATE(2401)] = 192415, - [SMALL_STATE(2402)] = 192480, - [SMALL_STATE(2403)] = 192545, - [SMALL_STATE(2404)] = 192610, - [SMALL_STATE(2405)] = 192673, - [SMALL_STATE(2406)] = 192738, - [SMALL_STATE(2407)] = 192803, - [SMALL_STATE(2408)] = 192868, - [SMALL_STATE(2409)] = 192939, - [SMALL_STATE(2410)] = 193006, - [SMALL_STATE(2411)] = 193075, - [SMALL_STATE(2412)] = 193137, - [SMALL_STATE(2413)] = 193199, - [SMALL_STATE(2414)] = 193261, - [SMALL_STATE(2415)] = 193323, - [SMALL_STATE(2416)] = 193385, - [SMALL_STATE(2417)] = 193447, - [SMALL_STATE(2418)] = 193509, - [SMALL_STATE(2419)] = 193571, - [SMALL_STATE(2420)] = 193633, - [SMALL_STATE(2421)] = 193695, - [SMALL_STATE(2422)] = 193759, - [SMALL_STATE(2423)] = 193821, - [SMALL_STATE(2424)] = 193883, - [SMALL_STATE(2425)] = 193945, - [SMALL_STATE(2426)] = 194007, - [SMALL_STATE(2427)] = 194069, - [SMALL_STATE(2428)] = 194131, - [SMALL_STATE(2429)] = 194193, - [SMALL_STATE(2430)] = 194255, - [SMALL_STATE(2431)] = 194317, - [SMALL_STATE(2432)] = 194379, - [SMALL_STATE(2433)] = 194451, - [SMALL_STATE(2434)] = 194513, - [SMALL_STATE(2435)] = 194575, - [SMALL_STATE(2436)] = 194637, - [SMALL_STATE(2437)] = 194699, - [SMALL_STATE(2438)] = 194761, - [SMALL_STATE(2439)] = 194823, - [SMALL_STATE(2440)] = 194885, - [SMALL_STATE(2441)] = 194947, - [SMALL_STATE(2442)] = 195009, - [SMALL_STATE(2443)] = 195071, - [SMALL_STATE(2444)] = 195133, - [SMALL_STATE(2445)] = 195195, - [SMALL_STATE(2446)] = 195257, - [SMALL_STATE(2447)] = 195319, - [SMALL_STATE(2448)] = 195381, - [SMALL_STATE(2449)] = 195443, - [SMALL_STATE(2450)] = 195505, - [SMALL_STATE(2451)] = 195567, - [SMALL_STATE(2452)] = 195629, - [SMALL_STATE(2453)] = 195691, - [SMALL_STATE(2454)] = 195757, - [SMALL_STATE(2455)] = 195819, - [SMALL_STATE(2456)] = 195881, - [SMALL_STATE(2457)] = 195943, - [SMALL_STATE(2458)] = 196005, - [SMALL_STATE(2459)] = 196067, - [SMALL_STATE(2460)] = 196129, - [SMALL_STATE(2461)] = 196191, - [SMALL_STATE(2462)] = 196253, - [SMALL_STATE(2463)] = 196315, - [SMALL_STATE(2464)] = 196377, - [SMALL_STATE(2465)] = 196439, - [SMALL_STATE(2466)] = 196501, - [SMALL_STATE(2467)] = 196565, - [SMALL_STATE(2468)] = 196629, - [SMALL_STATE(2469)] = 196691, - [SMALL_STATE(2470)] = 196753, - [SMALL_STATE(2471)] = 196815, - [SMALL_STATE(2472)] = 196885, - [SMALL_STATE(2473)] = 196947, - [SMALL_STATE(2474)] = 197011, - [SMALL_STATE(2475)] = 197075, - [SMALL_STATE(2476)] = 197137, - [SMALL_STATE(2477)] = 197199, - [SMALL_STATE(2478)] = 197261, - [SMALL_STATE(2479)] = 197323, - [SMALL_STATE(2480)] = 197385, - [SMALL_STATE(2481)] = 197447, - [SMALL_STATE(2482)] = 197547, - [SMALL_STATE(2483)] = 197609, - [SMALL_STATE(2484)] = 197671, - [SMALL_STATE(2485)] = 197771, - [SMALL_STATE(2486)] = 197835, - [SMALL_STATE(2487)] = 197897, - [SMALL_STATE(2488)] = 197959, - [SMALL_STATE(2489)] = 198021, - [SMALL_STATE(2490)] = 198083, - [SMALL_STATE(2491)] = 198145, - [SMALL_STATE(2492)] = 198207, - [SMALL_STATE(2493)] = 198269, - [SMALL_STATE(2494)] = 198331, - [SMALL_STATE(2495)] = 198393, - [SMALL_STATE(2496)] = 198455, - [SMALL_STATE(2497)] = 198517, - [SMALL_STATE(2498)] = 198579, - [SMALL_STATE(2499)] = 198641, - [SMALL_STATE(2500)] = 198703, - [SMALL_STATE(2501)] = 198765, - [SMALL_STATE(2502)] = 198847, - [SMALL_STATE(2503)] = 198931, - [SMALL_STATE(2504)] = 199017, - [SMALL_STATE(2505)] = 199105, - [SMALL_STATE(2506)] = 199169, - [SMALL_STATE(2507)] = 199231, - [SMALL_STATE(2508)] = 199311, - [SMALL_STATE(2509)] = 199387, - [SMALL_STATE(2510)] = 199463, - [SMALL_STATE(2511)] = 199525, - [SMALL_STATE(2512)] = 199593, - [SMALL_STATE(2513)] = 199661, - [SMALL_STATE(2514)] = 199723, - [SMALL_STATE(2515)] = 199787, - [SMALL_STATE(2516)] = 199853, - [SMALL_STATE(2517)] = 199915, - [SMALL_STATE(2518)] = 199977, - [SMALL_STATE(2519)] = 200077, - [SMALL_STATE(2520)] = 200139, - [SMALL_STATE(2521)] = 200201, - [SMALL_STATE(2522)] = 200263, - [SMALL_STATE(2523)] = 200327, - [SMALL_STATE(2524)] = 200389, - [SMALL_STATE(2525)] = 200451, - [SMALL_STATE(2526)] = 200513, - [SMALL_STATE(2527)] = 200575, - [SMALL_STATE(2528)] = 200639, - [SMALL_STATE(2529)] = 200713, - [SMALL_STATE(2530)] = 200775, - [SMALL_STATE(2531)] = 200839, - [SMALL_STATE(2532)] = 200903, - [SMALL_STATE(2533)] = 200967, - [SMALL_STATE(2534)] = 201031, - [SMALL_STATE(2535)] = 201095, - [SMALL_STATE(2536)] = 201171, - [SMALL_STATE(2537)] = 201237, - [SMALL_STATE(2538)] = 201299, - [SMALL_STATE(2539)] = 201397, - [SMALL_STATE(2540)] = 201461, - [SMALL_STATE(2541)] = 201535, - [SMALL_STATE(2542)] = 201597, - [SMALL_STATE(2543)] = 201659, - [SMALL_STATE(2544)] = 201725, - [SMALL_STATE(2545)] = 201799, - [SMALL_STATE(2546)] = 201861, - [SMALL_STATE(2547)] = 201923, - [SMALL_STATE(2548)] = 201985, - [SMALL_STATE(2549)] = 202047, - [SMALL_STATE(2550)] = 202119, - [SMALL_STATE(2551)] = 202193, - [SMALL_STATE(2552)] = 202263, - [SMALL_STATE(2553)] = 202333, - [SMALL_STATE(2554)] = 202435, - [SMALL_STATE(2555)] = 202497, - [SMALL_STATE(2556)] = 202559, - [SMALL_STATE(2557)] = 202621, - [SMALL_STATE(2558)] = 202683, - [SMALL_STATE(2559)] = 202749, - [SMALL_STATE(2560)] = 202813, - [SMALL_STATE(2561)] = 202889, - [SMALL_STATE(2562)] = 202951, - [SMALL_STATE(2563)] = 203013, - [SMALL_STATE(2564)] = 203075, - [SMALL_STATE(2565)] = 203137, - [SMALL_STATE(2566)] = 203199, - [SMALL_STATE(2567)] = 203261, - [SMALL_STATE(2568)] = 203337, - [SMALL_STATE(2569)] = 203413, - [SMALL_STATE(2570)] = 203475, - [SMALL_STATE(2571)] = 203555, - [SMALL_STATE(2572)] = 203645, - [SMALL_STATE(2573)] = 203733, - [SMALL_STATE(2574)] = 203819, - [SMALL_STATE(2575)] = 203903, - [SMALL_STATE(2576)] = 203965, - [SMALL_STATE(2577)] = 204027, - [SMALL_STATE(2578)] = 204089, - [SMALL_STATE(2579)] = 204151, - [SMALL_STATE(2580)] = 204213, - [SMALL_STATE(2581)] = 204275, - [SMALL_STATE(2582)] = 204337, - [SMALL_STATE(2583)] = 204399, - [SMALL_STATE(2584)] = 204461, - [SMALL_STATE(2585)] = 204523, - [SMALL_STATE(2586)] = 204585, - [SMALL_STATE(2587)] = 204647, - [SMALL_STATE(2588)] = 204709, - [SMALL_STATE(2589)] = 204771, - [SMALL_STATE(2590)] = 204833, - [SMALL_STATE(2591)] = 204933, - [SMALL_STATE(2592)] = 204999, - [SMALL_STATE(2593)] = 205061, - [SMALL_STATE(2594)] = 205163, - [SMALL_STATE(2595)] = 205265, - [SMALL_STATE(2596)] = 205327, - [SMALL_STATE(2597)] = 205389, - [SMALL_STATE(2598)] = 205451, - [SMALL_STATE(2599)] = 205513, - [SMALL_STATE(2600)] = 205575, - [SMALL_STATE(2601)] = 205637, - [SMALL_STATE(2602)] = 205699, - [SMALL_STATE(2603)] = 205761, - [SMALL_STATE(2604)] = 205823, - [SMALL_STATE(2605)] = 205885, - [SMALL_STATE(2606)] = 205951, - [SMALL_STATE(2607)] = 206017, - [SMALL_STATE(2608)] = 206083, - [SMALL_STATE(2609)] = 206149, - [SMALL_STATE(2610)] = 206215, - [SMALL_STATE(2611)] = 206281, - [SMALL_STATE(2612)] = 206349, - [SMALL_STATE(2613)] = 206419, - [SMALL_STATE(2614)] = 206485, - [SMALL_STATE(2615)] = 206547, - [SMALL_STATE(2616)] = 206609, - [SMALL_STATE(2617)] = 206677, - [SMALL_STATE(2618)] = 206745, - [SMALL_STATE(2619)] = 206811, - [SMALL_STATE(2620)] = 206877, - [SMALL_STATE(2621)] = 206943, - [SMALL_STATE(2622)] = 207009, - [SMALL_STATE(2623)] = 207075, - [SMALL_STATE(2624)] = 207137, - [SMALL_STATE(2625)] = 207203, - [SMALL_STATE(2626)] = 207269, - [SMALL_STATE(2627)] = 207337, - [SMALL_STATE(2628)] = 207403, - [SMALL_STATE(2629)] = 207471, - [SMALL_STATE(2630)] = 207539, - [SMALL_STATE(2631)] = 207601, - [SMALL_STATE(2632)] = 207663, - [SMALL_STATE(2633)] = 207725, - [SMALL_STATE(2634)] = 207787, - [SMALL_STATE(2635)] = 207849, - [SMALL_STATE(2636)] = 207911, - [SMALL_STATE(2637)] = 207973, - [SMALL_STATE(2638)] = 208035, - [SMALL_STATE(2639)] = 208097, - [SMALL_STATE(2640)] = 208159, - [SMALL_STATE(2641)] = 208221, - [SMALL_STATE(2642)] = 208283, - [SMALL_STATE(2643)] = 208345, - [SMALL_STATE(2644)] = 208407, - [SMALL_STATE(2645)] = 208473, - [SMALL_STATE(2646)] = 208535, - [SMALL_STATE(2647)] = 208597, - [SMALL_STATE(2648)] = 208659, - [SMALL_STATE(2649)] = 208721, - [SMALL_STATE(2650)] = 208785, - [SMALL_STATE(2651)] = 208847, - [SMALL_STATE(2652)] = 208909, - [SMALL_STATE(2653)] = 208971, - [SMALL_STATE(2654)] = 209033, - [SMALL_STATE(2655)] = 209105, - [SMALL_STATE(2656)] = 209167, - [SMALL_STATE(2657)] = 209229, - [SMALL_STATE(2658)] = 209291, - [SMALL_STATE(2659)] = 209353, - [SMALL_STATE(2660)] = 209415, - [SMALL_STATE(2661)] = 209479, - [SMALL_STATE(2662)] = 209541, - [SMALL_STATE(2663)] = 209603, - [SMALL_STATE(2664)] = 209675, - [SMALL_STATE(2665)] = 209737, - [SMALL_STATE(2666)] = 209799, - [SMALL_STATE(2667)] = 209863, - [SMALL_STATE(2668)] = 209925, - [SMALL_STATE(2669)] = 210001, - [SMALL_STATE(2670)] = 210101, - [SMALL_STATE(2671)] = 210163, - [SMALL_STATE(2672)] = 210225, - [SMALL_STATE(2673)] = 210323, - [SMALL_STATE(2674)] = 210385, - [SMALL_STATE(2675)] = 210461, - [SMALL_STATE(2676)] = 210524, - [SMALL_STATE(2677)] = 210589, - [SMALL_STATE(2678)] = 210652, - [SMALL_STATE(2679)] = 210745, - [SMALL_STATE(2680)] = 210818, - [SMALL_STATE(2681)] = 210881, - [SMALL_STATE(2682)] = 210944, - [SMALL_STATE(2683)] = 211011, - [SMALL_STATE(2684)] = 211078, - [SMALL_STATE(2685)] = 211143, - [SMALL_STATE(2686)] = 211210, - [SMALL_STATE(2687)] = 211275, - [SMALL_STATE(2688)] = 211338, - [SMALL_STATE(2689)] = 211403, - [SMALL_STATE(2690)] = 211468, - [SMALL_STATE(2691)] = 211533, - [SMALL_STATE(2692)] = 211598, - [SMALL_STATE(2693)] = 211667, - [SMALL_STATE(2694)] = 211744, - [SMALL_STATE(2695)] = 211839, - [SMALL_STATE(2696)] = 211910, - [SMALL_STATE(2697)] = 211981, - [SMALL_STATE(2698)] = 212044, - [SMALL_STATE(2699)] = 212107, - [SMALL_STATE(2700)] = 212170, - [SMALL_STATE(2701)] = 212233, - [SMALL_STATE(2702)] = 212296, - [SMALL_STATE(2703)] = 212359, - [SMALL_STATE(2704)] = 212422, - [SMALL_STATE(2705)] = 212485, - [SMALL_STATE(2706)] = 212548, - [SMALL_STATE(2707)] = 212611, - [SMALL_STATE(2708)] = 212674, - [SMALL_STATE(2709)] = 212749, - [SMALL_STATE(2710)] = 212824, - [SMALL_STATE(2711)] = 212885, - [SMALL_STATE(2712)] = 212962, - [SMALL_STATE(2713)] = 213047, - [SMALL_STATE(2714)] = 213130, - [SMALL_STATE(2715)] = 213211, - [SMALL_STATE(2716)] = 213290, - [SMALL_STATE(2717)] = 213351, - [SMALL_STATE(2718)] = 213412, - [SMALL_STATE(2719)] = 213475, - [SMALL_STATE(2720)] = 213536, - [SMALL_STATE(2721)] = 213597, - [SMALL_STATE(2722)] = 213660, - [SMALL_STATE(2723)] = 213721, - [SMALL_STATE(2724)] = 213784, - [SMALL_STATE(2725)] = 213845, - [SMALL_STATE(2726)] = 213906, - [SMALL_STATE(2727)] = 213969, - [SMALL_STATE(2728)] = 214032, - [SMALL_STATE(2729)] = 214095, - [SMALL_STATE(2730)] = 214166, - [SMALL_STATE(2731)] = 214231, - [SMALL_STATE(2732)] = 214294, - [SMALL_STATE(2733)] = 214355, - [SMALL_STATE(2734)] = 214450, - [SMALL_STATE(2735)] = 214545, - [SMALL_STATE(2736)] = 214606, - [SMALL_STATE(2737)] = 214667, - [SMALL_STATE(2738)] = 214728, - [SMALL_STATE(2739)] = 214791, - [SMALL_STATE(2740)] = 214856, - [SMALL_STATE(2741)] = 214919, - [SMALL_STATE(2742)] = 214984, - [SMALL_STATE(2743)] = 215047, - [SMALL_STATE(2744)] = 215112, - [SMALL_STATE(2745)] = 215175, - [SMALL_STATE(2746)] = 215238, - [SMALL_STATE(2747)] = 215301, - [SMALL_STATE(2748)] = 215366, - [SMALL_STATE(2749)] = 215429, - [SMALL_STATE(2750)] = 215492, - [SMALL_STATE(2751)] = 215555, - [SMALL_STATE(2752)] = 215648, - [SMALL_STATE(2753)] = 215717, - [SMALL_STATE(2754)] = 215792, - [SMALL_STATE(2755)] = 215855, - [SMALL_STATE(2756)] = 215918, - [SMALL_STATE(2757)] = 215981, - [SMALL_STATE(2758)] = 216044, - [SMALL_STATE(2759)] = 216109, - [SMALL_STATE(2760)] = 216174, - [SMALL_STATE(2761)] = 216245, - [SMALL_STATE(2762)] = 216310, - [SMALL_STATE(2763)] = 216376, - [SMALL_STATE(2764)] = 216438, - [SMALL_STATE(2765)] = 216500, - [SMALL_STATE(2766)] = 216574, - [SMALL_STATE(2767)] = 216670, - [SMALL_STATE(2768)] = 216734, - [SMALL_STATE(2769)] = 216832, - [SMALL_STATE(2770)] = 216898, - [SMALL_STATE(2771)] = 216960, - [SMALL_STATE(2772)] = 217022, - [SMALL_STATE(2773)] = 217090, - [SMALL_STATE(2774)] = 217158, - [SMALL_STATE(2775)] = 217220, - [SMALL_STATE(2776)] = 217282, - [SMALL_STATE(2777)] = 217350, - [SMALL_STATE(2778)] = 217436, - [SMALL_STATE(2779)] = 217496, - [SMALL_STATE(2780)] = 217556, - [SMALL_STATE(2781)] = 217618, - [SMALL_STATE(2782)] = 217702, - [SMALL_STATE(2783)] = 217784, - [SMALL_STATE(2784)] = 217844, - [SMALL_STATE(2785)] = 217904, - [SMALL_STATE(2786)] = 217966, - [SMALL_STATE(2787)] = 218046, - [SMALL_STATE(2788)] = 218108, - [SMALL_STATE(2789)] = 218190, - [SMALL_STATE(2790)] = 218274, - [SMALL_STATE(2791)] = 218354, - [SMALL_STATE(2792)] = 218414, - [SMALL_STATE(2793)] = 218500, - [SMALL_STATE(2794)] = 218596, - [SMALL_STATE(2795)] = 218668, - [SMALL_STATE(2796)] = 218740, - [SMALL_STATE(2797)] = 218802, - [SMALL_STATE(2798)] = 218864, - [SMALL_STATE(2799)] = 218928, - [SMALL_STATE(2800)] = 218992, - [SMALL_STATE(2801)] = 219054, - [SMALL_STATE(2802)] = 219152, - [SMALL_STATE(2803)] = 219250, - [SMALL_STATE(2804)] = 219312, - [SMALL_STATE(2805)] = 219374, - [SMALL_STATE(2806)] = 219436, - [SMALL_STATE(2807)] = 219508, - [SMALL_STATE(2808)] = 219570, - [SMALL_STATE(2809)] = 219632, - [SMALL_STATE(2810)] = 219692, - [SMALL_STATE(2811)] = 219760, - [SMALL_STATE(2812)] = 219820, - [SMALL_STATE(2813)] = 219880, - [SMALL_STATE(2814)] = 219958, - [SMALL_STATE(2815)] = 220018, - [SMALL_STATE(2816)] = 220080, - [SMALL_STATE(2817)] = 220154, - [SMALL_STATE(2818)] = 220216, - [SMALL_STATE(2819)] = 220276, - [SMALL_STATE(2820)] = 220336, - [SMALL_STATE(2821)] = 220396, - [SMALL_STATE(2822)] = 220468, - [SMALL_STATE(2823)] = 220536, - [SMALL_STATE(2824)] = 220596, - [SMALL_STATE(2825)] = 220658, - [SMALL_STATE(2826)] = 220720, - [SMALL_STATE(2827)] = 220780, - [SMALL_STATE(2828)] = 220854, - [SMALL_STATE(2829)] = 220920, - [SMALL_STATE(2830)] = 220994, - [SMALL_STATE(2831)] = 221060, - [SMALL_STATE(2832)] = 221122, - [SMALL_STATE(2833)] = 221182, - [SMALL_STATE(2834)] = 221244, - [SMALL_STATE(2835)] = 221306, - [SMALL_STATE(2836)] = 221404, - [SMALL_STATE(2837)] = 221464, - [SMALL_STATE(2838)] = 221526, - [SMALL_STATE(2839)] = 221590, - [SMALL_STATE(2840)] = 221654, - [SMALL_STATE(2841)] = 221750, - [SMALL_STATE(2842)] = 221812, - [SMALL_STATE(2843)] = 221872, - [SMALL_STATE(2844)] = 221932, - [SMALL_STATE(2845)] = 221992, - [SMALL_STATE(2846)] = 222052, - [SMALL_STATE(2847)] = 222114, - [SMALL_STATE(2848)] = 222174, - [SMALL_STATE(2849)] = 222248, - [SMALL_STATE(2850)] = 222312, - [SMALL_STATE(2851)] = 222410, - [SMALL_STATE(2852)] = 222474, - [SMALL_STATE(2853)] = 222542, - [SMALL_STATE(2854)] = 222616, - [SMALL_STATE(2855)] = 222690, - [SMALL_STATE(2856)] = 222756, - [SMALL_STATE(2857)] = 222820, - [SMALL_STATE(2858)] = 222882, - [SMALL_STATE(2859)] = 222948, - [SMALL_STATE(2860)] = 223014, - [SMALL_STATE(2861)] = 223112, - [SMALL_STATE(2862)] = 223174, - [SMALL_STATE(2863)] = 223236, - [SMALL_STATE(2864)] = 223300, - [SMALL_STATE(2865)] = 223364, - [SMALL_STATE(2866)] = 223428, - [SMALL_STATE(2867)] = 223492, - [SMALL_STATE(2868)] = 223556, - [SMALL_STATE(2869)] = 223630, - [SMALL_STATE(2870)] = 223694, - [SMALL_STATE(2871)] = 223756, - [SMALL_STATE(2872)] = 223818, - [SMALL_STATE(2873)] = 223882, - [SMALL_STATE(2874)] = 223954, - [SMALL_STATE(2875)] = 224020, - [SMALL_STATE(2876)] = 224080, - [SMALL_STATE(2877)] = 224140, - [SMALL_STATE(2878)] = 224204, - [SMALL_STATE(2879)] = 224302, - [SMALL_STATE(2880)] = 224398, - [SMALL_STATE(2881)] = 224462, - [SMALL_STATE(2882)] = 224526, - [SMALL_STATE(2883)] = 224590, - [SMALL_STATE(2884)] = 224656, - [SMALL_STATE(2885)] = 224756, - [SMALL_STATE(2886)] = 224822, - [SMALL_STATE(2887)] = 224882, - [SMALL_STATE(2888)] = 224942, - [SMALL_STATE(2889)] = 225002, - [SMALL_STATE(2890)] = 225062, - [SMALL_STATE(2891)] = 225122, - [SMALL_STATE(2892)] = 225182, - [SMALL_STATE(2893)] = 225242, - [SMALL_STATE(2894)] = 225302, - [SMALL_STATE(2895)] = 225362, - [SMALL_STATE(2896)] = 225428, - [SMALL_STATE(2897)] = 225492, - [SMALL_STATE(2898)] = 225570, - [SMALL_STATE(2899)] = 225634, - [SMALL_STATE(2900)] = 225694, - [SMALL_STATE(2901)] = 225754, - [SMALL_STATE(2902)] = 225814, - [SMALL_STATE(2903)] = 225874, - [SMALL_STATE(2904)] = 225934, - [SMALL_STATE(2905)] = 225996, - [SMALL_STATE(2906)] = 226070, - [SMALL_STATE(2907)] = 226134, - [SMALL_STATE(2908)] = 226200, - [SMALL_STATE(2909)] = 226264, - [SMALL_STATE(2910)] = 226328, - [SMALL_STATE(2911)] = 226402, - [SMALL_STATE(2912)] = 226462, - [SMALL_STATE(2913)] = 226522, - [SMALL_STATE(2914)] = 226582, - [SMALL_STATE(2915)] = 226646, - [SMALL_STATE(2916)] = 226706, - [SMALL_STATE(2917)] = 226766, - [SMALL_STATE(2918)] = 226844, - [SMALL_STATE(2919)] = 226908, - [SMALL_STATE(2920)] = 226996, - [SMALL_STATE(2921)] = 227082, - [SMALL_STATE(2922)] = 227142, - [SMALL_STATE(2923)] = 227206, - [SMALL_STATE(2924)] = 227266, - [SMALL_STATE(2925)] = 227326, - [SMALL_STATE(2926)] = 227388, - [SMALL_STATE(2927)] = 227450, - [SMALL_STATE(2928)] = 227514, - [SMALL_STATE(2929)] = 227574, - [SMALL_STATE(2930)] = 227658, - [SMALL_STATE(2931)] = 227756, - [SMALL_STATE(2932)] = 227822, - [SMALL_STATE(2933)] = 227882, - [SMALL_STATE(2934)] = 227942, - [SMALL_STATE(2935)] = 228024, - [SMALL_STATE(2936)] = 228084, - [SMALL_STATE(2937)] = 228144, - [SMALL_STATE(2938)] = 228204, - [SMALL_STATE(2939)] = 228304, - [SMALL_STATE(2940)] = 228368, - [SMALL_STATE(2941)] = 228468, - [SMALL_STATE(2942)] = 228528, - [SMALL_STATE(2943)] = 228602, - [SMALL_STATE(2944)] = 228674, - [SMALL_STATE(2945)] = 228742, - [SMALL_STATE(2946)] = 228816, - [SMALL_STATE(2947)] = 228876, - [SMALL_STATE(2948)] = 228940, - [SMALL_STATE(2949)] = 229012, - [SMALL_STATE(2950)] = 229072, - [SMALL_STATE(2951)] = 229132, - [SMALL_STATE(2952)] = 229196, - [SMALL_STATE(2953)] = 229256, - [SMALL_STATE(2954)] = 229316, - [SMALL_STATE(2955)] = 229378, - [SMALL_STATE(2956)] = 229438, - [SMALL_STATE(2957)] = 229498, - [SMALL_STATE(2958)] = 229560, - [SMALL_STATE(2959)] = 229620, - [SMALL_STATE(2960)] = 229680, - [SMALL_STATE(2961)] = 229740, - [SMALL_STATE(2962)] = 229802, - [SMALL_STATE(2963)] = 229861, - [SMALL_STATE(2964)] = 229922, - [SMALL_STATE(2965)] = 229983, - [SMALL_STATE(2966)] = 230042, - [SMALL_STATE(2967)] = 230101, - [SMALL_STATE(2968)] = 230160, - [SMALL_STATE(2969)] = 230219, - [SMALL_STATE(2970)] = 230278, - [SMALL_STATE(2971)] = 230337, - [SMALL_STATE(2972)] = 230396, - [SMALL_STATE(2973)] = 230455, - [SMALL_STATE(2974)] = 230522, - [SMALL_STATE(2975)] = 230583, - [SMALL_STATE(2976)] = 230646, - [SMALL_STATE(2977)] = 230711, - [SMALL_STATE(2978)] = 230776, - [SMALL_STATE(2979)] = 230839, - [SMALL_STATE(2980)] = 230900, - [SMALL_STATE(2981)] = 230959, - [SMALL_STATE(2982)] = 231028, - [SMALL_STATE(2983)] = 231087, - [SMALL_STATE(2984)] = 231148, - [SMALL_STATE(2985)] = 231207, - [SMALL_STATE(2986)] = 231266, - [SMALL_STATE(2987)] = 231325, - [SMALL_STATE(2988)] = 231390, - [SMALL_STATE(2989)] = 231453, - [SMALL_STATE(2990)] = 231516, - [SMALL_STATE(2991)] = 231575, - [SMALL_STATE(2992)] = 231672, - [SMALL_STATE(2993)] = 231735, - [SMALL_STATE(2994)] = 231796, - [SMALL_STATE(2995)] = 231855, - [SMALL_STATE(2996)] = 231918, - [SMALL_STATE(2997)] = 231987, - [SMALL_STATE(2998)] = 232046, - [SMALL_STATE(2999)] = 232109, - [SMALL_STATE(3000)] = 232172, - [SMALL_STATE(3001)] = 232231, - [SMALL_STATE(3002)] = 232328, - [SMALL_STATE(3003)] = 232389, - [SMALL_STATE(3004)] = 232448, - [SMALL_STATE(3005)] = 232509, - [SMALL_STATE(3006)] = 232570, - [SMALL_STATE(3007)] = 232643, - [SMALL_STATE(3008)] = 232738, - [SMALL_STATE(3009)] = 232835, - [SMALL_STATE(3010)] = 232898, - [SMALL_STATE(3011)] = 232993, - [SMALL_STATE(3012)] = 233052, - [SMALL_STATE(3013)] = 233111, - [SMALL_STATE(3014)] = 233172, - [SMALL_STATE(3015)] = 233231, - [SMALL_STATE(3016)] = 233290, - [SMALL_STATE(3017)] = 233349, - [SMALL_STATE(3018)] = 233410, - [SMALL_STATE(3019)] = 233469, - [SMALL_STATE(3020)] = 233528, - [SMALL_STATE(3021)] = 233601, - [SMALL_STATE(3022)] = 233660, - [SMALL_STATE(3023)] = 233719, - [SMALL_STATE(3024)] = 233780, - [SMALL_STATE(3025)] = 233839, - [SMALL_STATE(3026)] = 233898, - [SMALL_STATE(3027)] = 233957, - [SMALL_STATE(3028)] = 234018, - [SMALL_STATE(3029)] = 234079, - [SMALL_STATE(3030)] = 234138, - [SMALL_STATE(3031)] = 234199, - [SMALL_STATE(3032)] = 234260, - [SMALL_STATE(3033)] = 234321, - [SMALL_STATE(3034)] = 234382, - [SMALL_STATE(3035)] = 234441, - [SMALL_STATE(3036)] = 234500, - [SMALL_STATE(3037)] = 234559, - [SMALL_STATE(3038)] = 234620, - [SMALL_STATE(3039)] = 234701, - [SMALL_STATE(3040)] = 234760, - [SMALL_STATE(3041)] = 234821, - [SMALL_STATE(3042)] = 234890, - [SMALL_STATE(3043)] = 234951, - [SMALL_STATE(3044)] = 235010, - [SMALL_STATE(3045)] = 235071, - [SMALL_STATE(3046)] = 235132, - [SMALL_STATE(3047)] = 235193, - [SMALL_STATE(3048)] = 235254, - [SMALL_STATE(3049)] = 235315, - [SMALL_STATE(3050)] = 235374, - [SMALL_STATE(3051)] = 235433, - [SMALL_STATE(3052)] = 235492, - [SMALL_STATE(3053)] = 235565, - [SMALL_STATE(3054)] = 235642, - [SMALL_STATE(3055)] = 235713, - [SMALL_STATE(3056)] = 235772, - [SMALL_STATE(3057)] = 235831, - [SMALL_STATE(3058)] = 235894, - [SMALL_STATE(3059)] = 235953, - [SMALL_STATE(3060)] = 236012, - [SMALL_STATE(3061)] = 236071, - [SMALL_STATE(3062)] = 236156, - [SMALL_STATE(3063)] = 236215, - [SMALL_STATE(3064)] = 236274, - [SMALL_STATE(3065)] = 236333, - [SMALL_STATE(3066)] = 236392, - [SMALL_STATE(3067)] = 236471, - [SMALL_STATE(3068)] = 236530, - [SMALL_STATE(3069)] = 236593, - [SMALL_STATE(3070)] = 236652, - [SMALL_STATE(3071)] = 236711, - [SMALL_STATE(3072)] = 236782, - [SMALL_STATE(3073)] = 236849, - [SMALL_STATE(3074)] = 236910, - [SMALL_STATE(3075)] = 236969, - [SMALL_STATE(3076)] = 237028, - [SMALL_STATE(3077)] = 237087, - [SMALL_STATE(3078)] = 237146, - [SMALL_STATE(3079)] = 237205, - [SMALL_STATE(3080)] = 237264, - [SMALL_STATE(3081)] = 237337, - [SMALL_STATE(3082)] = 237396, - [SMALL_STATE(3083)] = 237455, - [SMALL_STATE(3084)] = 237514, - [SMALL_STATE(3085)] = 237573, - [SMALL_STATE(3086)] = 237632, - [SMALL_STATE(3087)] = 237691, - [SMALL_STATE(3088)] = 237750, - [SMALL_STATE(3089)] = 237833, - [SMALL_STATE(3090)] = 237892, - [SMALL_STATE(3091)] = 237951, - [SMALL_STATE(3092)] = 238010, - [SMALL_STATE(3093)] = 238069, - [SMALL_STATE(3094)] = 238128, - [SMALL_STATE(3095)] = 238189, - [SMALL_STATE(3096)] = 238248, - [SMALL_STATE(3097)] = 238307, - [SMALL_STATE(3098)] = 238366, - [SMALL_STATE(3099)] = 238425, - [SMALL_STATE(3100)] = 238484, - [SMALL_STATE(3101)] = 238543, - [SMALL_STATE(3102)] = 238602, - [SMALL_STATE(3103)] = 238660, - [SMALL_STATE(3104)] = 238718, - [SMALL_STATE(3105)] = 238784, - [SMALL_STATE(3106)] = 238842, - [SMALL_STATE(3107)] = 238900, - [SMALL_STATE(3108)] = 238958, - [SMALL_STATE(3109)] = 239016, - [SMALL_STATE(3110)] = 239074, - [SMALL_STATE(3111)] = 239132, - [SMALL_STATE(3112)] = 239190, - [SMALL_STATE(3113)] = 239248, - [SMALL_STATE(3114)] = 239314, - [SMALL_STATE(3115)] = 239372, - [SMALL_STATE(3116)] = 239430, - [SMALL_STATE(3117)] = 239488, - [SMALL_STATE(3118)] = 239546, - [SMALL_STATE(3119)] = 239604, - [SMALL_STATE(3120)] = 239662, - [SMALL_STATE(3121)] = 239720, - [SMALL_STATE(3122)] = 239778, - [SMALL_STATE(3123)] = 239836, - [SMALL_STATE(3124)] = 239894, - [SMALL_STATE(3125)] = 239956, - [SMALL_STATE(3126)] = 240014, - [SMALL_STATE(3127)] = 240072, - [SMALL_STATE(3128)] = 240130, - [SMALL_STATE(3129)] = 240188, - [SMALL_STATE(3130)] = 240246, - [SMALL_STATE(3131)] = 240304, - [SMALL_STATE(3132)] = 240362, - [SMALL_STATE(3133)] = 240420, - [SMALL_STATE(3134)] = 240478, - [SMALL_STATE(3135)] = 240536, - [SMALL_STATE(3136)] = 240594, - [SMALL_STATE(3137)] = 240652, - [SMALL_STATE(3138)] = 240710, - [SMALL_STATE(3139)] = 240768, - [SMALL_STATE(3140)] = 240826, - [SMALL_STATE(3141)] = 240884, - [SMALL_STATE(3142)] = 240942, - [SMALL_STATE(3143)] = 241000, - [SMALL_STATE(3144)] = 241058, - [SMALL_STATE(3145)] = 241120, - [SMALL_STATE(3146)] = 241178, - [SMALL_STATE(3147)] = 241236, - [SMALL_STATE(3148)] = 241294, - [SMALL_STATE(3149)] = 241360, - [SMALL_STATE(3150)] = 241418, - [SMALL_STATE(3151)] = 241476, - [SMALL_STATE(3152)] = 241534, - [SMALL_STATE(3153)] = 241592, - [SMALL_STATE(3154)] = 241650, - [SMALL_STATE(3155)] = 241708, - [SMALL_STATE(3156)] = 241774, - [SMALL_STATE(3157)] = 241832, - [SMALL_STATE(3158)] = 241890, - [SMALL_STATE(3159)] = 241956, - [SMALL_STATE(3160)] = 242014, - [SMALL_STATE(3161)] = 242072, - [SMALL_STATE(3162)] = 242130, - [SMALL_STATE(3163)] = 242196, - [SMALL_STATE(3164)] = 242254, - [SMALL_STATE(3165)] = 242316, - [SMALL_STATE(3166)] = 242374, - [SMALL_STATE(3167)] = 242440, - [SMALL_STATE(3168)] = 242498, - [SMALL_STATE(3169)] = 242556, - [SMALL_STATE(3170)] = 242618, - [SMALL_STATE(3171)] = 242676, - [SMALL_STATE(3172)] = 242734, - [SMALL_STATE(3173)] = 242792, - [SMALL_STATE(3174)] = 242850, - [SMALL_STATE(3175)] = 242908, - [SMALL_STATE(3176)] = 242966, - [SMALL_STATE(3177)] = 243028, - [SMALL_STATE(3178)] = 243086, - [SMALL_STATE(3179)] = 243144, - [SMALL_STATE(3180)] = 243202, - [SMALL_STATE(3181)] = 243260, - [SMALL_STATE(3182)] = 243318, - [SMALL_STATE(3183)] = 243378, - [SMALL_STATE(3184)] = 243436, - [SMALL_STATE(3185)] = 243494, - [SMALL_STATE(3186)] = 243554, - [SMALL_STATE(3187)] = 243612, - [SMALL_STATE(3188)] = 243670, - [SMALL_STATE(3189)] = 243738, - [SMALL_STATE(3190)] = 243796, - [SMALL_STATE(3191)] = 243854, - [SMALL_STATE(3192)] = 243912, - [SMALL_STATE(3193)] = 243970, - [SMALL_STATE(3194)] = 244030, - [SMALL_STATE(3195)] = 244088, - [SMALL_STATE(3196)] = 244146, - [SMALL_STATE(3197)] = 244204, - [SMALL_STATE(3198)] = 244262, - [SMALL_STATE(3199)] = 244320, - [SMALL_STATE(3200)] = 244378, - [SMALL_STATE(3201)] = 244436, - [SMALL_STATE(3202)] = 244494, - [SMALL_STATE(3203)] = 244552, - [SMALL_STATE(3204)] = 244610, - [SMALL_STATE(3205)] = 244668, - [SMALL_STATE(3206)] = 244726, - [SMALL_STATE(3207)] = 244788, - [SMALL_STATE(3208)] = 244846, - [SMALL_STATE(3209)] = 244906, - [SMALL_STATE(3210)] = 244966, - [SMALL_STATE(3211)] = 245024, - [SMALL_STATE(3212)] = 245082, - [SMALL_STATE(3213)] = 245144, - [SMALL_STATE(3214)] = 245206, - [SMALL_STATE(3215)] = 245272, - [SMALL_STATE(3216)] = 245330, - [SMALL_STATE(3217)] = 245388, - [SMALL_STATE(3218)] = 245450, - [SMALL_STATE(3219)] = 245508, - [SMALL_STATE(3220)] = 245568, - [SMALL_STATE(3221)] = 245630, - [SMALL_STATE(3222)] = 245688, - [SMALL_STATE(3223)] = 245750, - [SMALL_STATE(3224)] = 245808, - [SMALL_STATE(3225)] = 245868, - [SMALL_STATE(3226)] = 245928, - [SMALL_STATE(3227)] = 245986, - [SMALL_STATE(3228)] = 246044, - [SMALL_STATE(3229)] = 246102, - [SMALL_STATE(3230)] = 246160, - [SMALL_STATE(3231)] = 246222, - [SMALL_STATE(3232)] = 246279, - [SMALL_STATE(3233)] = 246344, - [SMALL_STATE(3234)] = 246405, - [SMALL_STATE(3235)] = 246470, - [SMALL_STATE(3236)] = 246535, - [SMALL_STATE(3237)] = 246600, - [SMALL_STATE(3238)] = 246665, - [SMALL_STATE(3239)] = 246730, - [SMALL_STATE(3240)] = 246795, - [SMALL_STATE(3241)] = 246860, - [SMALL_STATE(3242)] = 246925, - [SMALL_STATE(3243)] = 246990, - [SMALL_STATE(3244)] = 247055, - [SMALL_STATE(3245)] = 247120, - [SMALL_STATE(3246)] = 247185, - [SMALL_STATE(3247)] = 247246, - [SMALL_STATE(3248)] = 247311, - [SMALL_STATE(3249)] = 247376, - [SMALL_STATE(3250)] = 247441, - [SMALL_STATE(3251)] = 247505, - [SMALL_STATE(3252)] = 247569, - [SMALL_STATE(3253)] = 247633, - [SMALL_STATE(3254)] = 247697, - [SMALL_STATE(3255)] = 247761, - [SMALL_STATE(3256)] = 247825, - [SMALL_STATE(3257)] = 247889, - [SMALL_STATE(3258)] = 247953, - [SMALL_STATE(3259)] = 248014, - [SMALL_STATE(3260)] = 248075, - [SMALL_STATE(3261)] = 248136, - [SMALL_STATE(3262)] = 248197, - [SMALL_STATE(3263)] = 248257, - [SMALL_STATE(3264)] = 248317, - [SMALL_STATE(3265)] = 248377, - [SMALL_STATE(3266)] = 248437, - [SMALL_STATE(3267)] = 248492, - [SMALL_STATE(3268)] = 248549, - [SMALL_STATE(3269)] = 248606, - [SMALL_STATE(3270)] = 248661, - [SMALL_STATE(3271)] = 248716, - [SMALL_STATE(3272)] = 248771, - [SMALL_STATE(3273)] = 248826, - [SMALL_STATE(3274)] = 248881, - [SMALL_STATE(3275)] = 248936, - [SMALL_STATE(3276)] = 248991, - [SMALL_STATE(3277)] = 249056, - [SMALL_STATE(3278)] = 249115, - [SMALL_STATE(3279)] = 249174, - [SMALL_STATE(3280)] = 249229, - [SMALL_STATE(3281)] = 249288, - [SMALL_STATE(3282)] = 249347, - [SMALL_STATE(3283)] = 249404, - [SMALL_STATE(3284)] = 249461, - [SMALL_STATE(3285)] = 249518, - [SMALL_STATE(3286)] = 249581, - [SMALL_STATE(3287)] = 249636, - [SMALL_STATE(3288)] = 249691, - [SMALL_STATE(3289)] = 249756, - [SMALL_STATE(3290)] = 249813, - [SMALL_STATE(3291)] = 249876, - [SMALL_STATE(3292)] = 249939, - [SMALL_STATE(3293)] = 249994, - [SMALL_STATE(3294)] = 250050, - [SMALL_STATE(3295)] = 250108, - [SMALL_STATE(3296)] = 250162, - [SMALL_STATE(3297)] = 250216, - [SMALL_STATE(3298)] = 250270, - [SMALL_STATE(3299)] = 250326, - [SMALL_STATE(3300)] = 250384, - [SMALL_STATE(3301)] = 250440, - [SMALL_STATE(3302)] = 250496, - [SMALL_STATE(3303)] = 250550, - [SMALL_STATE(3304)] = 250606, - [SMALL_STATE(3305)] = 250664, - [SMALL_STATE(3306)] = 250718, - [SMALL_STATE(3307)] = 250772, - [SMALL_STATE(3308)] = 250826, - [SMALL_STATE(3309)] = 250880, - [SMALL_STATE(3310)] = 250936, - [SMALL_STATE(3311)] = 250992, - [SMALL_STATE(3312)] = 251056, - [SMALL_STATE(3313)] = 251112, - [SMALL_STATE(3314)] = 251166, - [SMALL_STATE(3315)] = 251220, - [SMALL_STATE(3316)] = 251274, - [SMALL_STATE(3317)] = 251338, - [SMALL_STATE(3318)] = 251396, - [SMALL_STATE(3319)] = 251450, - [SMALL_STATE(3320)] = 251506, - [SMALL_STATE(3321)] = 251560, - [SMALL_STATE(3322)] = 251614, - [SMALL_STATE(3323)] = 251672, - [SMALL_STATE(3324)] = 251730, - [SMALL_STATE(3325)] = 251784, - [SMALL_STATE(3326)] = 251838, - [SMALL_STATE(3327)] = 251892, - [SMALL_STATE(3328)] = 251950, - [SMALL_STATE(3329)] = 252004, - [SMALL_STATE(3330)] = 252062, - [SMALL_STATE(3331)] = 252126, - [SMALL_STATE(3332)] = 252180, - [SMALL_STATE(3333)] = 252236, - [SMALL_STATE(3334)] = 252300, - [SMALL_STATE(3335)] = 252356, - [SMALL_STATE(3336)] = 252410, - [SMALL_STATE(3337)] = 252464, - [SMALL_STATE(3338)] = 252518, - [SMALL_STATE(3339)] = 252572, - [SMALL_STATE(3340)] = 252628, - [SMALL_STATE(3341)] = 252682, - [SMALL_STATE(3342)] = 252737, - [SMALL_STATE(3343)] = 252800, - [SMALL_STATE(3344)] = 252853, - [SMALL_STATE(3345)] = 252914, - [SMALL_STATE(3346)] = 252967, - [SMALL_STATE(3347)] = 253028, - [SMALL_STATE(3348)] = 253095, - [SMALL_STATE(3349)] = 253150, - [SMALL_STATE(3350)] = 253205, - [SMALL_STATE(3351)] = 253260, - [SMALL_STATE(3352)] = 253327, - [SMALL_STATE(3353)] = 253382, - [SMALL_STATE(3354)] = 253435, - [SMALL_STATE(3355)] = 253488, - [SMALL_STATE(3356)] = 253543, - [SMALL_STATE(3357)] = 253604, - [SMALL_STATE(3358)] = 253657, - [SMALL_STATE(3359)] = 253710, - [SMALL_STATE(3360)] = 253763, - [SMALL_STATE(3361)] = 253818, - [SMALL_STATE(3362)] = 253871, - [SMALL_STATE(3363)] = 253924, - [SMALL_STATE(3364)] = 253987, - [SMALL_STATE(3365)] = 254042, - [SMALL_STATE(3366)] = 254103, - [SMALL_STATE(3367)] = 254164, - [SMALL_STATE(3368)] = 254225, - [SMALL_STATE(3369)] = 254280, - [SMALL_STATE(3370)] = 254333, - [SMALL_STATE(3371)] = 254396, - [SMALL_STATE(3372)] = 254449, - [SMALL_STATE(3373)] = 254510, - [SMALL_STATE(3374)] = 254573, - [SMALL_STATE(3375)] = 254628, - [SMALL_STATE(3376)] = 254681, - [SMALL_STATE(3377)] = 254739, - [SMALL_STATE(3378)] = 254797, - [SMALL_STATE(3379)] = 254853, - [SMALL_STATE(3380)] = 254909, - [SMALL_STATE(3381)] = 254965, - [SMALL_STATE(3382)] = 255025, - [SMALL_STATE(3383)] = 255083, - [SMALL_STATE(3384)] = 255141, - [SMALL_STATE(3385)] = 255199, - [SMALL_STATE(3386)] = 255257, - [SMALL_STATE(3387)] = 255313, - [SMALL_STATE(3388)] = 255371, - [SMALL_STATE(3389)] = 255429, - [SMALL_STATE(3390)] = 255487, - [SMALL_STATE(3391)] = 255543, - [SMALL_STATE(3392)] = 255601, - [SMALL_STATE(3393)] = 255659, - [SMALL_STATE(3394)] = 255715, - [SMALL_STATE(3395)] = 255771, - [SMALL_STATE(3396)] = 255827, - [SMALL_STATE(3397)] = 255883, - [SMALL_STATE(3398)] = 255935, - [SMALL_STATE(3399)] = 255993, - [SMALL_STATE(3400)] = 256049, - [SMALL_STATE(3401)] = 256105, - [SMALL_STATE(3402)] = 256157, - [SMALL_STATE(3403)] = 256215, - [SMALL_STATE(3404)] = 256271, - [SMALL_STATE(3405)] = 256331, - [SMALL_STATE(3406)] = 256389, - [SMALL_STATE(3407)] = 256441, - [SMALL_STATE(3408)] = 256499, - [SMALL_STATE(3409)] = 256557, - [SMALL_STATE(3410)] = 256615, - [SMALL_STATE(3411)] = 256677, - [SMALL_STATE(3412)] = 256737, - [SMALL_STATE(3413)] = 256795, - [SMALL_STATE(3414)] = 256853, - [SMALL_STATE(3415)] = 256911, - [SMALL_STATE(3416)] = 256969, - [SMALL_STATE(3417)] = 257027, - [SMALL_STATE(3418)] = 257085, - [SMALL_STATE(3419)] = 257141, - [SMALL_STATE(3420)] = 257199, - [SMALL_STATE(3421)] = 257255, - [SMALL_STATE(3422)] = 257311, - [SMALL_STATE(3423)] = 257367, - [SMALL_STATE(3424)] = 257417, - [SMALL_STATE(3425)] = 257477, - [SMALL_STATE(3426)] = 257528, - [SMALL_STATE(3427)] = 257579, - [SMALL_STATE(3428)] = 257638, - [SMALL_STATE(3429)] = 257689, - [SMALL_STATE(3430)] = 257746, - [SMALL_STATE(3431)] = 257799, - [SMALL_STATE(3432)] = 257850, - [SMALL_STATE(3433)] = 257935, - [SMALL_STATE(3434)] = 257988, - [SMALL_STATE(3435)] = 258075, - [SMALL_STATE(3436)] = 258136, - [SMALL_STATE(3437)] = 258193, - [SMALL_STATE(3438)] = 258258, - [SMALL_STATE(3439)] = 258311, - [SMALL_STATE(3440)] = 258386, - [SMALL_STATE(3441)] = 258445, - [SMALL_STATE(3442)] = 258518, - [SMALL_STATE(3443)] = 258589, - [SMALL_STATE(3444)] = 258648, - [SMALL_STATE(3445)] = 258703, - [SMALL_STATE(3446)] = 258772, - [SMALL_STATE(3447)] = 258821, - [SMALL_STATE(3448)] = 258878, - [SMALL_STATE(3449)] = 258937, - [SMALL_STATE(3450)] = 258990, - [SMALL_STATE(3451)] = 259049, - [SMALL_STATE(3452)] = 259110, - [SMALL_STATE(3453)] = 259171, - [SMALL_STATE(3454)] = 259222, - [SMALL_STATE(3455)] = 259271, - [SMALL_STATE(3456)] = 259330, - [SMALL_STATE(3457)] = 259379, - [SMALL_STATE(3458)] = 259440, - [SMALL_STATE(3459)] = 259497, - [SMALL_STATE(3460)] = 259556, - [SMALL_STATE(3461)] = 259607, - [SMALL_STATE(3462)] = 259660, - [SMALL_STATE(3463)] = 259711, - [SMALL_STATE(3464)] = 259762, - [SMALL_STATE(3465)] = 259847, - [SMALL_STATE(3466)] = 259896, - [SMALL_STATE(3467)] = 259983, - [SMALL_STATE(3468)] = 260070, - [SMALL_STATE(3469)] = 260125, - [SMALL_STATE(3470)] = 260171, - [SMALL_STATE(3471)] = 260217, - [SMALL_STATE(3472)] = 260263, - [SMALL_STATE(3473)] = 260313, - [SMALL_STATE(3474)] = 260363, - [SMALL_STATE(3475)] = 260415, - [SMALL_STATE(3476)] = 260465, - [SMALL_STATE(3477)] = 260511, - [SMALL_STATE(3478)] = 260557, - [SMALL_STATE(3479)] = 260603, - [SMALL_STATE(3480)] = 260649, - [SMALL_STATE(3481)] = 260699, - [SMALL_STATE(3482)] = 260745, - [SMALL_STATE(3483)] = 260791, - [SMALL_STATE(3484)] = 260841, - [SMALL_STATE(3485)] = 260891, - [SMALL_STATE(3486)] = 260941, - [SMALL_STATE(3487)] = 260989, - [SMALL_STATE(3488)] = 261035, - [SMALL_STATE(3489)] = 261081, - [SMALL_STATE(3490)] = 261129, - [SMALL_STATE(3491)] = 261175, - [SMALL_STATE(3492)] = 261221, - [SMALL_STATE(3493)] = 261267, - [SMALL_STATE(3494)] = 261313, - [SMALL_STATE(3495)] = 261359, - [SMALL_STATE(3496)] = 261411, - [SMALL_STATE(3497)] = 261457, - [SMALL_STATE(3498)] = 261505, - [SMALL_STATE(3499)] = 261551, - [SMALL_STATE(3500)] = 261597, - [SMALL_STATE(3501)] = 261643, - [SMALL_STATE(3502)] = 261689, - [SMALL_STATE(3503)] = 261735, - [SMALL_STATE(3504)] = 261781, - [SMALL_STATE(3505)] = 261829, - [SMALL_STATE(3506)] = 261875, - [SMALL_STATE(3507)] = 261921, - [SMALL_STATE(3508)] = 261967, - [SMALL_STATE(3509)] = 262015, - [SMALL_STATE(3510)] = 262061, - [SMALL_STATE(3511)] = 262107, - [SMALL_STATE(3512)] = 262159, - [SMALL_STATE(3513)] = 262217, - [SMALL_STATE(3514)] = 262265, - [SMALL_STATE(3515)] = 262311, - [SMALL_STATE(3516)] = 262357, - [SMALL_STATE(3517)] = 262403, - [SMALL_STATE(3518)] = 262449, - [SMALL_STATE(3519)] = 262495, - [SMALL_STATE(3520)] = 262541, - [SMALL_STATE(3521)] = 262587, - [SMALL_STATE(3522)] = 262633, - [SMALL_STATE(3523)] = 262679, - [SMALL_STATE(3524)] = 262727, - [SMALL_STATE(3525)] = 262773, - [SMALL_STATE(3526)] = 262823, - [SMALL_STATE(3527)] = 262869, - [SMALL_STATE(3528)] = 262915, - [SMALL_STATE(3529)] = 262961, - [SMALL_STATE(3530)] = 263007, - [SMALL_STATE(3531)] = 263055, - [SMALL_STATE(3532)] = 263101, - [SMALL_STATE(3533)] = 263147, - [SMALL_STATE(3534)] = 263193, - [SMALL_STATE(3535)] = 263239, - [SMALL_STATE(3536)] = 263285, - [SMALL_STATE(3537)] = 263333, - [SMALL_STATE(3538)] = 263381, - [SMALL_STATE(3539)] = 263427, - [SMALL_STATE(3540)] = 263475, - [SMALL_STATE(3541)] = 263521, - [SMALL_STATE(3542)] = 263569, - [SMALL_STATE(3543)] = 263615, - [SMALL_STATE(3544)] = 263661, - [SMALL_STATE(3545)] = 263707, - [SMALL_STATE(3546)] = 263755, - [SMALL_STATE(3547)] = 263801, - [SMALL_STATE(3548)] = 263847, - [SMALL_STATE(3549)] = 263895, - [SMALL_STATE(3550)] = 263941, - [SMALL_STATE(3551)] = 263991, - [SMALL_STATE(3552)] = 264039, - [SMALL_STATE(3553)] = 264085, - [SMALL_STATE(3554)] = 264141, - [SMALL_STATE(3555)] = 264189, - [SMALL_STATE(3556)] = 264235, - [SMALL_STATE(3557)] = 264281, - [SMALL_STATE(3558)] = 264327, - [SMALL_STATE(3559)] = 264375, - [SMALL_STATE(3560)] = 264423, - [SMALL_STATE(3561)] = 264469, - [SMALL_STATE(3562)] = 264515, - [SMALL_STATE(3563)] = 264561, - [SMALL_STATE(3564)] = 264607, - [SMALL_STATE(3565)] = 264657, - [SMALL_STATE(3566)] = 264703, - [SMALL_STATE(3567)] = 264749, - [SMALL_STATE(3568)] = 264794, - [SMALL_STATE(3569)] = 264843, - [SMALL_STATE(3570)] = 264888, - [SMALL_STATE(3571)] = 264937, - [SMALL_STATE(3572)] = 264982, - [SMALL_STATE(3573)] = 265027, - [SMALL_STATE(3574)] = 265084, - [SMALL_STATE(3575)] = 265133, - [SMALL_STATE(3576)] = 265178, - [SMALL_STATE(3577)] = 265223, - [SMALL_STATE(3578)] = 265268, - [SMALL_STATE(3579)] = 265313, - [SMALL_STATE(3580)] = 265358, - [SMALL_STATE(3581)] = 265407, - [SMALL_STATE(3582)] = 265456, - [SMALL_STATE(3583)] = 265501, - [SMALL_STATE(3584)] = 265546, - [SMALL_STATE(3585)] = 265591, - [SMALL_STATE(3586)] = 265636, - [SMALL_STATE(3587)] = 265689, - [SMALL_STATE(3588)] = 265740, - [SMALL_STATE(3589)] = 265791, - [SMALL_STATE(3590)] = 265836, - [SMALL_STATE(3591)] = 265881, - [SMALL_STATE(3592)] = 265926, - [SMALL_STATE(3593)] = 265975, - [SMALL_STATE(3594)] = 266026, - [SMALL_STATE(3595)] = 266077, - [SMALL_STATE(3596)] = 266122, - [SMALL_STATE(3597)] = 266167, - [SMALL_STATE(3598)] = 266216, - [SMALL_STATE(3599)] = 266261, - [SMALL_STATE(3600)] = 266310, - [SMALL_STATE(3601)] = 266369, - [SMALL_STATE(3602)] = 266428, - [SMALL_STATE(3603)] = 266473, - [SMALL_STATE(3604)] = 266524, - [SMALL_STATE(3605)] = 266569, - [SMALL_STATE(3606)] = 266614, - [SMALL_STATE(3607)] = 266659, - [SMALL_STATE(3608)] = 266704, - [SMALL_STATE(3609)] = 266787, - [SMALL_STATE(3610)] = 266836, - [SMALL_STATE(3611)] = 266885, - [SMALL_STATE(3612)] = 266942, - [SMALL_STATE(3613)] = 267023, - [SMALL_STATE(3614)] = 267072, - [SMALL_STATE(3615)] = 267121, - [SMALL_STATE(3616)] = 267170, - [SMALL_STATE(3617)] = 267225, - [SMALL_STATE(3618)] = 267270, - [SMALL_STATE(3619)] = 267319, - [SMALL_STATE(3620)] = 267400, - [SMALL_STATE(3621)] = 267445, - [SMALL_STATE(3622)] = 267492, - [SMALL_STATE(3623)] = 267539, - [SMALL_STATE(3624)] = 267586, - [SMALL_STATE(3625)] = 267635, - [SMALL_STATE(3626)] = 267684, - [SMALL_STATE(3627)] = 267733, - [SMALL_STATE(3628)] = 267778, - [SMALL_STATE(3629)] = 267823, - [SMALL_STATE(3630)] = 267888, - [SMALL_STATE(3631)] = 267955, - [SMALL_STATE(3632)] = 268000, - [SMALL_STATE(3633)] = 268069, - [SMALL_STATE(3634)] = 268122, - [SMALL_STATE(3635)] = 268193, - [SMALL_STATE(3636)] = 268246, - [SMALL_STATE(3637)] = 268309, - [SMALL_STATE(3638)] = 268354, - [SMALL_STATE(3639)] = 268401, - [SMALL_STATE(3640)] = 268446, - [SMALL_STATE(3641)] = 268505, - [SMALL_STATE(3642)] = 268564, - [SMALL_STATE(3643)] = 268619, - [SMALL_STATE(3644)] = 268664, - [SMALL_STATE(3645)] = 268721, - [SMALL_STATE(3646)] = 268766, - [SMALL_STATE(3647)] = 268811, - [SMALL_STATE(3648)] = 268856, - [SMALL_STATE(3649)] = 268901, - [SMALL_STATE(3650)] = 268946, - [SMALL_STATE(3651)] = 268991, - [SMALL_STATE(3652)] = 269036, - [SMALL_STATE(3653)] = 269081, - [SMALL_STATE(3654)] = 269126, - [SMALL_STATE(3655)] = 269179, - [SMALL_STATE(3656)] = 269224, - [SMALL_STATE(3657)] = 269269, - [SMALL_STATE(3658)] = 269352, - [SMALL_STATE(3659)] = 269399, - [SMALL_STATE(3660)] = 269448, - [SMALL_STATE(3661)] = 269493, - [SMALL_STATE(3662)] = 269548, - [SMALL_STATE(3663)] = 269593, - [SMALL_STATE(3664)] = 269642, - [SMALL_STATE(3665)] = 269689, - [SMALL_STATE(3666)] = 269734, - [SMALL_STATE(3667)] = 269783, - [SMALL_STATE(3668)] = 269832, - [SMALL_STATE(3669)] = 269879, - [SMALL_STATE(3670)] = 269926, - [SMALL_STATE(3671)] = 269973, - [SMALL_STATE(3672)] = 270018, - [SMALL_STATE(3673)] = 270067, - [SMALL_STATE(3674)] = 270116, - [SMALL_STATE(3675)] = 270165, - [SMALL_STATE(3676)] = 270216, - [SMALL_STATE(3677)] = 270261, - [SMALL_STATE(3678)] = 270310, - [SMALL_STATE(3679)] = 270391, - [SMALL_STATE(3680)] = 270436, - [SMALL_STATE(3681)] = 270481, - [SMALL_STATE(3682)] = 270526, - [SMALL_STATE(3683)] = 270571, - [SMALL_STATE(3684)] = 270616, - [SMALL_STATE(3685)] = 270663, - [SMALL_STATE(3686)] = 270708, - [SMALL_STATE(3687)] = 270755, - [SMALL_STATE(3688)] = 270800, - [SMALL_STATE(3689)] = 270857, - [SMALL_STATE(3690)] = 270902, - [SMALL_STATE(3691)] = 270953, - [SMALL_STATE(3692)] = 270998, - [SMALL_STATE(3693)] = 271043, - [SMALL_STATE(3694)] = 271088, - [SMALL_STATE(3695)] = 271147, - [SMALL_STATE(3696)] = 271198, - [SMALL_STATE(3697)] = 271283, - [SMALL_STATE(3698)] = 271328, - [SMALL_STATE(3699)] = 271375, - [SMALL_STATE(3700)] = 271420, - [SMALL_STATE(3701)] = 271487, - [SMALL_STATE(3702)] = 271536, - [SMALL_STATE(3703)] = 271581, - [SMALL_STATE(3704)] = 271626, - [SMALL_STATE(3705)] = 271685, - [SMALL_STATE(3706)] = 271754, - [SMALL_STATE(3707)] = 271825, - [SMALL_STATE(3708)] = 271870, - [SMALL_STATE(3709)] = 271915, - [SMALL_STATE(3710)] = 271972, - [SMALL_STATE(3711)] = 272045, - [SMALL_STATE(3712)] = 272090, - [SMALL_STATE(3713)] = 272153, - [SMALL_STATE(3714)] = 272238, - [SMALL_STATE(3715)] = 272283, - [SMALL_STATE(3716)] = 272328, - [SMALL_STATE(3717)] = 272407, - [SMALL_STATE(3718)] = 272486, - [SMALL_STATE(3719)] = 272537, - [SMALL_STATE(3720)] = 272586, - [SMALL_STATE(3721)] = 272671, - [SMALL_STATE(3722)] = 272730, - [SMALL_STATE(3723)] = 272789, - [SMALL_STATE(3724)] = 272847, - [SMALL_STATE(3725)] = 272893, - [SMALL_STATE(3726)] = 272941, - [SMALL_STATE(3727)] = 272987, - [SMALL_STATE(3728)] = 273033, - [SMALL_STATE(3729)] = 273077, - [SMALL_STATE(3730)] = 273157, - [SMALL_STATE(3731)] = 273211, - [SMALL_STATE(3732)] = 273259, - [SMALL_STATE(3733)] = 273307, - [SMALL_STATE(3734)] = 273355, - [SMALL_STATE(3735)] = 273403, - [SMALL_STATE(3736)] = 273451, - [SMALL_STATE(3737)] = 273497, - [SMALL_STATE(3738)] = 273545, - [SMALL_STATE(3739)] = 273595, - [SMALL_STATE(3740)] = 273643, - [SMALL_STATE(3741)] = 273689, - [SMALL_STATE(3742)] = 273739, - [SMALL_STATE(3743)] = 273789, - [SMALL_STATE(3744)] = 273833, - [SMALL_STATE(3745)] = 273891, - [SMALL_STATE(3746)] = 273935, - [SMALL_STATE(3747)] = 273979, - [SMALL_STATE(3748)] = 274025, - [SMALL_STATE(3749)] = 274071, - [SMALL_STATE(3750)] = 274149, - [SMALL_STATE(3751)] = 274195, - [SMALL_STATE(3752)] = 274243, - [SMALL_STATE(3753)] = 274289, - [SMALL_STATE(3754)] = 274337, - [SMALL_STATE(3755)] = 274387, - [SMALL_STATE(3756)] = 274435, - [SMALL_STATE(3757)] = 274479, - [SMALL_STATE(3758)] = 274523, - [SMALL_STATE(3759)] = 274569, - [SMALL_STATE(3760)] = 274617, - [SMALL_STATE(3761)] = 274663, - [SMALL_STATE(3762)] = 274743, - [SMALL_STATE(3763)] = 274791, - [SMALL_STATE(3764)] = 274837, - [SMALL_STATE(3765)] = 274881, - [SMALL_STATE(3766)] = 274927, - [SMALL_STATE(3767)] = 274973, - [SMALL_STATE(3768)] = 275017, - [SMALL_STATE(3769)] = 275063, - [SMALL_STATE(3770)] = 275107, - [SMALL_STATE(3771)] = 275153, - [SMALL_STATE(3772)] = 275211, - [SMALL_STATE(3773)] = 275257, - [SMALL_STATE(3774)] = 275311, - [SMALL_STATE(3775)] = 275357, - [SMALL_STATE(3776)] = 275407, - [SMALL_STATE(3777)] = 275453, - [SMALL_STATE(3778)] = 275503, - [SMALL_STATE(3779)] = 275557, - [SMALL_STATE(3780)] = 275603, - [SMALL_STATE(3781)] = 275647, - [SMALL_STATE(3782)] = 275693, - [SMALL_STATE(3783)] = 275741, - [SMALL_STATE(3784)] = 275789, - [SMALL_STATE(3785)] = 275835, - [SMALL_STATE(3786)] = 275881, - [SMALL_STATE(3787)] = 275927, - [SMALL_STATE(3788)] = 275985, - [SMALL_STATE(3789)] = 276031, - [SMALL_STATE(3790)] = 276077, - [SMALL_STATE(3791)] = 276159, - [SMALL_STATE(3792)] = 276203, - [SMALL_STATE(3793)] = 276253, - [SMALL_STATE(3794)] = 276297, - [SMALL_STATE(3795)] = 276345, - [SMALL_STATE(3796)] = 276399, - [SMALL_STATE(3797)] = 276453, - [SMALL_STATE(3798)] = 276501, - [SMALL_STATE(3799)] = 276545, - [SMALL_STATE(3800)] = 276597, - [SMALL_STATE(3801)] = 276655, - [SMALL_STATE(3802)] = 276703, - [SMALL_STATE(3803)] = 276763, - [SMALL_STATE(3804)] = 276821, - [SMALL_STATE(3805)] = 276867, - [SMALL_STATE(3806)] = 276929, - [SMALL_STATE(3807)] = 276983, - [SMALL_STATE(3808)] = 277031, - [SMALL_STATE(3809)] = 277077, - [SMALL_STATE(3810)] = 277123, - [SMALL_STATE(3811)] = 277169, - [SMALL_STATE(3812)] = 277217, - [SMALL_STATE(3813)] = 277263, - [SMALL_STATE(3814)] = 277309, - [SMALL_STATE(3815)] = 277365, - [SMALL_STATE(3816)] = 277417, - [SMALL_STATE(3817)] = 277475, - [SMALL_STATE(3818)] = 277523, - [SMALL_STATE(3819)] = 277567, - [SMALL_STATE(3820)] = 277615, - [SMALL_STATE(3821)] = 277663, - [SMALL_STATE(3822)] = 277719, - [SMALL_STATE(3823)] = 277787, - [SMALL_STATE(3824)] = 277839, - [SMALL_STATE(3825)] = 277905, - [SMALL_STATE(3826)] = 277981, - [SMALL_STATE(3827)] = 278045, - [SMALL_STATE(3828)] = 278107, - [SMALL_STATE(3829)] = 278179, - [SMALL_STATE(3830)] = 278227, - [SMALL_STATE(3831)] = 278305, - [SMALL_STATE(3832)] = 278355, - [SMALL_STATE(3833)] = 278401, - [SMALL_STATE(3834)] = 278445, - [SMALL_STATE(3835)] = 278489, - [SMALL_STATE(3836)] = 278535, - [SMALL_STATE(3837)] = 278605, - [SMALL_STATE(3838)] = 278651, - [SMALL_STATE(3839)] = 278719, - [SMALL_STATE(3840)] = 278785, - [SMALL_STATE(3841)] = 278831, - [SMALL_STATE(3842)] = 278907, - [SMALL_STATE(3843)] = 278989, - [SMALL_STATE(3844)] = 279067, - [SMALL_STATE(3845)] = 279149, - [SMALL_STATE(3846)] = 279195, - [SMALL_STATE(3847)] = 279241, - [SMALL_STATE(3848)] = 279287, - [SMALL_STATE(3849)] = 279335, - [SMALL_STATE(3850)] = 279381, - [SMALL_STATE(3851)] = 279429, - [SMALL_STATE(3852)] = 279473, - [SMALL_STATE(3853)] = 279523, - [SMALL_STATE(3854)] = 279575, - [SMALL_STATE(3855)] = 279623, - [SMALL_STATE(3856)] = 279670, - [SMALL_STATE(3857)] = 279713, - [SMALL_STATE(3858)] = 279760, - [SMALL_STATE(3859)] = 279803, - [SMALL_STATE(3860)] = 279854, - [SMALL_STATE(3861)] = 279897, - [SMALL_STATE(3862)] = 279940, - [SMALL_STATE(3863)] = 280017, - [SMALL_STATE(3864)] = 280060, - [SMALL_STATE(3865)] = 280107, - [SMALL_STATE(3866)] = 280150, - [SMALL_STATE(3867)] = 280193, - [SMALL_STATE(3868)] = 280250, - [SMALL_STATE(3869)] = 280293, - [SMALL_STATE(3870)] = 280346, - [SMALL_STATE(3871)] = 280389, - [SMALL_STATE(3872)] = 280432, - [SMALL_STATE(3873)] = 280509, - [SMALL_STATE(3874)] = 280552, - [SMALL_STATE(3875)] = 280599, - [SMALL_STATE(3876)] = 280654, - [SMALL_STATE(3877)] = 280703, - [SMALL_STATE(3878)] = 280746, - [SMALL_STATE(3879)] = 280789, - [SMALL_STATE(3880)] = 280832, - [SMALL_STATE(3881)] = 280875, - [SMALL_STATE(3882)] = 280918, - [SMALL_STATE(3883)] = 280961, - [SMALL_STATE(3884)] = 281010, - [SMALL_STATE(3885)] = 281053, - [SMALL_STATE(3886)] = 281096, - [SMALL_STATE(3887)] = 281139, - [SMALL_STATE(3888)] = 281186, - [SMALL_STATE(3889)] = 281229, - [SMALL_STATE(3890)] = 281274, - [SMALL_STATE(3891)] = 281317, - [SMALL_STATE(3892)] = 281360, - [SMALL_STATE(3893)] = 281403, - [SMALL_STATE(3894)] = 281446, - [SMALL_STATE(3895)] = 281489, - [SMALL_STATE(3896)] = 281542, - [SMALL_STATE(3897)] = 281585, - [SMALL_STATE(3898)] = 281630, - [SMALL_STATE(3899)] = 281673, - [SMALL_STATE(3900)] = 281716, - [SMALL_STATE(3901)] = 281759, - [SMALL_STATE(3902)] = 281802, - [SMALL_STATE(3903)] = 281847, - [SMALL_STATE(3904)] = 281890, - [SMALL_STATE(3905)] = 281933, - [SMALL_STATE(3906)] = 281978, - [SMALL_STATE(3907)] = 282021, - [SMALL_STATE(3908)] = 282064, - [SMALL_STATE(3909)] = 282107, - [SMALL_STATE(3910)] = 282158, - [SMALL_STATE(3911)] = 282215, - [SMALL_STATE(3912)] = 282294, - [SMALL_STATE(3913)] = 282339, - [SMALL_STATE(3914)] = 282384, - [SMALL_STATE(3915)] = 282463, - [SMALL_STATE(3916)] = 282506, - [SMALL_STATE(3917)] = 282549, - [SMALL_STATE(3918)] = 282592, - [SMALL_STATE(3919)] = 282635, - [SMALL_STATE(3920)] = 282678, - [SMALL_STATE(3921)] = 282721, - [SMALL_STATE(3922)] = 282764, - [SMALL_STATE(3923)] = 282807, - [SMALL_STATE(3924)] = 282850, - [SMALL_STATE(3925)] = 282893, - [SMALL_STATE(3926)] = 282936, - [SMALL_STATE(3927)] = 282979, - [SMALL_STATE(3928)] = 283024, - [SMALL_STATE(3929)] = 283067, - [SMALL_STATE(3930)] = 283114, - [SMALL_STATE(3931)] = 283159, - [SMALL_STATE(3932)] = 283204, - [SMALL_STATE(3933)] = 283249, - [SMALL_STATE(3934)] = 283292, - [SMALL_STATE(3935)] = 283335, - [SMALL_STATE(3936)] = 283384, - [SMALL_STATE(3937)] = 283429, - [SMALL_STATE(3938)] = 283474, - [SMALL_STATE(3939)] = 283517, - [SMALL_STATE(3940)] = 283564, - [SMALL_STATE(3941)] = 283611, - [SMALL_STATE(3942)] = 283658, - [SMALL_STATE(3943)] = 283707, - [SMALL_STATE(3944)] = 283752, - [SMALL_STATE(3945)] = 283799, - [SMALL_STATE(3946)] = 283842, - [SMALL_STATE(3947)] = 283885, - [SMALL_STATE(3948)] = 283932, - [SMALL_STATE(3949)] = 283979, - [SMALL_STATE(3950)] = 284022, - [SMALL_STATE(3951)] = 284069, - [SMALL_STATE(3952)] = 284116, - [SMALL_STATE(3953)] = 284163, - [SMALL_STATE(3954)] = 284206, - [SMALL_STATE(3955)] = 284253, - [SMALL_STATE(3956)] = 284300, - [SMALL_STATE(3957)] = 284357, - [SMALL_STATE(3958)] = 284400, - [SMALL_STATE(3959)] = 284451, - [SMALL_STATE(3960)] = 284496, - [SMALL_STATE(3961)] = 284539, - [SMALL_STATE(3962)] = 284582, - [SMALL_STATE(3963)] = 284631, - [SMALL_STATE(3964)] = 284678, - [SMALL_STATE(3965)] = 284725, - [SMALL_STATE(3966)] = 284772, - [SMALL_STATE(3967)] = 284815, - [SMALL_STATE(3968)] = 284860, - [SMALL_STATE(3969)] = 284905, - [SMALL_STATE(3970)] = 284950, - [SMALL_STATE(3971)] = 284993, - [SMALL_STATE(3972)] = 285042, - [SMALL_STATE(3973)] = 285091, - [SMALL_STATE(3974)] = 285138, - [SMALL_STATE(3975)] = 285183, - [SMALL_STATE(3976)] = 285228, - [SMALL_STATE(3977)] = 285271, - [SMALL_STATE(3978)] = 285314, - [SMALL_STATE(3979)] = 285359, - [SMALL_STATE(3980)] = 285402, - [SMALL_STATE(3981)] = 285447, - [SMALL_STATE(3982)] = 285492, - [SMALL_STATE(3983)] = 285537, - [SMALL_STATE(3984)] = 285580, - [SMALL_STATE(3985)] = 285623, - [SMALL_STATE(3986)] = 285670, - [SMALL_STATE(3987)] = 285715, - [SMALL_STATE(3988)] = 285758, - [SMALL_STATE(3989)] = 285803, - [SMALL_STATE(3990)] = 285846, - [SMALL_STATE(3991)] = 285891, - [SMALL_STATE(3992)] = 285938, - [SMALL_STATE(3993)] = 286017, - [SMALL_STATE(3994)] = 286064, - [SMALL_STATE(3995)] = 286107, - [SMALL_STATE(3996)] = 286152, - [SMALL_STATE(3997)] = 286195, - [SMALL_STATE(3998)] = 286240, - [SMALL_STATE(3999)] = 286283, - [SMALL_STATE(4000)] = 286328, - [SMALL_STATE(4001)] = 286373, - [SMALL_STATE(4002)] = 286418, - [SMALL_STATE(4003)] = 286461, - [SMALL_STATE(4004)] = 286508, - [SMALL_STATE(4005)] = 286553, - [SMALL_STATE(4006)] = 286596, - [SMALL_STATE(4007)] = 286639, - [SMALL_STATE(4008)] = 286682, - [SMALL_STATE(4009)] = 286725, - [SMALL_STATE(4010)] = 286772, - [SMALL_STATE(4011)] = 286815, - [SMALL_STATE(4012)] = 286862, - [SMALL_STATE(4013)] = 286905, - [SMALL_STATE(4014)] = 286948, - [SMALL_STATE(4015)] = 286995, - [SMALL_STATE(4016)] = 287048, - [SMALL_STATE(4017)] = 287095, - [SMALL_STATE(4018)] = 287138, - [SMALL_STATE(4019)] = 287181, - [SMALL_STATE(4020)] = 287228, - [SMALL_STATE(4021)] = 287275, - [SMALL_STATE(4022)] = 287322, - [SMALL_STATE(4023)] = 287365, - [SMALL_STATE(4024)] = 287428, - [SMALL_STATE(4025)] = 287493, - [SMALL_STATE(4026)] = 287550, - [SMALL_STATE(4027)] = 287607, - [SMALL_STATE(4028)] = 287652, - [SMALL_STATE(4029)] = 287697, - [SMALL_STATE(4030)] = 287758, - [SMALL_STATE(4031)] = 287825, - [SMALL_STATE(4032)] = 287868, - [SMALL_STATE(4033)] = 287917, - [SMALL_STATE(4034)] = 287964, - [SMALL_STATE(4035)] = 288007, - [SMALL_STATE(4036)] = 288050, - [SMALL_STATE(4037)] = 288095, - [SMALL_STATE(4038)] = 288138, - [SMALL_STATE(4039)] = 288207, - [SMALL_STATE(4040)] = 288250, - [SMALL_STATE(4041)] = 288295, - [SMALL_STATE(4042)] = 288340, - [SMALL_STATE(4043)] = 288383, - [SMALL_STATE(4044)] = 288460, - [SMALL_STATE(4045)] = 288503, - [SMALL_STATE(4046)] = 288572, - [SMALL_STATE(4047)] = 288615, - [SMALL_STATE(4048)] = 288664, - [SMALL_STATE(4049)] = 288715, - [SMALL_STATE(4050)] = 288776, - [SMALL_STATE(4051)] = 288819, - [SMALL_STATE(4052)] = 288862, - [SMALL_STATE(4053)] = 288919, - [SMALL_STATE(4054)] = 288976, - [SMALL_STATE(4055)] = 289019, - [SMALL_STATE(4056)] = 289068, - [SMALL_STATE(4057)] = 289145, - [SMALL_STATE(4058)] = 289188, - [SMALL_STATE(4059)] = 289231, - [SMALL_STATE(4060)] = 289274, - [SMALL_STATE(4061)] = 289341, - [SMALL_STATE(4062)] = 289392, - [SMALL_STATE(4063)] = 289441, - [SMALL_STATE(4064)] = 289484, - [SMALL_STATE(4065)] = 289549, - [SMALL_STATE(4066)] = 289612, - [SMALL_STATE(4067)] = 289655, - [SMALL_STATE(4068)] = 289698, - [SMALL_STATE(4069)] = 289745, - [SMALL_STATE(4070)] = 289788, - [SMALL_STATE(4071)] = 289831, - [SMALL_STATE(4072)] = 289884, - [SMALL_STATE(4073)] = 289927, - [SMALL_STATE(4074)] = 289970, - [SMALL_STATE(4075)] = 290013, - [SMALL_STATE(4076)] = 290056, - [SMALL_STATE(4077)] = 290103, - [SMALL_STATE(4078)] = 290146, - [SMALL_STATE(4079)] = 290189, - [SMALL_STATE(4080)] = 290242, - [SMALL_STATE(4081)] = 290285, - [SMALL_STATE(4082)] = 290328, - [SMALL_STATE(4083)] = 290375, - [SMALL_STATE(4084)] = 290418, - [SMALL_STATE(4085)] = 290467, - [SMALL_STATE(4086)] = 290514, - [SMALL_STATE(4087)] = 290557, - [SMALL_STATE(4088)] = 290600, - [SMALL_STATE(4089)] = 290679, - [SMALL_STATE(4090)] = 290722, - [SMALL_STATE(4091)] = 290765, - [SMALL_STATE(4092)] = 290808, - [SMALL_STATE(4093)] = 290855, - [SMALL_STATE(4094)] = 290898, - [SMALL_STATE(4095)] = 290941, - [SMALL_STATE(4096)] = 290984, - [SMALL_STATE(4097)] = 291027, - [SMALL_STATE(4098)] = 291070, - [SMALL_STATE(4099)] = 291117, - [SMALL_STATE(4100)] = 291160, - [SMALL_STATE(4101)] = 291203, - [SMALL_STATE(4102)] = 291246, - [SMALL_STATE(4103)] = 291289, - [SMALL_STATE(4104)] = 291332, - [SMALL_STATE(4105)] = 291375, - [SMALL_STATE(4106)] = 291418, - [SMALL_STATE(4107)] = 291461, - [SMALL_STATE(4108)] = 291504, - [SMALL_STATE(4109)] = 291547, - [SMALL_STATE(4110)] = 291604, - [SMALL_STATE(4111)] = 291649, - [SMALL_STATE(4112)] = 291694, - [SMALL_STATE(4113)] = 291739, - [SMALL_STATE(4114)] = 291784, - [SMALL_STATE(4115)] = 291827, - [SMALL_STATE(4116)] = 291870, - [SMALL_STATE(4117)] = 291913, - [SMALL_STATE(4118)] = 291956, - [SMALL_STATE(4119)] = 291999, - [SMALL_STATE(4120)] = 292042, - [SMALL_STATE(4121)] = 292085, - [SMALL_STATE(4122)] = 292130, - [SMALL_STATE(4123)] = 292173, - [SMALL_STATE(4124)] = 292228, - [SMALL_STATE(4125)] = 292271, - [SMALL_STATE(4126)] = 292350, - [SMALL_STATE(4127)] = 292429, - [SMALL_STATE(4128)] = 292471, - [SMALL_STATE(4129)] = 292523, - [SMALL_STATE(4130)] = 292565, - [SMALL_STATE(4131)] = 292607, - [SMALL_STATE(4132)] = 292649, - [SMALL_STATE(4133)] = 292691, - [SMALL_STATE(4134)] = 292733, - [SMALL_STATE(4135)] = 292775, - [SMALL_STATE(4136)] = 292817, - [SMALL_STATE(4137)] = 292859, - [SMALL_STATE(4138)] = 292901, - [SMALL_STATE(4139)] = 292943, - [SMALL_STATE(4140)] = 292987, - [SMALL_STATE(4141)] = 293031, - [SMALL_STATE(4142)] = 293073, - [SMALL_STATE(4143)] = 293119, - [SMALL_STATE(4144)] = 293161, - [SMALL_STATE(4145)] = 293205, - [SMALL_STATE(4146)] = 293247, - [SMALL_STATE(4147)] = 293289, - [SMALL_STATE(4148)] = 293333, - [SMALL_STATE(4149)] = 293375, - [SMALL_STATE(4150)] = 293419, - [SMALL_STATE(4151)] = 293463, - [SMALL_STATE(4152)] = 293505, - [SMALL_STATE(4153)] = 293547, - [SMALL_STATE(4154)] = 293589, - [SMALL_STATE(4155)] = 293631, - [SMALL_STATE(4156)] = 293673, - [SMALL_STATE(4157)] = 293715, - [SMALL_STATE(4158)] = 293757, - [SMALL_STATE(4159)] = 293799, - [SMALL_STATE(4160)] = 293841, - [SMALL_STATE(4161)] = 293883, - [SMALL_STATE(4162)] = 293925, - [SMALL_STATE(4163)] = 293967, - [SMALL_STATE(4164)] = 294009, - [SMALL_STATE(4165)] = 294055, - [SMALL_STATE(4166)] = 294099, - [SMALL_STATE(4167)] = 294141, - [SMALL_STATE(4168)] = 294183, - [SMALL_STATE(4169)] = 294225, - [SMALL_STATE(4170)] = 294267, - [SMALL_STATE(4171)] = 294309, - [SMALL_STATE(4172)] = 294351, - [SMALL_STATE(4173)] = 294393, - [SMALL_STATE(4174)] = 294437, - [SMALL_STATE(4175)] = 294479, - [SMALL_STATE(4176)] = 294521, - [SMALL_STATE(4177)] = 294563, - [SMALL_STATE(4178)] = 294607, - [SMALL_STATE(4179)] = 294649, - [SMALL_STATE(4180)] = 294695, - [SMALL_STATE(4181)] = 294737, - [SMALL_STATE(4182)] = 294779, - [SMALL_STATE(4183)] = 294821, - [SMALL_STATE(4184)] = 294863, - [SMALL_STATE(4185)] = 294905, - [SMALL_STATE(4186)] = 294947, - [SMALL_STATE(4187)] = 294989, - [SMALL_STATE(4188)] = 295035, - [SMALL_STATE(4189)] = 295079, - [SMALL_STATE(4190)] = 295121, - [SMALL_STATE(4191)] = 295165, - [SMALL_STATE(4192)] = 295207, - [SMALL_STATE(4193)] = 295249, - [SMALL_STATE(4194)] = 295291, - [SMALL_STATE(4195)] = 295333, - [SMALL_STATE(4196)] = 295375, - [SMALL_STATE(4197)] = 295419, - [SMALL_STATE(4198)] = 295475, - [SMALL_STATE(4199)] = 295517, - [SMALL_STATE(4200)] = 295559, - [SMALL_STATE(4201)] = 295601, - [SMALL_STATE(4202)] = 295653, - [SMALL_STATE(4203)] = 295705, - [SMALL_STATE(4204)] = 295747, - [SMALL_STATE(4205)] = 295795, - [SMALL_STATE(4206)] = 295843, - [SMALL_STATE(4207)] = 295885, - [SMALL_STATE(4208)] = 295927, - [SMALL_STATE(4209)] = 295973, - [SMALL_STATE(4210)] = 296021, - [SMALL_STATE(4211)] = 296063, - [SMALL_STATE(4212)] = 296105, - [SMALL_STATE(4213)] = 296147, - [SMALL_STATE(4214)] = 296193, - [SMALL_STATE(4215)] = 296237, - [SMALL_STATE(4216)] = 296279, - [SMALL_STATE(4217)] = 296321, - [SMALL_STATE(4218)] = 296363, - [SMALL_STATE(4219)] = 296405, - [SMALL_STATE(4220)] = 296451, - [SMALL_STATE(4221)] = 296493, - [SMALL_STATE(4222)] = 296535, - [SMALL_STATE(4223)] = 296589, - [SMALL_STATE(4224)] = 296631, - [SMALL_STATE(4225)] = 296675, - [SMALL_STATE(4226)] = 296717, - [SMALL_STATE(4227)] = 296761, - [SMALL_STATE(4228)] = 296807, - [SMALL_STATE(4229)] = 296853, - [SMALL_STATE(4230)] = 296899, - [SMALL_STATE(4231)] = 296943, - [SMALL_STATE(4232)] = 296985, - [SMALL_STATE(4233)] = 297027, - [SMALL_STATE(4234)] = 297069, - [SMALL_STATE(4235)] = 297111, - [SMALL_STATE(4236)] = 297153, - [SMALL_STATE(4237)] = 297195, - [SMALL_STATE(4238)] = 297237, - [SMALL_STATE(4239)] = 297283, - [SMALL_STATE(4240)] = 297325, - [SMALL_STATE(4241)] = 297367, - [SMALL_STATE(4242)] = 297411, - [SMALL_STATE(4243)] = 297455, - [SMALL_STATE(4244)] = 297496, - [SMALL_STATE(4245)] = 297559, - [SMALL_STATE(4246)] = 297614, - [SMALL_STATE(4247)] = 297669, - [SMALL_STATE(4248)] = 297716, - [SMALL_STATE(4249)] = 297757, - [SMALL_STATE(4250)] = 297802, - [SMALL_STATE(4251)] = 297845, - [SMALL_STATE(4252)] = 297886, - [SMALL_STATE(4253)] = 297927, - [SMALL_STATE(4254)] = 297968, - [SMALL_STATE(4255)] = 298009, - [SMALL_STATE(4256)] = 298056, - [SMALL_STATE(4257)] = 298097, - [SMALL_STATE(4258)] = 298148, - [SMALL_STATE(4259)] = 298195, - [SMALL_STATE(4260)] = 298240, - [SMALL_STATE(4261)] = 298281, - [SMALL_STATE(4262)] = 298322, - [SMALL_STATE(4263)] = 298367, - [SMALL_STATE(4264)] = 298408, - [SMALL_STATE(4265)] = 298453, - [SMALL_STATE(4266)] = 298508, - [SMALL_STATE(4267)] = 298549, - [SMALL_STATE(4268)] = 298594, - [SMALL_STATE(4269)] = 298635, - [SMALL_STATE(4270)] = 298682, - [SMALL_STATE(4271)] = 298723, - [SMALL_STATE(4272)] = 298768, - [SMALL_STATE(4273)] = 298809, - [SMALL_STATE(4274)] = 298850, - [SMALL_STATE(4275)] = 298895, - [SMALL_STATE(4276)] = 298940, - [SMALL_STATE(4277)] = 298981, - [SMALL_STATE(4278)] = 299026, - [SMALL_STATE(4279)] = 299067, - [SMALL_STATE(4280)] = 299108, - [SMALL_STATE(4281)] = 299165, - [SMALL_STATE(4282)] = 299218, - [SMALL_STATE(4283)] = 299259, - [SMALL_STATE(4284)] = 299334, - [SMALL_STATE(4285)] = 299375, - [SMALL_STATE(4286)] = 299416, - [SMALL_STATE(4287)] = 299457, - [SMALL_STATE(4288)] = 299502, - [SMALL_STATE(4289)] = 299547, - [SMALL_STATE(4290)] = 299592, - [SMALL_STATE(4291)] = 299633, - [SMALL_STATE(4292)] = 299688, - [SMALL_STATE(4293)] = 299733, - [SMALL_STATE(4294)] = 299782, - [SMALL_STATE(4295)] = 299827, - [SMALL_STATE(4296)] = 299868, - [SMALL_STATE(4297)] = 299909, - [SMALL_STATE(4298)] = 299950, - [SMALL_STATE(4299)] = 299991, - [SMALL_STATE(4300)] = 300036, - [SMALL_STATE(4301)] = 300077, - [SMALL_STATE(4302)] = 300118, - [SMALL_STATE(4303)] = 300159, - [SMALL_STATE(4304)] = 300200, - [SMALL_STATE(4305)] = 300241, - [SMALL_STATE(4306)] = 300282, - [SMALL_STATE(4307)] = 300323, - [SMALL_STATE(4308)] = 300364, - [SMALL_STATE(4309)] = 300405, - [SMALL_STATE(4310)] = 300446, - [SMALL_STATE(4311)] = 300487, - [SMALL_STATE(4312)] = 300562, - [SMALL_STATE(4313)] = 300603, - [SMALL_STATE(4314)] = 300658, - [SMALL_STATE(4315)] = 300713, - [SMALL_STATE(4316)] = 300772, - [SMALL_STATE(4317)] = 300839, - [SMALL_STATE(4318)] = 300880, - [SMALL_STATE(4319)] = 300927, - [SMALL_STATE(4320)] = 300968, - [SMALL_STATE(4321)] = 301025, - [SMALL_STATE(4322)] = 301090, - [SMALL_STATE(4323)] = 301131, - [SMALL_STATE(4324)] = 301172, - [SMALL_STATE(4325)] = 301219, - [SMALL_STATE(4326)] = 301264, - [SMALL_STATE(4327)] = 301305, - [SMALL_STATE(4328)] = 301352, - [SMALL_STATE(4329)] = 301393, - [SMALL_STATE(4330)] = 301454, - [SMALL_STATE(4331)] = 301501, - [SMALL_STATE(4332)] = 301542, - [SMALL_STATE(4333)] = 301583, - [SMALL_STATE(4334)] = 301628, - [SMALL_STATE(4335)] = 301669, - [SMALL_STATE(4336)] = 301710, - [SMALL_STATE(4337)] = 301751, - [SMALL_STATE(4338)] = 301792, - [SMALL_STATE(4339)] = 301839, - [SMALL_STATE(4340)] = 301884, - [SMALL_STATE(4341)] = 301929, - [SMALL_STATE(4342)] = 301976, - [SMALL_STATE(4343)] = 302023, - [SMALL_STATE(4344)] = 302064, - [SMALL_STATE(4345)] = 302109, - [SMALL_STATE(4346)] = 302156, - [SMALL_STATE(4347)] = 302197, - [SMALL_STATE(4348)] = 302238, - [SMALL_STATE(4349)] = 302283, - [SMALL_STATE(4350)] = 302328, - [SMALL_STATE(4351)] = 302369, - [SMALL_STATE(4352)] = 302414, - [SMALL_STATE(4353)] = 302455, - [SMALL_STATE(4354)] = 302500, - [SMALL_STATE(4355)] = 302575, - [SMALL_STATE(4356)] = 302620, - [SMALL_STATE(4357)] = 302695, - [SMALL_STATE(4358)] = 302736, - [SMALL_STATE(4359)] = 302783, - [SMALL_STATE(4360)] = 302828, - [SMALL_STATE(4361)] = 302873, - [SMALL_STATE(4362)] = 302914, - [SMALL_STATE(4363)] = 302955, - [SMALL_STATE(4364)] = 303000, - [SMALL_STATE(4365)] = 303047, - [SMALL_STATE(4366)] = 303088, - [SMALL_STATE(4367)] = 303133, - [SMALL_STATE(4368)] = 303174, - [SMALL_STATE(4369)] = 303215, - [SMALL_STATE(4370)] = 303260, - [SMALL_STATE(4371)] = 303335, - [SMALL_STATE(4372)] = 303376, - [SMALL_STATE(4373)] = 303431, - [SMALL_STATE(4374)] = 303472, - [SMALL_STATE(4375)] = 303513, - [SMALL_STATE(4376)] = 303554, - [SMALL_STATE(4377)] = 303595, - [SMALL_STATE(4378)] = 303636, - [SMALL_STATE(4379)] = 303681, - [SMALL_STATE(4380)] = 303722, - [SMALL_STATE(4381)] = 303763, - [SMALL_STATE(4382)] = 303804, - [SMALL_STATE(4383)] = 303845, - [SMALL_STATE(4384)] = 303886, - [SMALL_STATE(4385)] = 303927, - [SMALL_STATE(4386)] = 303968, - [SMALL_STATE(4387)] = 304013, - [SMALL_STATE(4388)] = 304054, - [SMALL_STATE(4389)] = 304101, - [SMALL_STATE(4390)] = 304142, - [SMALL_STATE(4391)] = 304183, - [SMALL_STATE(4392)] = 304228, - [SMALL_STATE(4393)] = 304269, - [SMALL_STATE(4394)] = 304310, - [SMALL_STATE(4395)] = 304351, - [SMALL_STATE(4396)] = 304392, - [SMALL_STATE(4397)] = 304433, - [SMALL_STATE(4398)] = 304478, - [SMALL_STATE(4399)] = 304523, - [SMALL_STATE(4400)] = 304572, - [SMALL_STATE(4401)] = 304617, - [SMALL_STATE(4402)] = 304658, - [SMALL_STATE(4403)] = 304699, - [SMALL_STATE(4404)] = 304740, - [SMALL_STATE(4405)] = 304785, - [SMALL_STATE(4406)] = 304826, - [SMALL_STATE(4407)] = 304867, - [SMALL_STATE(4408)] = 304909, - [SMALL_STATE(4409)] = 304951, - [SMALL_STATE(4410)] = 304993, - [SMALL_STATE(4411)] = 305035, - [SMALL_STATE(4412)] = 305077, - [SMALL_STATE(4413)] = 305121, - [SMALL_STATE(4414)] = 305171, - [SMALL_STATE(4415)] = 305213, - [SMALL_STATE(4416)] = 305253, - [SMALL_STATE(4417)] = 305296, - [SMALL_STATE(4418)] = 305333, - [SMALL_STATE(4419)] = 305389, - [SMALL_STATE(4420)] = 305445, - [SMALL_STATE(4421)] = 305501, - [SMALL_STATE(4422)] = 305557, - [SMALL_STATE(4423)] = 305613, - [SMALL_STATE(4424)] = 305669, - [SMALL_STATE(4425)] = 305725, - [SMALL_STATE(4426)] = 305781, - [SMALL_STATE(4427)] = 305837, - [SMALL_STATE(4428)] = 305893, - [SMALL_STATE(4429)] = 305949, - [SMALL_STATE(4430)] = 306005, - [SMALL_STATE(4431)] = 306061, - [SMALL_STATE(4432)] = 306117, - [SMALL_STATE(4433)] = 306173, - [SMALL_STATE(4434)] = 306229, - [SMALL_STATE(4435)] = 306285, - [SMALL_STATE(4436)] = 306341, - [SMALL_STATE(4437)] = 306375, - [SMALL_STATE(4438)] = 306431, - [SMALL_STATE(4439)] = 306487, - [SMALL_STATE(4440)] = 306543, - [SMALL_STATE(4441)] = 306599, - [SMALL_STATE(4442)] = 306655, - [SMALL_STATE(4443)] = 306711, - [SMALL_STATE(4444)] = 306767, - [SMALL_STATE(4445)] = 306823, - [SMALL_STATE(4446)] = 306879, - [SMALL_STATE(4447)] = 306935, - [SMALL_STATE(4448)] = 306991, - [SMALL_STATE(4449)] = 307047, - [SMALL_STATE(4450)] = 307103, - [SMALL_STATE(4451)] = 307159, - [SMALL_STATE(4452)] = 307215, - [SMALL_STATE(4453)] = 307271, - [SMALL_STATE(4454)] = 307327, - [SMALL_STATE(4455)] = 307383, - [SMALL_STATE(4456)] = 307439, - [SMALL_STATE(4457)] = 307495, - [SMALL_STATE(4458)] = 307551, - [SMALL_STATE(4459)] = 307607, - [SMALL_STATE(4460)] = 307663, - [SMALL_STATE(4461)] = 307719, - [SMALL_STATE(4462)] = 307775, - [SMALL_STATE(4463)] = 307831, - [SMALL_STATE(4464)] = 307887, - [SMALL_STATE(4465)] = 307943, - [SMALL_STATE(4466)] = 307999, - [SMALL_STATE(4467)] = 308055, - [SMALL_STATE(4468)] = 308111, - [SMALL_STATE(4469)] = 308167, - [SMALL_STATE(4470)] = 308223, - [SMALL_STATE(4471)] = 308279, - [SMALL_STATE(4472)] = 308335, - [SMALL_STATE(4473)] = 308391, - [SMALL_STATE(4474)] = 308447, - [SMALL_STATE(4475)] = 308503, - [SMALL_STATE(4476)] = 308559, - [SMALL_STATE(4477)] = 308615, - [SMALL_STATE(4478)] = 308671, - [SMALL_STATE(4479)] = 308727, - [SMALL_STATE(4480)] = 308783, - [SMALL_STATE(4481)] = 308839, - [SMALL_STATE(4482)] = 308895, - [SMALL_STATE(4483)] = 308951, - [SMALL_STATE(4484)] = 309007, - [SMALL_STATE(4485)] = 309063, - [SMALL_STATE(4486)] = 309119, - [SMALL_STATE(4487)] = 309175, - [SMALL_STATE(4488)] = 309231, - [SMALL_STATE(4489)] = 309287, - [SMALL_STATE(4490)] = 309343, - [SMALL_STATE(4491)] = 309399, - [SMALL_STATE(4492)] = 309455, - [SMALL_STATE(4493)] = 309511, - [SMALL_STATE(4494)] = 309567, - [SMALL_STATE(4495)] = 309623, - [SMALL_STATE(4496)] = 309679, - [SMALL_STATE(4497)] = 309735, - [SMALL_STATE(4498)] = 309791, - [SMALL_STATE(4499)] = 309847, - [SMALL_STATE(4500)] = 309903, - [SMALL_STATE(4501)] = 309959, - [SMALL_STATE(4502)] = 310015, - [SMALL_STATE(4503)] = 310071, - [SMALL_STATE(4504)] = 310127, - [SMALL_STATE(4505)] = 310183, - [SMALL_STATE(4506)] = 310239, - [SMALL_STATE(4507)] = 310295, - [SMALL_STATE(4508)] = 310351, - [SMALL_STATE(4509)] = 310407, - [SMALL_STATE(4510)] = 310463, - [SMALL_STATE(4511)] = 310519, - [SMALL_STATE(4512)] = 310575, - [SMALL_STATE(4513)] = 310628, - [SMALL_STATE(4514)] = 310683, - [SMALL_STATE(4515)] = 310736, - [SMALL_STATE(4516)] = 310789, - [SMALL_STATE(4517)] = 310844, - [SMALL_STATE(4518)] = 310897, - [SMALL_STATE(4519)] = 310950, - [SMALL_STATE(4520)] = 311003, - [SMALL_STATE(4521)] = 311056, - [SMALL_STATE(4522)] = 311109, - [SMALL_STATE(4523)] = 311162, - [SMALL_STATE(4524)] = 311215, - [SMALL_STATE(4525)] = 311268, - [SMALL_STATE(4526)] = 311321, - [SMALL_STATE(4527)] = 311374, - [SMALL_STATE(4528)] = 311427, - [SMALL_STATE(4529)] = 311480, - [SMALL_STATE(4530)] = 311535, - [SMALL_STATE(4531)] = 311588, - [SMALL_STATE(4532)] = 311641, - [SMALL_STATE(4533)] = 311696, - [SMALL_STATE(4534)] = 311749, - [SMALL_STATE(4535)] = 311802, - [SMALL_STATE(4536)] = 311855, - [SMALL_STATE(4537)] = 311908, - [SMALL_STATE(4538)] = 311961, - [SMALL_STATE(4539)] = 312014, - [SMALL_STATE(4540)] = 312067, - [SMALL_STATE(4541)] = 312120, - [SMALL_STATE(4542)] = 312173, - [SMALL_STATE(4543)] = 312226, - [SMALL_STATE(4544)] = 312281, - [SMALL_STATE(4545)] = 312334, - [SMALL_STATE(4546)] = 312387, - [SMALL_STATE(4547)] = 312440, - [SMALL_STATE(4548)] = 312493, - [SMALL_STATE(4549)] = 312538, - [SMALL_STATE(4550)] = 312591, - [SMALL_STATE(4551)] = 312644, - [SMALL_STATE(4552)] = 312697, - [SMALL_STATE(4553)] = 312750, - [SMALL_STATE(4554)] = 312803, - [SMALL_STATE(4555)] = 312856, - [SMALL_STATE(4556)] = 312909, - [SMALL_STATE(4557)] = 312962, - [SMALL_STATE(4558)] = 313015, - [SMALL_STATE(4559)] = 313068, - [SMALL_STATE(4560)] = 313121, - [SMALL_STATE(4561)] = 313174, - [SMALL_STATE(4562)] = 313227, - [SMALL_STATE(4563)] = 313280, - [SMALL_STATE(4564)] = 313333, - [SMALL_STATE(4565)] = 313386, - [SMALL_STATE(4566)] = 313439, - [SMALL_STATE(4567)] = 313494, - [SMALL_STATE(4568)] = 313547, - [SMALL_STATE(4569)] = 313600, - [SMALL_STATE(4570)] = 313653, - [SMALL_STATE(4571)] = 313706, - [SMALL_STATE(4572)] = 313759, - [SMALL_STATE(4573)] = 313812, - [SMALL_STATE(4574)] = 313865, - [SMALL_STATE(4575)] = 313918, - [SMALL_STATE(4576)] = 313971, - [SMALL_STATE(4577)] = 314024, - [SMALL_STATE(4578)] = 314077, - [SMALL_STATE(4579)] = 314132, - [SMALL_STATE(4580)] = 314187, - [SMALL_STATE(4581)] = 314240, - [SMALL_STATE(4582)] = 314293, - [SMALL_STATE(4583)] = 314346, - [SMALL_STATE(4584)] = 314401, - [SMALL_STATE(4585)] = 314454, - [SMALL_STATE(4586)] = 314507, - [SMALL_STATE(4587)] = 314560, - [SMALL_STATE(4588)] = 314613, - [SMALL_STATE(4589)] = 314666, - [SMALL_STATE(4590)] = 314719, - [SMALL_STATE(4591)] = 314772, - [SMALL_STATE(4592)] = 314825, - [SMALL_STATE(4593)] = 314878, - [SMALL_STATE(4594)] = 314933, - [SMALL_STATE(4595)] = 314986, - [SMALL_STATE(4596)] = 315039, - [SMALL_STATE(4597)] = 315092, - [SMALL_STATE(4598)] = 315145, - [SMALL_STATE(4599)] = 315198, - [SMALL_STATE(4600)] = 315251, - [SMALL_STATE(4601)] = 315304, - [SMALL_STATE(4602)] = 315359, - [SMALL_STATE(4603)] = 315414, - [SMALL_STATE(4604)] = 315467, - [SMALL_STATE(4605)] = 315520, - [SMALL_STATE(4606)] = 315573, - [SMALL_STATE(4607)] = 315628, - [SMALL_STATE(4608)] = 315681, - [SMALL_STATE(4609)] = 315734, - [SMALL_STATE(4610)] = 315787, - [SMALL_STATE(4611)] = 315840, - [SMALL_STATE(4612)] = 315893, - [SMALL_STATE(4613)] = 315946, - [SMALL_STATE(4614)] = 315999, - [SMALL_STATE(4615)] = 316052, - [SMALL_STATE(4616)] = 316105, - [SMALL_STATE(4617)] = 316158, - [SMALL_STATE(4618)] = 316211, - [SMALL_STATE(4619)] = 316264, - [SMALL_STATE(4620)] = 316317, - [SMALL_STATE(4621)] = 316370, - [SMALL_STATE(4622)] = 316425, - [SMALL_STATE(4623)] = 316478, - [SMALL_STATE(4624)] = 316531, - [SMALL_STATE(4625)] = 316586, - [SMALL_STATE(4626)] = 316639, - [SMALL_STATE(4627)] = 316692, - [SMALL_STATE(4628)] = 316745, - [SMALL_STATE(4629)] = 316798, - [SMALL_STATE(4630)] = 316851, - [SMALL_STATE(4631)] = 316904, - [SMALL_STATE(4632)] = 316957, - [SMALL_STATE(4633)] = 317010, - [SMALL_STATE(4634)] = 317063, - [SMALL_STATE(4635)] = 317116, - [SMALL_STATE(4636)] = 317171, - [SMALL_STATE(4637)] = 317226, - [SMALL_STATE(4638)] = 317281, - [SMALL_STATE(4639)] = 317334, - [SMALL_STATE(4640)] = 317389, - [SMALL_STATE(4641)] = 317442, - [SMALL_STATE(4642)] = 317495, - [SMALL_STATE(4643)] = 317548, - [SMALL_STATE(4644)] = 317601, - [SMALL_STATE(4645)] = 317654, - [SMALL_STATE(4646)] = 317709, - [SMALL_STATE(4647)] = 317762, - [SMALL_STATE(4648)] = 317817, - [SMALL_STATE(4649)] = 317870, - [SMALL_STATE(4650)] = 317923, - [SMALL_STATE(4651)] = 317976, - [SMALL_STATE(4652)] = 318029, - [SMALL_STATE(4653)] = 318082, - [SMALL_STATE(4654)] = 318135, - [SMALL_STATE(4655)] = 318188, - [SMALL_STATE(4656)] = 318241, - [SMALL_STATE(4657)] = 318296, - [SMALL_STATE(4658)] = 318351, - [SMALL_STATE(4659)] = 318404, - [SMALL_STATE(4660)] = 318457, - [SMALL_STATE(4661)] = 318510, - [SMALL_STATE(4662)] = 318563, - [SMALL_STATE(4663)] = 318616, - [SMALL_STATE(4664)] = 318669, - [SMALL_STATE(4665)] = 318722, - [SMALL_STATE(4666)] = 318775, - [SMALL_STATE(4667)] = 318828, - [SMALL_STATE(4668)] = 318881, - [SMALL_STATE(4669)] = 318936, - [SMALL_STATE(4670)] = 318989, - [SMALL_STATE(4671)] = 319042, - [SMALL_STATE(4672)] = 319097, - [SMALL_STATE(4673)] = 319150, - [SMALL_STATE(4674)] = 319203, - [SMALL_STATE(4675)] = 319256, - [SMALL_STATE(4676)] = 319309, - [SMALL_STATE(4677)] = 319362, - [SMALL_STATE(4678)] = 319415, - [SMALL_STATE(4679)] = 319470, - [SMALL_STATE(4680)] = 319512, - [SMALL_STATE(4681)] = 319554, - [SMALL_STATE(4682)] = 319596, - [SMALL_STATE(4683)] = 319638, - [SMALL_STATE(4684)] = 319679, - [SMALL_STATE(4685)] = 319720, - [SMALL_STATE(4686)] = 319761, - [SMALL_STATE(4687)] = 319802, - [SMALL_STATE(4688)] = 319840, - [SMALL_STATE(4689)] = 319878, - [SMALL_STATE(4690)] = 319916, - [SMALL_STATE(4691)] = 319954, - [SMALL_STATE(4692)] = 319991, - [SMALL_STATE(4693)] = 320028, - [SMALL_STATE(4694)] = 320065, - [SMALL_STATE(4695)] = 320102, - [SMALL_STATE(4696)] = 320139, - [SMALL_STATE(4697)] = 320176, - [SMALL_STATE(4698)] = 320213, - [SMALL_STATE(4699)] = 320250, - [SMALL_STATE(4700)] = 320286, - [SMALL_STATE(4701)] = 320338, - [SMALL_STATE(4702)] = 320374, - [SMALL_STATE(4703)] = 320410, - [SMALL_STATE(4704)] = 320446, - [SMALL_STATE(4705)] = 320482, - [SMALL_STATE(4706)] = 320518, - [SMALL_STATE(4707)] = 320554, - [SMALL_STATE(4708)] = 320606, - [SMALL_STATE(4709)] = 320642, - [SMALL_STATE(4710)] = 320694, - [SMALL_STATE(4711)] = 320743, - [SMALL_STATE(4712)] = 320794, - [SMALL_STATE(4713)] = 320845, - [SMALL_STATE(4714)] = 320896, - [SMALL_STATE(4715)] = 320947, - [SMALL_STATE(4716)] = 320998, - [SMALL_STATE(4717)] = 321049, - [SMALL_STATE(4718)] = 321100, - [SMALL_STATE(4719)] = 321151, - [SMALL_STATE(4720)] = 321202, - [SMALL_STATE(4721)] = 321253, - [SMALL_STATE(4722)] = 321304, - [SMALL_STATE(4723)] = 321355, - [SMALL_STATE(4724)] = 321406, - [SMALL_STATE(4725)] = 321457, - [SMALL_STATE(4726)] = 321506, - [SMALL_STATE(4727)] = 321557, - [SMALL_STATE(4728)] = 321608, - [SMALL_STATE(4729)] = 321659, - [SMALL_STATE(4730)] = 321707, - [SMALL_STATE(4731)] = 321741, - [SMALL_STATE(4732)] = 321775, - [SMALL_STATE(4733)] = 321809, - [SMALL_STATE(4734)] = 321843, - [SMALL_STATE(4735)] = 321889, - [SMALL_STATE(4736)] = 321937, - [SMALL_STATE(4737)] = 321985, - [SMALL_STATE(4738)] = 322033, - [SMALL_STATE(4739)] = 322078, - [SMALL_STATE(4740)] = 322123, - [SMALL_STATE(4741)] = 322152, - [SMALL_STATE(4742)] = 322198, - [SMALL_STATE(4743)] = 322226, - [SMALL_STATE(4744)] = 322254, - [SMALL_STATE(4745)] = 322300, - [SMALL_STATE(4746)] = 322346, - [SMALL_STATE(4747)] = 322374, - [SMALL_STATE(4748)] = 322420, - [SMALL_STATE(4749)] = 322448, - [SMALL_STATE(4750)] = 322494, - [SMALL_STATE(4751)] = 322540, - [SMALL_STATE(4752)] = 322578, - [SMALL_STATE(4753)] = 322624, - [SMALL_STATE(4754)] = 322652, - [SMALL_STATE(4755)] = 322686, - [SMALL_STATE(4756)] = 322732, - [SMALL_STATE(4757)] = 322778, - [SMALL_STATE(4758)] = 322806, - [SMALL_STATE(4759)] = 322852, - [SMALL_STATE(4760)] = 322890, - [SMALL_STATE(4761)] = 322936, - [SMALL_STATE(4762)] = 322964, - [SMALL_STATE(4763)] = 323010, - [SMALL_STATE(4764)] = 323038, - [SMALL_STATE(4765)] = 323084, - [SMALL_STATE(4766)] = 323130, - [SMALL_STATE(4767)] = 323176, - [SMALL_STATE(4768)] = 323222, - [SMALL_STATE(4769)] = 323268, - [SMALL_STATE(4770)] = 323296, - [SMALL_STATE(4771)] = 323323, - [SMALL_STATE(4772)] = 323350, - [SMALL_STATE(4773)] = 323377, - [SMALL_STATE(4774)] = 323404, - [SMALL_STATE(4775)] = 323431, - [SMALL_STATE(4776)] = 323458, - [SMALL_STATE(4777)] = 323485, - [SMALL_STATE(4778)] = 323512, - [SMALL_STATE(4779)] = 323539, - [SMALL_STATE(4780)] = 323571, - [SMALL_STATE(4781)] = 323607, - [SMALL_STATE(4782)] = 323631, - [SMALL_STATE(4783)] = 323671, - [SMALL_STATE(4784)] = 323711, - [SMALL_STATE(4785)] = 323743, - [SMALL_STATE(4786)] = 323769, - [SMALL_STATE(4787)] = 323795, - [SMALL_STATE(4788)] = 323819, - [SMALL_STATE(4789)] = 323843, - [SMALL_STATE(4790)] = 323883, - [SMALL_STATE(4791)] = 323923, - [SMALL_STATE(4792)] = 323963, - [SMALL_STATE(4793)] = 323999, - [SMALL_STATE(4794)] = 324035, - [SMALL_STATE(4795)] = 324075, - [SMALL_STATE(4796)] = 324111, - [SMALL_STATE(4797)] = 324151, - [SMALL_STATE(4798)] = 324187, - [SMALL_STATE(4799)] = 324213, - [SMALL_STATE(4800)] = 324245, - [SMALL_STATE(4801)] = 324281, - [SMALL_STATE(4802)] = 324317, - [SMALL_STATE(4803)] = 324353, - [SMALL_STATE(4804)] = 324389, - [SMALL_STATE(4805)] = 324413, - [SMALL_STATE(4806)] = 324449, - [SMALL_STATE(4807)] = 324485, - [SMALL_STATE(4808)] = 324511, - [SMALL_STATE(4809)] = 324547, - [SMALL_STATE(4810)] = 324571, - [SMALL_STATE(4811)] = 324611, - [SMALL_STATE(4812)] = 324647, - [SMALL_STATE(4813)] = 324671, - [SMALL_STATE(4814)] = 324711, - [SMALL_STATE(4815)] = 324747, - [SMALL_STATE(4816)] = 324783, - [SMALL_STATE(4817)] = 324823, - [SMALL_STATE(4818)] = 324855, - [SMALL_STATE(4819)] = 324895, - [SMALL_STATE(4820)] = 324935, - [SMALL_STATE(4821)] = 324971, - [SMALL_STATE(4822)] = 325011, - [SMALL_STATE(4823)] = 325047, - [SMALL_STATE(4824)] = 325087, - [SMALL_STATE(4825)] = 325127, - [SMALL_STATE(4826)] = 325167, - [SMALL_STATE(4827)] = 325207, - [SMALL_STATE(4828)] = 325238, - [SMALL_STATE(4829)] = 325261, - [SMALL_STATE(4830)] = 325288, - [SMALL_STATE(4831)] = 325325, - [SMALL_STATE(4832)] = 325356, - [SMALL_STATE(4833)] = 325393, - [SMALL_STATE(4834)] = 325424, - [SMALL_STATE(4835)] = 325461, - [SMALL_STATE(4836)] = 325492, - [SMALL_STATE(4837)] = 325525, - [SMALL_STATE(4838)] = 325556, - [SMALL_STATE(4839)] = 325587, - [SMALL_STATE(4840)] = 325618, - [SMALL_STATE(4841)] = 325645, - [SMALL_STATE(4842)] = 325682, - [SMALL_STATE(4843)] = 325715, - [SMALL_STATE(4844)] = 325752, - [SMALL_STATE(4845)] = 325785, - [SMALL_STATE(4846)] = 325816, - [SMALL_STATE(4847)] = 325847, - [SMALL_STATE(4848)] = 325872, - [SMALL_STATE(4849)] = 325907, - [SMALL_STATE(4850)] = 325938, - [SMALL_STATE(4851)] = 325969, - [SMALL_STATE(4852)] = 325994, - [SMALL_STATE(4853)] = 326031, - [SMALL_STATE(4854)] = 326068, - [SMALL_STATE(4855)] = 326099, - [SMALL_STATE(4856)] = 326132, - [SMALL_STATE(4857)] = 326169, - [SMALL_STATE(4858)] = 326204, - [SMALL_STATE(4859)] = 326235, - [SMALL_STATE(4860)] = 326268, - [SMALL_STATE(4861)] = 326305, - [SMALL_STATE(4862)] = 326342, - [SMALL_STATE(4863)] = 326373, - [SMALL_STATE(4864)] = 326396, - [SMALL_STATE(4865)] = 326419, - [SMALL_STATE(4866)] = 326450, - [SMALL_STATE(4867)] = 326481, - [SMALL_STATE(4868)] = 326516, - [SMALL_STATE(4869)] = 326547, - [SMALL_STATE(4870)] = 326578, - [SMALL_STATE(4871)] = 326609, - [SMALL_STATE(4872)] = 326634, - [SMALL_STATE(4873)] = 326657, - [SMALL_STATE(4874)] = 326680, - [SMALL_STATE(4875)] = 326705, - [SMALL_STATE(4876)] = 326728, - [SMALL_STATE(4877)] = 326759, - [SMALL_STATE(4878)] = 326790, - [SMALL_STATE(4879)] = 326827, - [SMALL_STATE(4880)] = 326864, - [SMALL_STATE(4881)] = 326895, - [SMALL_STATE(4882)] = 326926, - [SMALL_STATE(4883)] = 326951, - [SMALL_STATE(4884)] = 326982, - [SMALL_STATE(4885)] = 327013, - [SMALL_STATE(4886)] = 327038, - [SMALL_STATE(4887)] = 327075, - [SMALL_STATE(4888)] = 327112, - [SMALL_STATE(4889)] = 327149, - [SMALL_STATE(4890)] = 327182, - [SMALL_STATE(4891)] = 327213, - [SMALL_STATE(4892)] = 327238, - [SMALL_STATE(4893)] = 327273, - [SMALL_STATE(4894)] = 327304, - [SMALL_STATE(4895)] = 327335, - [SMALL_STATE(4896)] = 327366, - [SMALL_STATE(4897)] = 327397, - [SMALL_STATE(4898)] = 327432, - [SMALL_STATE(4899)] = 327469, - [SMALL_STATE(4900)] = 327500, - [SMALL_STATE(4901)] = 327527, - [SMALL_STATE(4902)] = 327558, - [SMALL_STATE(4903)] = 327583, - [SMALL_STATE(4904)] = 327614, - [SMALL_STATE(4905)] = 327649, - [SMALL_STATE(4906)] = 327686, - [SMALL_STATE(4907)] = 327711, - [SMALL_STATE(4908)] = 327746, - [SMALL_STATE(4909)] = 327777, - [SMALL_STATE(4910)] = 327808, - [SMALL_STATE(4911)] = 327840, - [SMALL_STATE(4912)] = 327868, - [SMALL_STATE(4913)] = 327902, - [SMALL_STATE(4914)] = 327930, - [SMALL_STATE(4915)] = 327952, - [SMALL_STATE(4916)] = 327980, - [SMALL_STATE(4917)] = 328012, - [SMALL_STATE(4918)] = 328034, - [SMALL_STATE(4919)] = 328056, - [SMALL_STATE(4920)] = 328086, - [SMALL_STATE(4921)] = 328114, - [SMALL_STATE(4922)] = 328142, - [SMALL_STATE(4923)] = 328174, - [SMALL_STATE(4924)] = 328202, - [SMALL_STATE(4925)] = 328230, - [SMALL_STATE(4926)] = 328258, - [SMALL_STATE(4927)] = 328280, - [SMALL_STATE(4928)] = 328308, - [SMALL_STATE(4929)] = 328336, - [SMALL_STATE(4930)] = 328368, - [SMALL_STATE(4931)] = 328396, - [SMALL_STATE(4932)] = 328424, - [SMALL_STATE(4933)] = 328452, - [SMALL_STATE(4934)] = 328484, - [SMALL_STATE(4935)] = 328512, - [SMALL_STATE(4936)] = 328536, - [SMALL_STATE(4937)] = 328564, - [SMALL_STATE(4938)] = 328594, - [SMALL_STATE(4939)] = 328622, - [SMALL_STATE(4940)] = 328650, - [SMALL_STATE(4941)] = 328678, - [SMALL_STATE(4942)] = 328700, - [SMALL_STATE(4943)] = 328722, - [SMALL_STATE(4944)] = 328750, - [SMALL_STATE(4945)] = 328778, - [SMALL_STATE(4946)] = 328806, - [SMALL_STATE(4947)] = 328834, - [SMALL_STATE(4948)] = 328862, - [SMALL_STATE(4949)] = 328890, - [SMALL_STATE(4950)] = 328922, - [SMALL_STATE(4951)] = 328950, - [SMALL_STATE(4952)] = 328982, - [SMALL_STATE(4953)] = 329004, - [SMALL_STATE(4954)] = 329032, - [SMALL_STATE(4955)] = 329060, - [SMALL_STATE(4956)] = 329092, - [SMALL_STATE(4957)] = 329120, - [SMALL_STATE(4958)] = 329142, - [SMALL_STATE(4959)] = 329170, - [SMALL_STATE(4960)] = 329198, - [SMALL_STATE(4961)] = 329222, - [SMALL_STATE(4962)] = 329250, - [SMALL_STATE(4963)] = 329278, - [SMALL_STATE(4964)] = 329310, - [SMALL_STATE(4965)] = 329338, - [SMALL_STATE(4966)] = 329370, - [SMALL_STATE(4967)] = 329404, - [SMALL_STATE(4968)] = 329428, - [SMALL_STATE(4969)] = 329456, - [SMALL_STATE(4970)] = 329488, - [SMALL_STATE(4971)] = 329512, - [SMALL_STATE(4972)] = 329544, - [SMALL_STATE(4973)] = 329576, - [SMALL_STATE(4974)] = 329604, - [SMALL_STATE(4975)] = 329636, - [SMALL_STATE(4976)] = 329668, - [SMALL_STATE(4977)] = 329700, - [SMALL_STATE(4978)] = 329730, - [SMALL_STATE(4979)] = 329762, - [SMALL_STATE(4980)] = 329794, - [SMALL_STATE(4981)] = 329818, - [SMALL_STATE(4982)] = 329842, - [SMALL_STATE(4983)] = 329864, - [SMALL_STATE(4984)] = 329886, - [SMALL_STATE(4985)] = 329918, - [SMALL_STATE(4986)] = 329950, - [SMALL_STATE(4987)] = 329984, - [SMALL_STATE(4988)] = 330006, - [SMALL_STATE(4989)] = 330028, - [SMALL_STATE(4990)] = 330060, - [SMALL_STATE(4991)] = 330085, - [SMALL_STATE(4992)] = 330116, - [SMALL_STATE(4993)] = 330147, - [SMALL_STATE(4994)] = 330178, - [SMALL_STATE(4995)] = 330209, - [SMALL_STATE(4996)] = 330234, - [SMALL_STATE(4997)] = 330265, - [SMALL_STATE(4998)] = 330296, - [SMALL_STATE(4999)] = 330327, - [SMALL_STATE(5000)] = 330352, - [SMALL_STATE(5001)] = 330377, - [SMALL_STATE(5002)] = 330408, - [SMALL_STATE(5003)] = 330439, - [SMALL_STATE(5004)] = 330470, - [SMALL_STATE(5005)] = 330501, - [SMALL_STATE(5006)] = 330532, - [SMALL_STATE(5007)] = 330563, - [SMALL_STATE(5008)] = 330594, - [SMALL_STATE(5009)] = 330625, - [SMALL_STATE(5010)] = 330650, - [SMALL_STATE(5011)] = 330681, - [SMALL_STATE(5012)] = 330712, - [SMALL_STATE(5013)] = 330737, - [SMALL_STATE(5014)] = 330768, - [SMALL_STATE(5015)] = 330793, - [SMALL_STATE(5016)] = 330824, - [SMALL_STATE(5017)] = 330855, - [SMALL_STATE(5018)] = 330886, - [SMALL_STATE(5019)] = 330911, - [SMALL_STATE(5020)] = 330942, - [SMALL_STATE(5021)] = 330973, - [SMALL_STATE(5022)] = 331004, - [SMALL_STATE(5023)] = 331035, - [SMALL_STATE(5024)] = 331066, - [SMALL_STATE(5025)] = 331097, - [SMALL_STATE(5026)] = 331128, - [SMALL_STATE(5027)] = 331153, - [SMALL_STATE(5028)] = 331184, - [SMALL_STATE(5029)] = 331215, - [SMALL_STATE(5030)] = 331246, - [SMALL_STATE(5031)] = 331277, - [SMALL_STATE(5032)] = 331308, - [SMALL_STATE(5033)] = 331339, - [SMALL_STATE(5034)] = 331370, - [SMALL_STATE(5035)] = 331401, - [SMALL_STATE(5036)] = 331426, - [SMALL_STATE(5037)] = 331457, - [SMALL_STATE(5038)] = 331488, - [SMALL_STATE(5039)] = 331509, - [SMALL_STATE(5040)] = 331540, - [SMALL_STATE(5041)] = 331565, - [SMALL_STATE(5042)] = 331590, - [SMALL_STATE(5043)] = 331621, - [SMALL_STATE(5044)] = 331652, - [SMALL_STATE(5045)] = 331677, - [SMALL_STATE(5046)] = 331708, - [SMALL_STATE(5047)] = 331739, - [SMALL_STATE(5048)] = 331764, - [SMALL_STATE(5049)] = 331795, - [SMALL_STATE(5050)] = 331826, - [SMALL_STATE(5051)] = 331857, - [SMALL_STATE(5052)] = 331882, - [SMALL_STATE(5053)] = 331913, - [SMALL_STATE(5054)] = 331938, - [SMALL_STATE(5055)] = 331969, - [SMALL_STATE(5056)] = 332000, - [SMALL_STATE(5057)] = 332025, - [SMALL_STATE(5058)] = 332056, - [SMALL_STATE(5059)] = 332081, - [SMALL_STATE(5060)] = 332106, - [SMALL_STATE(5061)] = 332137, - [SMALL_STATE(5062)] = 332168, - [SMALL_STATE(5063)] = 332199, - [SMALL_STATE(5064)] = 332224, - [SMALL_STATE(5065)] = 332255, - [SMALL_STATE(5066)] = 332280, - [SMALL_STATE(5067)] = 332311, - [SMALL_STATE(5068)] = 332336, - [SMALL_STATE(5069)] = 332361, - [SMALL_STATE(5070)] = 332386, - [SMALL_STATE(5071)] = 332417, - [SMALL_STATE(5072)] = 332442, - [SMALL_STATE(5073)] = 332467, - [SMALL_STATE(5074)] = 332498, - [SMALL_STATE(5075)] = 332529, - [SMALL_STATE(5076)] = 332554, - [SMALL_STATE(5077)] = 332585, - [SMALL_STATE(5078)] = 332616, - [SMALL_STATE(5079)] = 332647, - [SMALL_STATE(5080)] = 332672, - [SMALL_STATE(5081)] = 332703, - [SMALL_STATE(5082)] = 332734, - [SMALL_STATE(5083)] = 332759, - [SMALL_STATE(5084)] = 332784, - [SMALL_STATE(5085)] = 332815, - [SMALL_STATE(5086)] = 332846, - [SMALL_STATE(5087)] = 332877, - [SMALL_STATE(5088)] = 332902, - [SMALL_STATE(5089)] = 332927, - [SMALL_STATE(5090)] = 332952, - [SMALL_STATE(5091)] = 332983, - [SMALL_STATE(5092)] = 333014, - [SMALL_STATE(5093)] = 333039, - [SMALL_STATE(5094)] = 333070, - [SMALL_STATE(5095)] = 333101, - [SMALL_STATE(5096)] = 333126, - [SMALL_STATE(5097)] = 333151, - [SMALL_STATE(5098)] = 333182, - [SMALL_STATE(5099)] = 333213, - [SMALL_STATE(5100)] = 333238, - [SMALL_STATE(5101)] = 333269, - [SMALL_STATE(5102)] = 333300, - [SMALL_STATE(5103)] = 333331, - [SMALL_STATE(5104)] = 333362, - [SMALL_STATE(5105)] = 333387, - [SMALL_STATE(5106)] = 333418, - [SMALL_STATE(5107)] = 333449, - [SMALL_STATE(5108)] = 333474, - [SMALL_STATE(5109)] = 333499, - [SMALL_STATE(5110)] = 333530, - [SMALL_STATE(5111)] = 333561, - [SMALL_STATE(5112)] = 333592, - [SMALL_STATE(5113)] = 333623, - [SMALL_STATE(5114)] = 333648, - [SMALL_STATE(5115)] = 333679, - [SMALL_STATE(5116)] = 333704, - [SMALL_STATE(5117)] = 333729, - [SMALL_STATE(5118)] = 333760, - [SMALL_STATE(5119)] = 333791, - [SMALL_STATE(5120)] = 333822, - [SMALL_STATE(5121)] = 333853, - [SMALL_STATE(5122)] = 333878, - [SMALL_STATE(5123)] = 333903, - [SMALL_STATE(5124)] = 333928, - [SMALL_STATE(5125)] = 333959, - [SMALL_STATE(5126)] = 333990, - [SMALL_STATE(5127)] = 334021, - [SMALL_STATE(5128)] = 334046, - [SMALL_STATE(5129)] = 334077, - [SMALL_STATE(5130)] = 334108, - [SMALL_STATE(5131)] = 334133, - [SMALL_STATE(5132)] = 334164, - [SMALL_STATE(5133)] = 334195, - [SMALL_STATE(5134)] = 334226, - [SMALL_STATE(5135)] = 334257, - [SMALL_STATE(5136)] = 334288, - [SMALL_STATE(5137)] = 334313, - [SMALL_STATE(5138)] = 334344, - [SMALL_STATE(5139)] = 334375, - [SMALL_STATE(5140)] = 334406, - [SMALL_STATE(5141)] = 334437, - [SMALL_STATE(5142)] = 334468, - [SMALL_STATE(5143)] = 334499, - [SMALL_STATE(5144)] = 334530, - [SMALL_STATE(5145)] = 334555, - [SMALL_STATE(5146)] = 334580, - [SMALL_STATE(5147)] = 334611, - [SMALL_STATE(5148)] = 334642, - [SMALL_STATE(5149)] = 334673, - [SMALL_STATE(5150)] = 334704, - [SMALL_STATE(5151)] = 334729, - [SMALL_STATE(5152)] = 334760, - [SMALL_STATE(5153)] = 334791, - [SMALL_STATE(5154)] = 334822, - [SMALL_STATE(5155)] = 334853, - [SMALL_STATE(5156)] = 334884, - [SMALL_STATE(5157)] = 334915, - [SMALL_STATE(5158)] = 334943, - [SMALL_STATE(5159)] = 334971, - [SMALL_STATE(5160)] = 334997, - [SMALL_STATE(5161)] = 335019, - [SMALL_STATE(5162)] = 335047, - [SMALL_STATE(5163)] = 335069, - [SMALL_STATE(5164)] = 335097, - [SMALL_STATE(5165)] = 335125, - [SMALL_STATE(5166)] = 335147, - [SMALL_STATE(5167)] = 335167, - [SMALL_STATE(5168)] = 335195, - [SMALL_STATE(5169)] = 335223, - [SMALL_STATE(5170)] = 335251, - [SMALL_STATE(5171)] = 335279, - [SMALL_STATE(5172)] = 335301, - [SMALL_STATE(5173)] = 335323, - [SMALL_STATE(5174)] = 335345, - [SMALL_STATE(5175)] = 335373, - [SMALL_STATE(5176)] = 335401, - [SMALL_STATE(5177)] = 335429, - [SMALL_STATE(5178)] = 335457, - [SMALL_STATE(5179)] = 335485, - [SMALL_STATE(5180)] = 335513, - [SMALL_STATE(5181)] = 335535, - [SMALL_STATE(5182)] = 335563, - [SMALL_STATE(5183)] = 335585, - [SMALL_STATE(5184)] = 335607, - [SMALL_STATE(5185)] = 335635, - [SMALL_STATE(5186)] = 335663, - [SMALL_STATE(5187)] = 335691, - [SMALL_STATE(5188)] = 335719, - [SMALL_STATE(5189)] = 335741, - [SMALL_STATE(5190)] = 335763, - [SMALL_STATE(5191)] = 335791, - [SMALL_STATE(5192)] = 335819, - [SMALL_STATE(5193)] = 335847, - [SMALL_STATE(5194)] = 335875, - [SMALL_STATE(5195)] = 335897, - [SMALL_STATE(5196)] = 335919, - [SMALL_STATE(5197)] = 335941, - [SMALL_STATE(5198)] = 335961, - [SMALL_STATE(5199)] = 335981, - [SMALL_STATE(5200)] = 336003, - [SMALL_STATE(5201)] = 336031, - [SMALL_STATE(5202)] = 336059, - [SMALL_STATE(5203)] = 336087, - [SMALL_STATE(5204)] = 336109, - [SMALL_STATE(5205)] = 336129, - [SMALL_STATE(5206)] = 336157, - [SMALL_STATE(5207)] = 336177, - [SMALL_STATE(5208)] = 336199, - [SMALL_STATE(5209)] = 336219, - [SMALL_STATE(5210)] = 336241, - [SMALL_STATE(5211)] = 336263, - [SMALL_STATE(5212)] = 336283, - [SMALL_STATE(5213)] = 336311, - [SMALL_STATE(5214)] = 336334, - [SMALL_STATE(5215)] = 336357, - [SMALL_STATE(5216)] = 336380, - [SMALL_STATE(5217)] = 336403, - [SMALL_STATE(5218)] = 336426, - [SMALL_STATE(5219)] = 336449, - [SMALL_STATE(5220)] = 336472, - [SMALL_STATE(5221)] = 336495, - [SMALL_STATE(5222)] = 336518, - [SMALL_STATE(5223)] = 336541, - [SMALL_STATE(5224)] = 336564, - [SMALL_STATE(5225)] = 336587, - [SMALL_STATE(5226)] = 336610, - [SMALL_STATE(5227)] = 336633, - [SMALL_STATE(5228)] = 336656, - [SMALL_STATE(5229)] = 336679, - [SMALL_STATE(5230)] = 336702, - [SMALL_STATE(5231)] = 336725, - [SMALL_STATE(5232)] = 336746, - [SMALL_STATE(5233)] = 336769, - [SMALL_STATE(5234)] = 336792, - [SMALL_STATE(5235)] = 336815, - [SMALL_STATE(5236)] = 336838, - [SMALL_STATE(5237)] = 336861, - [SMALL_STATE(5238)] = 336884, - [SMALL_STATE(5239)] = 336907, - [SMALL_STATE(5240)] = 336930, - [SMALL_STATE(5241)] = 336953, - [SMALL_STATE(5242)] = 336976, - [SMALL_STATE(5243)] = 336999, - [SMALL_STATE(5244)] = 337022, - [SMALL_STATE(5245)] = 337045, - [SMALL_STATE(5246)] = 337066, - [SMALL_STATE(5247)] = 337089, - [SMALL_STATE(5248)] = 337112, - [SMALL_STATE(5249)] = 337135, - [SMALL_STATE(5250)] = 337158, - [SMALL_STATE(5251)] = 337178, - [SMALL_STATE(5252)] = 337192, - [SMALL_STATE(5253)] = 337210, - [SMALL_STATE(5254)] = 337236, - [SMALL_STATE(5255)] = 337254, - [SMALL_STATE(5256)] = 337274, - [SMALL_STATE(5257)] = 337292, - [SMALL_STATE(5258)] = 337311, - [SMALL_STATE(5259)] = 337330, - [SMALL_STATE(5260)] = 337347, - [SMALL_STATE(5261)] = 337366, - [SMALL_STATE(5262)] = 337385, - [SMALL_STATE(5263)] = 337402, - [SMALL_STATE(5264)] = 337421, - [SMALL_STATE(5265)] = 337440, - [SMALL_STATE(5266)] = 337463, - [SMALL_STATE(5267)] = 337480, - [SMALL_STATE(5268)] = 337495, - [SMALL_STATE(5269)] = 337518, - [SMALL_STATE(5270)] = 337533, - [SMALL_STATE(5271)] = 337556, - [SMALL_STATE(5272)] = 337571, - [SMALL_STATE(5273)] = 337586, - [SMALL_STATE(5274)] = 337603, - [SMALL_STATE(5275)] = 337626, - [SMALL_STATE(5276)] = 337641, - [SMALL_STATE(5277)] = 337658, - [SMALL_STATE(5278)] = 337681, - [SMALL_STATE(5279)] = 337696, - [SMALL_STATE(5280)] = 337711, - [SMALL_STATE(5281)] = 337726, - [SMALL_STATE(5282)] = 337741, - [SMALL_STATE(5283)] = 337758, - [SMALL_STATE(5284)] = 337773, - [SMALL_STATE(5285)] = 337796, - [SMALL_STATE(5286)] = 337815, - [SMALL_STATE(5287)] = 337834, - [SMALL_STATE(5288)] = 337851, - [SMALL_STATE(5289)] = 337870, - [SMALL_STATE(5290)] = 337893, - [SMALL_STATE(5291)] = 337916, - [SMALL_STATE(5292)] = 337935, - [SMALL_STATE(5293)] = 337958, - [SMALL_STATE(5294)] = 337975, - [SMALL_STATE(5295)] = 337990, - [SMALL_STATE(5296)] = 338007, - [SMALL_STATE(5297)] = 338024, - [SMALL_STATE(5298)] = 338043, - [SMALL_STATE(5299)] = 338066, - [SMALL_STATE(5300)] = 338085, - [SMALL_STATE(5301)] = 338102, - [SMALL_STATE(5302)] = 338121, - [SMALL_STATE(5303)] = 338138, - [SMALL_STATE(5304)] = 338157, - [SMALL_STATE(5305)] = 338172, - [SMALL_STATE(5306)] = 338195, - [SMALL_STATE(5307)] = 338212, - [SMALL_STATE(5308)] = 338231, - [SMALL_STATE(5309)] = 338250, - [SMALL_STATE(5310)] = 338269, - [SMALL_STATE(5311)] = 338288, - [SMALL_STATE(5312)] = 338305, - [SMALL_STATE(5313)] = 338320, - [SMALL_STATE(5314)] = 338339, - [SMALL_STATE(5315)] = 338354, - [SMALL_STATE(5316)] = 338373, - [SMALL_STATE(5317)] = 338392, - [SMALL_STATE(5318)] = 338407, - [SMALL_STATE(5319)] = 338424, - [SMALL_STATE(5320)] = 338441, - [SMALL_STATE(5321)] = 338458, - [SMALL_STATE(5322)] = 338481, - [SMALL_STATE(5323)] = 338500, - [SMALL_STATE(5324)] = 338515, - [SMALL_STATE(5325)] = 338532, - [SMALL_STATE(5326)] = 338555, - [SMALL_STATE(5327)] = 338572, - [SMALL_STATE(5328)] = 338591, - [SMALL_STATE(5329)] = 338606, - [SMALL_STATE(5330)] = 338625, - [SMALL_STATE(5331)] = 338644, - [SMALL_STATE(5332)] = 338661, - [SMALL_STATE(5333)] = 338684, - [SMALL_STATE(5334)] = 338701, - [SMALL_STATE(5335)] = 338720, - [SMALL_STATE(5336)] = 338739, - [SMALL_STATE(5337)] = 338762, - [SMALL_STATE(5338)] = 338781, - [SMALL_STATE(5339)] = 338804, - [SMALL_STATE(5340)] = 338823, - [SMALL_STATE(5341)] = 338840, - [SMALL_STATE(5342)] = 338863, - [SMALL_STATE(5343)] = 338883, - [SMALL_STATE(5344)] = 338903, - [SMALL_STATE(5345)] = 338915, - [SMALL_STATE(5346)] = 338935, - [SMALL_STATE(5347)] = 338953, - [SMALL_STATE(5348)] = 338969, - [SMALL_STATE(5349)] = 338989, - [SMALL_STATE(5350)] = 339009, - [SMALL_STATE(5351)] = 339025, - [SMALL_STATE(5352)] = 339045, - [SMALL_STATE(5353)] = 339065, - [SMALL_STATE(5354)] = 339085, - [SMALL_STATE(5355)] = 339105, - [SMALL_STATE(5356)] = 339125, - [SMALL_STATE(5357)] = 339145, - [SMALL_STATE(5358)] = 339165, - [SMALL_STATE(5359)] = 339185, - [SMALL_STATE(5360)] = 339201, - [SMALL_STATE(5361)] = 339217, - [SMALL_STATE(5362)] = 339237, - [SMALL_STATE(5363)] = 339257, - [SMALL_STATE(5364)] = 339277, - [SMALL_STATE(5365)] = 339289, - [SMALL_STATE(5366)] = 339309, - [SMALL_STATE(5367)] = 339329, - [SMALL_STATE(5368)] = 339345, - [SMALL_STATE(5369)] = 339365, - [SMALL_STATE(5370)] = 339381, - [SMALL_STATE(5371)] = 339401, - [SMALL_STATE(5372)] = 339421, - [SMALL_STATE(5373)] = 339437, - [SMALL_STATE(5374)] = 339457, - [SMALL_STATE(5375)] = 339477, - [SMALL_STATE(5376)] = 339497, - [SMALL_STATE(5377)] = 339514, - [SMALL_STATE(5378)] = 339531, - [SMALL_STATE(5379)] = 339544, - [SMALL_STATE(5380)] = 339557, - [SMALL_STATE(5381)] = 339572, - [SMALL_STATE(5382)] = 339585, - [SMALL_STATE(5383)] = 339598, - [SMALL_STATE(5384)] = 339615, - [SMALL_STATE(5385)] = 339632, - [SMALL_STATE(5386)] = 339649, - [SMALL_STATE(5387)] = 339666, - [SMALL_STATE(5388)] = 339679, - [SMALL_STATE(5389)] = 339696, - [SMALL_STATE(5390)] = 339709, - [SMALL_STATE(5391)] = 339722, - [SMALL_STATE(5392)] = 339737, - [SMALL_STATE(5393)] = 339752, - [SMALL_STATE(5394)] = 339767, - [SMALL_STATE(5395)] = 339784, - [SMALL_STATE(5396)] = 339801, - [SMALL_STATE(5397)] = 339816, - [SMALL_STATE(5398)] = 339833, - [SMALL_STATE(5399)] = 339850, - [SMALL_STATE(5400)] = 339865, - [SMALL_STATE(5401)] = 339882, - [SMALL_STATE(5402)] = 339899, - [SMALL_STATE(5403)] = 339912, - [SMALL_STATE(5404)] = 339925, - [SMALL_STATE(5405)] = 339938, - [SMALL_STATE(5406)] = 339955, - [SMALL_STATE(5407)] = 339970, - [SMALL_STATE(5408)] = 339987, - [SMALL_STATE(5409)] = 340000, - [SMALL_STATE(5410)] = 340013, - [SMALL_STATE(5411)] = 340026, - [SMALL_STATE(5412)] = 340043, - [SMALL_STATE(5413)] = 340060, - [SMALL_STATE(5414)] = 340077, - [SMALL_STATE(5415)] = 340092, - [SMALL_STATE(5416)] = 340105, - [SMALL_STATE(5417)] = 340122, - [SMALL_STATE(5418)] = 340135, - [SMALL_STATE(5419)] = 340152, - [SMALL_STATE(5420)] = 340169, - [SMALL_STATE(5421)] = 340186, - [SMALL_STATE(5422)] = 340203, - [SMALL_STATE(5423)] = 340220, - [SMALL_STATE(5424)] = 340233, - [SMALL_STATE(5425)] = 340250, - [SMALL_STATE(5426)] = 340267, - [SMALL_STATE(5427)] = 340284, - [SMALL_STATE(5428)] = 340301, - [SMALL_STATE(5429)] = 340318, - [SMALL_STATE(5430)] = 340332, - [SMALL_STATE(5431)] = 340346, - [SMALL_STATE(5432)] = 340358, - [SMALL_STATE(5433)] = 340372, - [SMALL_STATE(5434)] = 340384, - [SMALL_STATE(5435)] = 340398, - [SMALL_STATE(5436)] = 340410, - [SMALL_STATE(5437)] = 340424, - [SMALL_STATE(5438)] = 340438, - [SMALL_STATE(5439)] = 340452, - [SMALL_STATE(5440)] = 340464, - [SMALL_STATE(5441)] = 340478, - [SMALL_STATE(5442)] = 340492, - [SMALL_STATE(5443)] = 340506, - [SMALL_STATE(5444)] = 340520, - [SMALL_STATE(5445)] = 340534, - [SMALL_STATE(5446)] = 340548, - [SMALL_STATE(5447)] = 340562, - [SMALL_STATE(5448)] = 340576, - [SMALL_STATE(5449)] = 340590, - [SMALL_STATE(5450)] = 340604, - [SMALL_STATE(5451)] = 340618, - [SMALL_STATE(5452)] = 340632, - [SMALL_STATE(5453)] = 340646, - [SMALL_STATE(5454)] = 340660, - [SMALL_STATE(5455)] = 340674, - [SMALL_STATE(5456)] = 340688, - [SMALL_STATE(5457)] = 340702, - [SMALL_STATE(5458)] = 340716, - [SMALL_STATE(5459)] = 340730, - [SMALL_STATE(5460)] = 340744, - [SMALL_STATE(5461)] = 340758, - [SMALL_STATE(5462)] = 340772, - [SMALL_STATE(5463)] = 340786, - [SMALL_STATE(5464)] = 340800, - [SMALL_STATE(5465)] = 340814, - [SMALL_STATE(5466)] = 340828, - [SMALL_STATE(5467)] = 340842, - [SMALL_STATE(5468)] = 340856, - [SMALL_STATE(5469)] = 340868, - [SMALL_STATE(5470)] = 340882, - [SMALL_STATE(5471)] = 340896, - [SMALL_STATE(5472)] = 340910, - [SMALL_STATE(5473)] = 340922, - [SMALL_STATE(5474)] = 340936, - [SMALL_STATE(5475)] = 340948, - [SMALL_STATE(5476)] = 340958, - [SMALL_STATE(5477)] = 340970, - [SMALL_STATE(5478)] = 340982, - [SMALL_STATE(5479)] = 340992, - [SMALL_STATE(5480)] = 341006, - [SMALL_STATE(5481)] = 341020, - [SMALL_STATE(5482)] = 341034, - [SMALL_STATE(5483)] = 341048, - [SMALL_STATE(5484)] = 341062, - [SMALL_STATE(5485)] = 341076, - [SMALL_STATE(5486)] = 341088, - [SMALL_STATE(5487)] = 341102, - [SMALL_STATE(5488)] = 341116, - [SMALL_STATE(5489)] = 341130, - [SMALL_STATE(5490)] = 341144, - [SMALL_STATE(5491)] = 341158, - [SMALL_STATE(5492)] = 341170, - [SMALL_STATE(5493)] = 341184, - [SMALL_STATE(5494)] = 341198, - [SMALL_STATE(5495)] = 341212, - [SMALL_STATE(5496)] = 341226, - [SMALL_STATE(5497)] = 341240, - [SMALL_STATE(5498)] = 341254, - [SMALL_STATE(5499)] = 341268, - [SMALL_STATE(5500)] = 341282, - [SMALL_STATE(5501)] = 341296, - [SMALL_STATE(5502)] = 341310, - [SMALL_STATE(5503)] = 341324, - [SMALL_STATE(5504)] = 341338, - [SMALL_STATE(5505)] = 341352, - [SMALL_STATE(5506)] = 341366, - [SMALL_STATE(5507)] = 341380, - [SMALL_STATE(5508)] = 341394, - [SMALL_STATE(5509)] = 341408, - [SMALL_STATE(5510)] = 341422, - [SMALL_STATE(5511)] = 341436, - [SMALL_STATE(5512)] = 341450, - [SMALL_STATE(5513)] = 341464, - [SMALL_STATE(5514)] = 341478, - [SMALL_STATE(5515)] = 341492, - [SMALL_STATE(5516)] = 341506, - [SMALL_STATE(5517)] = 341520, - [SMALL_STATE(5518)] = 341534, - [SMALL_STATE(5519)] = 341548, - [SMALL_STATE(5520)] = 341562, - [SMALL_STATE(5521)] = 341574, - [SMALL_STATE(5522)] = 341588, - [SMALL_STATE(5523)] = 341602, - [SMALL_STATE(5524)] = 341616, - [SMALL_STATE(5525)] = 341630, - [SMALL_STATE(5526)] = 341644, - [SMALL_STATE(5527)] = 341658, - [SMALL_STATE(5528)] = 341672, - [SMALL_STATE(5529)] = 341686, - [SMALL_STATE(5530)] = 341700, - [SMALL_STATE(5531)] = 341712, - [SMALL_STATE(5532)] = 341726, - [SMALL_STATE(5533)] = 341740, - [SMALL_STATE(5534)] = 341754, - [SMALL_STATE(5535)] = 341768, - [SMALL_STATE(5536)] = 341782, - [SMALL_STATE(5537)] = 341796, - [SMALL_STATE(5538)] = 341810, - [SMALL_STATE(5539)] = 341824, - [SMALL_STATE(5540)] = 341838, - [SMALL_STATE(5541)] = 341852, - [SMALL_STATE(5542)] = 341866, - [SMALL_STATE(5543)] = 341880, - [SMALL_STATE(5544)] = 341894, - [SMALL_STATE(5545)] = 341908, - [SMALL_STATE(5546)] = 341922, - [SMALL_STATE(5547)] = 341936, - [SMALL_STATE(5548)] = 341950, - [SMALL_STATE(5549)] = 341964, - [SMALL_STATE(5550)] = 341978, - [SMALL_STATE(5551)] = 341992, - [SMALL_STATE(5552)] = 342006, - [SMALL_STATE(5553)] = 342020, - [SMALL_STATE(5554)] = 342034, - [SMALL_STATE(5555)] = 342048, - [SMALL_STATE(5556)] = 342062, - [SMALL_STATE(5557)] = 342076, - [SMALL_STATE(5558)] = 342090, - [SMALL_STATE(5559)] = 342104, - [SMALL_STATE(5560)] = 342118, - [SMALL_STATE(5561)] = 342132, - [SMALL_STATE(5562)] = 342146, - [SMALL_STATE(5563)] = 342160, - [SMALL_STATE(5564)] = 342174, - [SMALL_STATE(5565)] = 342188, - [SMALL_STATE(5566)] = 342198, - [SMALL_STATE(5567)] = 342212, - [SMALL_STATE(5568)] = 342226, - [SMALL_STATE(5569)] = 342240, - [SMALL_STATE(5570)] = 342254, - [SMALL_STATE(5571)] = 342268, - [SMALL_STATE(5572)] = 342280, - [SMALL_STATE(5573)] = 342294, - [SMALL_STATE(5574)] = 342308, - [SMALL_STATE(5575)] = 342322, - [SMALL_STATE(5576)] = 342336, - [SMALL_STATE(5577)] = 342350, - [SMALL_STATE(5578)] = 342364, - [SMALL_STATE(5579)] = 342378, - [SMALL_STATE(5580)] = 342392, - [SMALL_STATE(5581)] = 342406, - [SMALL_STATE(5582)] = 342418, - [SMALL_STATE(5583)] = 342432, - [SMALL_STATE(5584)] = 342446, - [SMALL_STATE(5585)] = 342460, - [SMALL_STATE(5586)] = 342474, - [SMALL_STATE(5587)] = 342488, - [SMALL_STATE(5588)] = 342502, - [SMALL_STATE(5589)] = 342516, - [SMALL_STATE(5590)] = 342530, - [SMALL_STATE(5591)] = 342544, - [SMALL_STATE(5592)] = 342558, - [SMALL_STATE(5593)] = 342572, - [SMALL_STATE(5594)] = 342586, - [SMALL_STATE(5595)] = 342600, - [SMALL_STATE(5596)] = 342614, - [SMALL_STATE(5597)] = 342628, - [SMALL_STATE(5598)] = 342642, - [SMALL_STATE(5599)] = 342656, - [SMALL_STATE(5600)] = 342670, - [SMALL_STATE(5601)] = 342684, - [SMALL_STATE(5602)] = 342698, - [SMALL_STATE(5603)] = 342712, - [SMALL_STATE(5604)] = 342726, - [SMALL_STATE(5605)] = 342740, - [SMALL_STATE(5606)] = 342752, - [SMALL_STATE(5607)] = 342766, - [SMALL_STATE(5608)] = 342780, - [SMALL_STATE(5609)] = 342794, - [SMALL_STATE(5610)] = 342808, - [SMALL_STATE(5611)] = 342822, - [SMALL_STATE(5612)] = 342836, - [SMALL_STATE(5613)] = 342850, - [SMALL_STATE(5614)] = 342864, - [SMALL_STATE(5615)] = 342878, - [SMALL_STATE(5616)] = 342892, - [SMALL_STATE(5617)] = 342906, - [SMALL_STATE(5618)] = 342920, - [SMALL_STATE(5619)] = 342934, - [SMALL_STATE(5620)] = 342948, - [SMALL_STATE(5621)] = 342962, - [SMALL_STATE(5622)] = 342976, - [SMALL_STATE(5623)] = 342990, - [SMALL_STATE(5624)] = 343004, - [SMALL_STATE(5625)] = 343018, - [SMALL_STATE(5626)] = 343032, - [SMALL_STATE(5627)] = 343046, - [SMALL_STATE(5628)] = 343060, - [SMALL_STATE(5629)] = 343074, - [SMALL_STATE(5630)] = 343086, - [SMALL_STATE(5631)] = 343098, - [SMALL_STATE(5632)] = 343112, - [SMALL_STATE(5633)] = 343126, - [SMALL_STATE(5634)] = 343140, - [SMALL_STATE(5635)] = 343154, - [SMALL_STATE(5636)] = 343168, - [SMALL_STATE(5637)] = 343182, - [SMALL_STATE(5638)] = 343196, - [SMALL_STATE(5639)] = 343210, - [SMALL_STATE(5640)] = 343224, - [SMALL_STATE(5641)] = 343238, - [SMALL_STATE(5642)] = 343252, - [SMALL_STATE(5643)] = 343262, - [SMALL_STATE(5644)] = 343276, - [SMALL_STATE(5645)] = 343288, - [SMALL_STATE(5646)] = 343302, - [SMALL_STATE(5647)] = 343316, - [SMALL_STATE(5648)] = 343330, - [SMALL_STATE(5649)] = 343344, - [SMALL_STATE(5650)] = 343358, - [SMALL_STATE(5651)] = 343368, - [SMALL_STATE(5652)] = 343382, - [SMALL_STATE(5653)] = 343396, - [SMALL_STATE(5654)] = 343410, - [SMALL_STATE(5655)] = 343424, - [SMALL_STATE(5656)] = 343438, - [SMALL_STATE(5657)] = 343452, - [SMALL_STATE(5658)] = 343466, - [SMALL_STATE(5659)] = 343480, - [SMALL_STATE(5660)] = 343494, - [SMALL_STATE(5661)] = 343508, - [SMALL_STATE(5662)] = 343522, - [SMALL_STATE(5663)] = 343536, - [SMALL_STATE(5664)] = 343550, - [SMALL_STATE(5665)] = 343564, - [SMALL_STATE(5666)] = 343578, - [SMALL_STATE(5667)] = 343592, - [SMALL_STATE(5668)] = 343604, - [SMALL_STATE(5669)] = 343618, - [SMALL_STATE(5670)] = 343632, - [SMALL_STATE(5671)] = 343646, - [SMALL_STATE(5672)] = 343660, - [SMALL_STATE(5673)] = 343674, - [SMALL_STATE(5674)] = 343688, - [SMALL_STATE(5675)] = 343702, - [SMALL_STATE(5676)] = 343716, - [SMALL_STATE(5677)] = 343728, - [SMALL_STATE(5678)] = 343742, - [SMALL_STATE(5679)] = 343756, - [SMALL_STATE(5680)] = 343770, - [SMALL_STATE(5681)] = 343784, - [SMALL_STATE(5682)] = 343798, - [SMALL_STATE(5683)] = 343812, - [SMALL_STATE(5684)] = 343826, - [SMALL_STATE(5685)] = 343840, - [SMALL_STATE(5686)] = 343854, - [SMALL_STATE(5687)] = 343868, - [SMALL_STATE(5688)] = 343882, - [SMALL_STATE(5689)] = 343896, - [SMALL_STATE(5690)] = 343910, - [SMALL_STATE(5691)] = 343924, - [SMALL_STATE(5692)] = 343938, - [SMALL_STATE(5693)] = 343948, - [SMALL_STATE(5694)] = 343960, - [SMALL_STATE(5695)] = 343974, - [SMALL_STATE(5696)] = 343988, - [SMALL_STATE(5697)] = 344002, - [SMALL_STATE(5698)] = 344016, - [SMALL_STATE(5699)] = 344030, - [SMALL_STATE(5700)] = 344044, - [SMALL_STATE(5701)] = 344058, - [SMALL_STATE(5702)] = 344072, - [SMALL_STATE(5703)] = 344086, - [SMALL_STATE(5704)] = 344097, - [SMALL_STATE(5705)] = 344108, - [SMALL_STATE(5706)] = 344119, - [SMALL_STATE(5707)] = 344130, - [SMALL_STATE(5708)] = 344141, - [SMALL_STATE(5709)] = 344152, - [SMALL_STATE(5710)] = 344163, - [SMALL_STATE(5711)] = 344174, - [SMALL_STATE(5712)] = 344185, - [SMALL_STATE(5713)] = 344196, - [SMALL_STATE(5714)] = 344207, - [SMALL_STATE(5715)] = 344218, - [SMALL_STATE(5716)] = 344229, - [SMALL_STATE(5717)] = 344240, - [SMALL_STATE(5718)] = 344251, - [SMALL_STATE(5719)] = 344262, - [SMALL_STATE(5720)] = 344271, - [SMALL_STATE(5721)] = 344282, - [SMALL_STATE(5722)] = 344293, - [SMALL_STATE(5723)] = 344304, - [SMALL_STATE(5724)] = 344315, - [SMALL_STATE(5725)] = 344326, - [SMALL_STATE(5726)] = 344337, - [SMALL_STATE(5727)] = 344348, - [SMALL_STATE(5728)] = 344359, - [SMALL_STATE(5729)] = 344370, - [SMALL_STATE(5730)] = 344381, - [SMALL_STATE(5731)] = 344392, - [SMALL_STATE(5732)] = 344403, - [SMALL_STATE(5733)] = 344414, - [SMALL_STATE(5734)] = 344425, - [SMALL_STATE(5735)] = 344436, - [SMALL_STATE(5736)] = 344447, - [SMALL_STATE(5737)] = 344458, - [SMALL_STATE(5738)] = 344469, - [SMALL_STATE(5739)] = 344480, - [SMALL_STATE(5740)] = 344491, - [SMALL_STATE(5741)] = 344502, - [SMALL_STATE(5742)] = 344513, - [SMALL_STATE(5743)] = 344522, - [SMALL_STATE(5744)] = 344533, - [SMALL_STATE(5745)] = 344544, - [SMALL_STATE(5746)] = 344555, - [SMALL_STATE(5747)] = 344566, - [SMALL_STATE(5748)] = 344577, - [SMALL_STATE(5749)] = 344588, - [SMALL_STATE(5750)] = 344599, - [SMALL_STATE(5751)] = 344610, - [SMALL_STATE(5752)] = 344621, - [SMALL_STATE(5753)] = 344632, - [SMALL_STATE(5754)] = 344643, - [SMALL_STATE(5755)] = 344654, - [SMALL_STATE(5756)] = 344665, - [SMALL_STATE(5757)] = 344676, - [SMALL_STATE(5758)] = 344687, - [SMALL_STATE(5759)] = 344698, - [SMALL_STATE(5760)] = 344709, - [SMALL_STATE(5761)] = 344720, - [SMALL_STATE(5762)] = 344731, - [SMALL_STATE(5763)] = 344742, - [SMALL_STATE(5764)] = 344753, - [SMALL_STATE(5765)] = 344762, - [SMALL_STATE(5766)] = 344773, - [SMALL_STATE(5767)] = 344784, - [SMALL_STATE(5768)] = 344793, - [SMALL_STATE(5769)] = 344804, - [SMALL_STATE(5770)] = 344815, - [SMALL_STATE(5771)] = 344826, - [SMALL_STATE(5772)] = 344837, - [SMALL_STATE(5773)] = 344848, - [SMALL_STATE(5774)] = 344859, - [SMALL_STATE(5775)] = 344870, - [SMALL_STATE(5776)] = 344881, - [SMALL_STATE(5777)] = 344892, - [SMALL_STATE(5778)] = 344903, - [SMALL_STATE(5779)] = 344914, - [SMALL_STATE(5780)] = 344925, - [SMALL_STATE(5781)] = 344936, - [SMALL_STATE(5782)] = 344947, - [SMALL_STATE(5783)] = 344958, - [SMALL_STATE(5784)] = 344969, - [SMALL_STATE(5785)] = 344980, - [SMALL_STATE(5786)] = 344991, - [SMALL_STATE(5787)] = 345002, - [SMALL_STATE(5788)] = 345013, - [SMALL_STATE(5789)] = 345024, - [SMALL_STATE(5790)] = 345035, - [SMALL_STATE(5791)] = 345046, - [SMALL_STATE(5792)] = 345057, - [SMALL_STATE(5793)] = 345068, - [SMALL_STATE(5794)] = 345079, - [SMALL_STATE(5795)] = 345090, - [SMALL_STATE(5796)] = 345101, - [SMALL_STATE(5797)] = 345112, - [SMALL_STATE(5798)] = 345123, - [SMALL_STATE(5799)] = 345134, - [SMALL_STATE(5800)] = 345145, - [SMALL_STATE(5801)] = 345156, - [SMALL_STATE(5802)] = 345167, - [SMALL_STATE(5803)] = 345178, - [SMALL_STATE(5804)] = 345187, - [SMALL_STATE(5805)] = 345198, - [SMALL_STATE(5806)] = 345209, - [SMALL_STATE(5807)] = 345220, - [SMALL_STATE(5808)] = 345231, - [SMALL_STATE(5809)] = 345242, - [SMALL_STATE(5810)] = 345253, - [SMALL_STATE(5811)] = 345264, - [SMALL_STATE(5812)] = 345275, - [SMALL_STATE(5813)] = 345286, - [SMALL_STATE(5814)] = 345297, - [SMALL_STATE(5815)] = 345308, - [SMALL_STATE(5816)] = 345319, - [SMALL_STATE(5817)] = 345330, - [SMALL_STATE(5818)] = 345341, - [SMALL_STATE(5819)] = 345352, - [SMALL_STATE(5820)] = 345363, - [SMALL_STATE(5821)] = 345374, - [SMALL_STATE(5822)] = 345382, - [SMALL_STATE(5823)] = 345390, - [SMALL_STATE(5824)] = 345398, - [SMALL_STATE(5825)] = 345406, - [SMALL_STATE(5826)] = 345414, - [SMALL_STATE(5827)] = 345422, - [SMALL_STATE(5828)] = 345430, - [SMALL_STATE(5829)] = 345438, - [SMALL_STATE(5830)] = 345446, - [SMALL_STATE(5831)] = 345454, - [SMALL_STATE(5832)] = 345462, - [SMALL_STATE(5833)] = 345470, - [SMALL_STATE(5834)] = 345478, - [SMALL_STATE(5835)] = 345486, - [SMALL_STATE(5836)] = 345494, - [SMALL_STATE(5837)] = 345502, - [SMALL_STATE(5838)] = 345510, - [SMALL_STATE(5839)] = 345518, - [SMALL_STATE(5840)] = 345526, - [SMALL_STATE(5841)] = 345534, - [SMALL_STATE(5842)] = 345542, - [SMALL_STATE(5843)] = 345550, - [SMALL_STATE(5844)] = 345558, - [SMALL_STATE(5845)] = 345566, - [SMALL_STATE(5846)] = 345574, - [SMALL_STATE(5847)] = 345582, - [SMALL_STATE(5848)] = 345590, - [SMALL_STATE(5849)] = 345598, - [SMALL_STATE(5850)] = 345606, - [SMALL_STATE(5851)] = 345614, - [SMALL_STATE(5852)] = 345622, - [SMALL_STATE(5853)] = 345630, - [SMALL_STATE(5854)] = 345638, - [SMALL_STATE(5855)] = 345646, - [SMALL_STATE(5856)] = 345654, - [SMALL_STATE(5857)] = 345662, - [SMALL_STATE(5858)] = 345670, - [SMALL_STATE(5859)] = 345678, - [SMALL_STATE(5860)] = 345686, - [SMALL_STATE(5861)] = 345694, - [SMALL_STATE(5862)] = 345702, - [SMALL_STATE(5863)] = 345710, - [SMALL_STATE(5864)] = 345718, - [SMALL_STATE(5865)] = 345726, - [SMALL_STATE(5866)] = 345734, - [SMALL_STATE(5867)] = 345742, - [SMALL_STATE(5868)] = 345750, - [SMALL_STATE(5869)] = 345758, - [SMALL_STATE(5870)] = 345766, - [SMALL_STATE(5871)] = 345774, - [SMALL_STATE(5872)] = 345782, - [SMALL_STATE(5873)] = 345790, - [SMALL_STATE(5874)] = 345798, - [SMALL_STATE(5875)] = 345806, - [SMALL_STATE(5876)] = 345814, - [SMALL_STATE(5877)] = 345822, - [SMALL_STATE(5878)] = 345830, - [SMALL_STATE(5879)] = 345838, - [SMALL_STATE(5880)] = 345846, - [SMALL_STATE(5881)] = 345854, - [SMALL_STATE(5882)] = 345862, - [SMALL_STATE(5883)] = 345870, - [SMALL_STATE(5884)] = 345878, - [SMALL_STATE(5885)] = 345886, - [SMALL_STATE(5886)] = 345894, - [SMALL_STATE(5887)] = 345902, - [SMALL_STATE(5888)] = 345910, - [SMALL_STATE(5889)] = 345918, - [SMALL_STATE(5890)] = 345926, - [SMALL_STATE(5891)] = 345934, - [SMALL_STATE(5892)] = 345942, - [SMALL_STATE(5893)] = 345950, - [SMALL_STATE(5894)] = 345958, - [SMALL_STATE(5895)] = 345966, - [SMALL_STATE(5896)] = 345974, - [SMALL_STATE(5897)] = 345982, - [SMALL_STATE(5898)] = 345990, - [SMALL_STATE(5899)] = 345998, - [SMALL_STATE(5900)] = 346006, - [SMALL_STATE(5901)] = 346014, - [SMALL_STATE(5902)] = 346022, - [SMALL_STATE(5903)] = 346030, - [SMALL_STATE(5904)] = 346038, - [SMALL_STATE(5905)] = 346046, - [SMALL_STATE(5906)] = 346054, - [SMALL_STATE(5907)] = 346062, - [SMALL_STATE(5908)] = 346070, - [SMALL_STATE(5909)] = 346078, - [SMALL_STATE(5910)] = 346086, - [SMALL_STATE(5911)] = 346094, - [SMALL_STATE(5912)] = 346102, - [SMALL_STATE(5913)] = 346110, - [SMALL_STATE(5914)] = 346118, - [SMALL_STATE(5915)] = 346126, - [SMALL_STATE(5916)] = 346134, - [SMALL_STATE(5917)] = 346142, - [SMALL_STATE(5918)] = 346150, - [SMALL_STATE(5919)] = 346158, - [SMALL_STATE(5920)] = 346166, - [SMALL_STATE(5921)] = 346174, - [SMALL_STATE(5922)] = 346182, - [SMALL_STATE(5923)] = 346190, - [SMALL_STATE(5924)] = 346198, - [SMALL_STATE(5925)] = 346206, - [SMALL_STATE(5926)] = 346214, - [SMALL_STATE(5927)] = 346222, - [SMALL_STATE(5928)] = 346230, - [SMALL_STATE(5929)] = 346238, - [SMALL_STATE(5930)] = 346246, - [SMALL_STATE(5931)] = 346254, - [SMALL_STATE(5932)] = 346262, - [SMALL_STATE(5933)] = 346270, - [SMALL_STATE(5934)] = 346278, - [SMALL_STATE(5935)] = 346286, - [SMALL_STATE(5936)] = 346294, - [SMALL_STATE(5937)] = 346302, - [SMALL_STATE(5938)] = 346310, - [SMALL_STATE(5939)] = 346318, - [SMALL_STATE(5940)] = 346326, - [SMALL_STATE(5941)] = 346334, - [SMALL_STATE(5942)] = 346342, - [SMALL_STATE(5943)] = 346350, - [SMALL_STATE(5944)] = 346358, - [SMALL_STATE(5945)] = 346366, - [SMALL_STATE(5946)] = 346374, - [SMALL_STATE(5947)] = 346382, - [SMALL_STATE(5948)] = 346390, - [SMALL_STATE(5949)] = 346398, - [SMALL_STATE(5950)] = 346406, - [SMALL_STATE(5951)] = 346414, - [SMALL_STATE(5952)] = 346422, - [SMALL_STATE(5953)] = 346430, - [SMALL_STATE(5954)] = 346438, - [SMALL_STATE(5955)] = 346446, - [SMALL_STATE(5956)] = 346454, - [SMALL_STATE(5957)] = 346462, - [SMALL_STATE(5958)] = 346470, - [SMALL_STATE(5959)] = 346478, - [SMALL_STATE(5960)] = 346486, - [SMALL_STATE(5961)] = 346494, - [SMALL_STATE(5962)] = 346502, - [SMALL_STATE(5963)] = 346510, - [SMALL_STATE(5964)] = 346518, - [SMALL_STATE(5965)] = 346526, - [SMALL_STATE(5966)] = 346534, - [SMALL_STATE(5967)] = 346542, - [SMALL_STATE(5968)] = 346550, - [SMALL_STATE(5969)] = 346558, - [SMALL_STATE(5970)] = 346566, - [SMALL_STATE(5971)] = 346574, - [SMALL_STATE(5972)] = 346582, - [SMALL_STATE(5973)] = 346590, - [SMALL_STATE(5974)] = 346598, - [SMALL_STATE(5975)] = 346606, - [SMALL_STATE(5976)] = 346614, - [SMALL_STATE(5977)] = 346622, - [SMALL_STATE(5978)] = 346630, - [SMALL_STATE(5979)] = 346638, - [SMALL_STATE(5980)] = 346646, - [SMALL_STATE(5981)] = 346654, - [SMALL_STATE(5982)] = 346662, - [SMALL_STATE(5983)] = 346670, - [SMALL_STATE(5984)] = 346678, - [SMALL_STATE(5985)] = 346686, - [SMALL_STATE(5986)] = 346694, - [SMALL_STATE(5987)] = 346702, - [SMALL_STATE(5988)] = 346710, - [SMALL_STATE(5989)] = 346718, - [SMALL_STATE(5990)] = 346726, - [SMALL_STATE(5991)] = 346734, - [SMALL_STATE(5992)] = 346742, - [SMALL_STATE(5993)] = 346750, - [SMALL_STATE(5994)] = 346758, - [SMALL_STATE(5995)] = 346766, - [SMALL_STATE(5996)] = 346774, - [SMALL_STATE(5997)] = 346782, - [SMALL_STATE(5998)] = 346790, - [SMALL_STATE(5999)] = 346798, - [SMALL_STATE(6000)] = 346806, - [SMALL_STATE(6001)] = 346814, - [SMALL_STATE(6002)] = 346822, - [SMALL_STATE(6003)] = 346830, - [SMALL_STATE(6004)] = 346838, - [SMALL_STATE(6005)] = 346846, - [SMALL_STATE(6006)] = 346854, - [SMALL_STATE(6007)] = 346862, - [SMALL_STATE(6008)] = 346870, - [SMALL_STATE(6009)] = 346878, - [SMALL_STATE(6010)] = 346886, - [SMALL_STATE(6011)] = 346894, - [SMALL_STATE(6012)] = 346902, - [SMALL_STATE(6013)] = 346910, - [SMALL_STATE(6014)] = 346918, - [SMALL_STATE(6015)] = 346926, - [SMALL_STATE(6016)] = 346934, - [SMALL_STATE(6017)] = 346942, - [SMALL_STATE(6018)] = 346950, - [SMALL_STATE(6019)] = 346958, - [SMALL_STATE(6020)] = 346966, - [SMALL_STATE(6021)] = 346974, - [SMALL_STATE(6022)] = 346982, - [SMALL_STATE(6023)] = 346990, - [SMALL_STATE(6024)] = 346998, - [SMALL_STATE(6025)] = 347006, - [SMALL_STATE(6026)] = 347014, - [SMALL_STATE(6027)] = 347022, - [SMALL_STATE(6028)] = 347030, - [SMALL_STATE(6029)] = 347038, - [SMALL_STATE(6030)] = 347046, - [SMALL_STATE(6031)] = 347054, - [SMALL_STATE(6032)] = 347062, - [SMALL_STATE(6033)] = 347070, - [SMALL_STATE(6034)] = 347078, - [SMALL_STATE(6035)] = 347086, - [SMALL_STATE(6036)] = 347094, - [SMALL_STATE(6037)] = 347102, - [SMALL_STATE(6038)] = 347110, - [SMALL_STATE(6039)] = 347118, - [SMALL_STATE(6040)] = 347126, - [SMALL_STATE(6041)] = 347134, - [SMALL_STATE(6042)] = 347142, - [SMALL_STATE(6043)] = 347150, - [SMALL_STATE(6044)] = 347158, - [SMALL_STATE(6045)] = 347166, - [SMALL_STATE(6046)] = 347174, - [SMALL_STATE(6047)] = 347182, - [SMALL_STATE(6048)] = 347190, - [SMALL_STATE(6049)] = 347198, - [SMALL_STATE(6050)] = 347206, - [SMALL_STATE(6051)] = 347214, - [SMALL_STATE(6052)] = 347222, - [SMALL_STATE(6053)] = 347230, - [SMALL_STATE(6054)] = 347238, - [SMALL_STATE(6055)] = 347246, - [SMALL_STATE(6056)] = 347254, - [SMALL_STATE(6057)] = 347262, - [SMALL_STATE(6058)] = 347270, - [SMALL_STATE(6059)] = 347278, - [SMALL_STATE(6060)] = 347286, - [SMALL_STATE(6061)] = 347294, - [SMALL_STATE(6062)] = 347302, - [SMALL_STATE(6063)] = 347310, - [SMALL_STATE(6064)] = 347318, - [SMALL_STATE(6065)] = 347326, - [SMALL_STATE(6066)] = 347334, - [SMALL_STATE(6067)] = 347342, - [SMALL_STATE(6068)] = 347350, - [SMALL_STATE(6069)] = 347358, - [SMALL_STATE(6070)] = 347366, - [SMALL_STATE(6071)] = 347374, - [SMALL_STATE(6072)] = 347382, - [SMALL_STATE(6073)] = 347390, - [SMALL_STATE(6074)] = 347398, - [SMALL_STATE(6075)] = 347406, - [SMALL_STATE(6076)] = 347414, - [SMALL_STATE(6077)] = 347422, - [SMALL_STATE(6078)] = 347430, - [SMALL_STATE(6079)] = 347438, - [SMALL_STATE(6080)] = 347446, - [SMALL_STATE(6081)] = 347454, - [SMALL_STATE(6082)] = 347462, - [SMALL_STATE(6083)] = 347470, - [SMALL_STATE(6084)] = 347478, - [SMALL_STATE(6085)] = 347486, - [SMALL_STATE(6086)] = 347494, - [SMALL_STATE(6087)] = 347502, - [SMALL_STATE(6088)] = 347510, - [SMALL_STATE(6089)] = 347518, - [SMALL_STATE(6090)] = 347526, - [SMALL_STATE(6091)] = 347534, - [SMALL_STATE(6092)] = 347542, - [SMALL_STATE(6093)] = 347550, - [SMALL_STATE(6094)] = 347558, - [SMALL_STATE(6095)] = 347566, - [SMALL_STATE(6096)] = 347574, - [SMALL_STATE(6097)] = 347582, - [SMALL_STATE(6098)] = 347590, - [SMALL_STATE(6099)] = 347598, - [SMALL_STATE(6100)] = 347606, - [SMALL_STATE(6101)] = 347614, - [SMALL_STATE(6102)] = 347622, - [SMALL_STATE(6103)] = 347630, - [SMALL_STATE(6104)] = 347638, - [SMALL_STATE(6105)] = 347646, - [SMALL_STATE(6106)] = 347654, - [SMALL_STATE(6107)] = 347662, - [SMALL_STATE(6108)] = 347670, - [SMALL_STATE(6109)] = 347678, - [SMALL_STATE(6110)] = 347686, - [SMALL_STATE(6111)] = 347694, - [SMALL_STATE(6112)] = 347702, - [SMALL_STATE(6113)] = 347710, - [SMALL_STATE(6114)] = 347718, - [SMALL_STATE(6115)] = 347726, - [SMALL_STATE(6116)] = 347734, - [SMALL_STATE(6117)] = 347742, - [SMALL_STATE(6118)] = 347750, - [SMALL_STATE(6119)] = 347758, - [SMALL_STATE(6120)] = 347766, - [SMALL_STATE(6121)] = 347774, - [SMALL_STATE(6122)] = 347782, - [SMALL_STATE(6123)] = 347790, - [SMALL_STATE(6124)] = 347798, - [SMALL_STATE(6125)] = 347806, - [SMALL_STATE(6126)] = 347814, - [SMALL_STATE(6127)] = 347822, - [SMALL_STATE(6128)] = 347830, - [SMALL_STATE(6129)] = 347838, - [SMALL_STATE(6130)] = 347846, - [SMALL_STATE(6131)] = 347854, - [SMALL_STATE(6132)] = 347862, - [SMALL_STATE(6133)] = 347870, - [SMALL_STATE(6134)] = 347878, - [SMALL_STATE(6135)] = 347886, - [SMALL_STATE(6136)] = 347894, - [SMALL_STATE(6137)] = 347902, - [SMALL_STATE(6138)] = 347910, - [SMALL_STATE(6139)] = 347918, - [SMALL_STATE(6140)] = 347926, - [SMALL_STATE(6141)] = 347934, - [SMALL_STATE(6142)] = 347942, - [SMALL_STATE(6143)] = 347950, - [SMALL_STATE(6144)] = 347958, - [SMALL_STATE(6145)] = 347966, - [SMALL_STATE(6146)] = 347974, - [SMALL_STATE(6147)] = 347982, - [SMALL_STATE(6148)] = 347990, - [SMALL_STATE(6149)] = 347998, - [SMALL_STATE(6150)] = 348006, - [SMALL_STATE(6151)] = 348014, - [SMALL_STATE(6152)] = 348022, - [SMALL_STATE(6153)] = 348030, - [SMALL_STATE(6154)] = 348038, - [SMALL_STATE(6155)] = 348046, - [SMALL_STATE(6156)] = 348054, - [SMALL_STATE(6157)] = 348062, - [SMALL_STATE(6158)] = 348070, - [SMALL_STATE(6159)] = 348078, - [SMALL_STATE(6160)] = 348086, - [SMALL_STATE(6161)] = 348094, - [SMALL_STATE(6162)] = 348102, - [SMALL_STATE(6163)] = 348110, - [SMALL_STATE(6164)] = 348118, - [SMALL_STATE(6165)] = 348126, - [SMALL_STATE(6166)] = 348134, - [SMALL_STATE(6167)] = 348142, - [SMALL_STATE(6168)] = 348150, - [SMALL_STATE(6169)] = 348158, - [SMALL_STATE(6170)] = 348166, - [SMALL_STATE(6171)] = 348174, - [SMALL_STATE(6172)] = 348182, - [SMALL_STATE(6173)] = 348190, - [SMALL_STATE(6174)] = 348198, - [SMALL_STATE(6175)] = 348206, - [SMALL_STATE(6176)] = 348214, - [SMALL_STATE(6177)] = 348222, - [SMALL_STATE(6178)] = 348230, - [SMALL_STATE(6179)] = 348238, - [SMALL_STATE(6180)] = 348246, - [SMALL_STATE(6181)] = 348254, - [SMALL_STATE(6182)] = 348262, - [SMALL_STATE(6183)] = 348270, - [SMALL_STATE(6184)] = 348278, - [SMALL_STATE(6185)] = 348286, - [SMALL_STATE(6186)] = 348294, - [SMALL_STATE(6187)] = 348302, - [SMALL_STATE(6188)] = 348310, - [SMALL_STATE(6189)] = 348318, - [SMALL_STATE(6190)] = 348326, - [SMALL_STATE(6191)] = 348334, - [SMALL_STATE(6192)] = 348342, - [SMALL_STATE(6193)] = 348350, - [SMALL_STATE(6194)] = 348358, - [SMALL_STATE(6195)] = 348366, - [SMALL_STATE(6196)] = 348374, - [SMALL_STATE(6197)] = 348382, - [SMALL_STATE(6198)] = 348390, - [SMALL_STATE(6199)] = 348398, - [SMALL_STATE(6200)] = 348406, - [SMALL_STATE(6201)] = 348414, - [SMALL_STATE(6202)] = 348422, - [SMALL_STATE(6203)] = 348430, - [SMALL_STATE(6204)] = 348438, - [SMALL_STATE(6205)] = 348446, - [SMALL_STATE(6206)] = 348454, - [SMALL_STATE(6207)] = 348462, - [SMALL_STATE(6208)] = 348470, - [SMALL_STATE(6209)] = 348478, - [SMALL_STATE(6210)] = 348486, - [SMALL_STATE(6211)] = 348494, - [SMALL_STATE(6212)] = 348502, - [SMALL_STATE(6213)] = 348510, - [SMALL_STATE(6214)] = 348518, - [SMALL_STATE(6215)] = 348526, - [SMALL_STATE(6216)] = 348534, - [SMALL_STATE(6217)] = 348542, - [SMALL_STATE(6218)] = 348550, - [SMALL_STATE(6219)] = 348558, - [SMALL_STATE(6220)] = 348566, - [SMALL_STATE(6221)] = 348574, - [SMALL_STATE(6222)] = 348582, - [SMALL_STATE(6223)] = 348590, - [SMALL_STATE(6224)] = 348598, - [SMALL_STATE(6225)] = 348606, - [SMALL_STATE(6226)] = 348614, - [SMALL_STATE(6227)] = 348622, - [SMALL_STATE(6228)] = 348630, - [SMALL_STATE(6229)] = 348638, - [SMALL_STATE(6230)] = 348646, - [SMALL_STATE(6231)] = 348654, - [SMALL_STATE(6232)] = 348662, - [SMALL_STATE(6233)] = 348670, - [SMALL_STATE(6234)] = 348678, - [SMALL_STATE(6235)] = 348686, - [SMALL_STATE(6236)] = 348694, - [SMALL_STATE(6237)] = 348702, - [SMALL_STATE(6238)] = 348710, - [SMALL_STATE(6239)] = 348718, - [SMALL_STATE(6240)] = 348726, - [SMALL_STATE(6241)] = 348734, - [SMALL_STATE(6242)] = 348742, - [SMALL_STATE(6243)] = 348750, - [SMALL_STATE(6244)] = 348758, - [SMALL_STATE(6245)] = 348766, - [SMALL_STATE(6246)] = 348774, - [SMALL_STATE(6247)] = 348782, - [SMALL_STATE(6248)] = 348790, - [SMALL_STATE(6249)] = 348798, - [SMALL_STATE(6250)] = 348806, - [SMALL_STATE(6251)] = 348814, - [SMALL_STATE(6252)] = 348822, - [SMALL_STATE(6253)] = 348830, - [SMALL_STATE(6254)] = 348838, - [SMALL_STATE(6255)] = 348846, - [SMALL_STATE(6256)] = 348854, - [SMALL_STATE(6257)] = 348862, - [SMALL_STATE(6258)] = 348870, - [SMALL_STATE(6259)] = 348878, - [SMALL_STATE(6260)] = 348886, - [SMALL_STATE(6261)] = 348894, - [SMALL_STATE(6262)] = 348902, - [SMALL_STATE(6263)] = 348910, - [SMALL_STATE(6264)] = 348918, - [SMALL_STATE(6265)] = 348926, - [SMALL_STATE(6266)] = 348934, - [SMALL_STATE(6267)] = 348942, - [SMALL_STATE(6268)] = 348950, - [SMALL_STATE(6269)] = 348958, - [SMALL_STATE(6270)] = 348966, - [SMALL_STATE(6271)] = 348974, - [SMALL_STATE(6272)] = 348982, - [SMALL_STATE(6273)] = 348990, - [SMALL_STATE(6274)] = 348998, - [SMALL_STATE(6275)] = 349006, - [SMALL_STATE(6276)] = 349014, - [SMALL_STATE(6277)] = 349022, - [SMALL_STATE(6278)] = 349030, - [SMALL_STATE(6279)] = 349038, - [SMALL_STATE(6280)] = 349046, - [SMALL_STATE(6281)] = 349054, - [SMALL_STATE(6282)] = 349062, - [SMALL_STATE(6283)] = 349070, - [SMALL_STATE(6284)] = 349078, - [SMALL_STATE(6285)] = 349086, - [SMALL_STATE(6286)] = 349094, - [SMALL_STATE(6287)] = 349102, - [SMALL_STATE(6288)] = 349110, - [SMALL_STATE(6289)] = 349118, - [SMALL_STATE(6290)] = 349126, - [SMALL_STATE(6291)] = 349134, - [SMALL_STATE(6292)] = 349142, - [SMALL_STATE(6293)] = 349150, - [SMALL_STATE(6294)] = 349158, - [SMALL_STATE(6295)] = 349166, - [SMALL_STATE(6296)] = 349174, - [SMALL_STATE(6297)] = 349182, - [SMALL_STATE(6298)] = 349190, - [SMALL_STATE(6299)] = 349198, - [SMALL_STATE(6300)] = 349206, - [SMALL_STATE(6301)] = 349214, - [SMALL_STATE(6302)] = 349222, - [SMALL_STATE(6303)] = 349230, - [SMALL_STATE(6304)] = 349238, - [SMALL_STATE(6305)] = 349246, - [SMALL_STATE(6306)] = 349254, - [SMALL_STATE(6307)] = 349262, - [SMALL_STATE(6308)] = 349270, - [SMALL_STATE(6309)] = 349278, - [SMALL_STATE(6310)] = 349286, - [SMALL_STATE(6311)] = 349294, - [SMALL_STATE(6312)] = 349302, - [SMALL_STATE(6313)] = 349310, - [SMALL_STATE(6314)] = 349318, - [SMALL_STATE(6315)] = 349326, - [SMALL_STATE(6316)] = 349334, - [SMALL_STATE(6317)] = 349342, - [SMALL_STATE(6318)] = 349350, - [SMALL_STATE(6319)] = 349358, - [SMALL_STATE(6320)] = 349366, - [SMALL_STATE(6321)] = 349374, - [SMALL_STATE(6322)] = 349382, - [SMALL_STATE(6323)] = 349390, - [SMALL_STATE(6324)] = 349398, - [SMALL_STATE(6325)] = 349406, - [SMALL_STATE(6326)] = 349414, - [SMALL_STATE(6327)] = 349422, - [SMALL_STATE(6328)] = 349430, - [SMALL_STATE(6329)] = 349438, - [SMALL_STATE(6330)] = 349446, - [SMALL_STATE(6331)] = 349454, - [SMALL_STATE(6332)] = 349462, - [SMALL_STATE(6333)] = 349470, - [SMALL_STATE(6334)] = 349478, - [SMALL_STATE(6335)] = 349486, - [SMALL_STATE(6336)] = 349494, - [SMALL_STATE(6337)] = 349502, - [SMALL_STATE(6338)] = 349510, - [SMALL_STATE(6339)] = 349518, - [SMALL_STATE(6340)] = 349526, - [SMALL_STATE(6341)] = 349534, - [SMALL_STATE(6342)] = 349542, - [SMALL_STATE(6343)] = 349550, - [SMALL_STATE(6344)] = 349558, - [SMALL_STATE(6345)] = 349566, - [SMALL_STATE(6346)] = 349574, - [SMALL_STATE(6347)] = 349582, - [SMALL_STATE(6348)] = 349590, - [SMALL_STATE(6349)] = 349598, - [SMALL_STATE(6350)] = 349606, - [SMALL_STATE(6351)] = 349614, - [SMALL_STATE(6352)] = 349622, - [SMALL_STATE(6353)] = 349630, - [SMALL_STATE(6354)] = 349637, - [SMALL_STATE(6355)] = 349644, - [SMALL_STATE(6356)] = 349651, - [SMALL_STATE(6357)] = 349658, - [SMALL_STATE(6358)] = 349665, - [SMALL_STATE(6359)] = 349672, - [SMALL_STATE(6360)] = 349679, - [SMALL_STATE(6361)] = 349686, - [SMALL_STATE(6362)] = 349693, - [SMALL_STATE(6363)] = 349700, - [SMALL_STATE(6364)] = 349707, - [SMALL_STATE(6365)] = 349714, - [SMALL_STATE(6366)] = 349721, - [SMALL_STATE(6367)] = 349728, - [SMALL_STATE(6368)] = 349735, - [SMALL_STATE(6369)] = 349742, - [SMALL_STATE(6370)] = 349749, - [SMALL_STATE(6371)] = 349756, - [SMALL_STATE(6372)] = 349763, - [SMALL_STATE(6373)] = 349770, - [SMALL_STATE(6374)] = 349777, - [SMALL_STATE(6375)] = 349784, - [SMALL_STATE(6376)] = 349791, - [SMALL_STATE(6377)] = 349798, - [SMALL_STATE(6378)] = 349805, - [SMALL_STATE(6379)] = 349812, - [SMALL_STATE(6380)] = 349819, - [SMALL_STATE(6381)] = 349826, - [SMALL_STATE(6382)] = 349833, - [SMALL_STATE(6383)] = 349840, - [SMALL_STATE(6384)] = 349847, - [SMALL_STATE(6385)] = 349854, - [SMALL_STATE(6386)] = 349861, - [SMALL_STATE(6387)] = 349868, - [SMALL_STATE(6388)] = 349875, - [SMALL_STATE(6389)] = 349882, - [SMALL_STATE(6390)] = 349889, - [SMALL_STATE(6391)] = 349896, - [SMALL_STATE(6392)] = 349903, - [SMALL_STATE(6393)] = 349910, - [SMALL_STATE(6394)] = 349917, - [SMALL_STATE(6395)] = 349924, - [SMALL_STATE(6396)] = 349931, - [SMALL_STATE(6397)] = 349938, - [SMALL_STATE(6398)] = 349945, - [SMALL_STATE(6399)] = 349952, - [SMALL_STATE(6400)] = 349959, - [SMALL_STATE(6401)] = 349966, - [SMALL_STATE(6402)] = 349973, - [SMALL_STATE(6403)] = 349980, - [SMALL_STATE(6404)] = 349987, - [SMALL_STATE(6405)] = 349994, - [SMALL_STATE(6406)] = 350001, + [SMALL_STATE(473)] = 0, + [SMALL_STATE(474)] = 117, + [SMALL_STATE(475)] = 202, + [SMALL_STATE(476)] = 277, + [SMALL_STATE(477)] = 396, + [SMALL_STATE(478)] = 513, + [SMALL_STATE(479)] = 630, + [SMALL_STATE(480)] = 703, + [SMALL_STATE(481)] = 820, + [SMALL_STATE(482)] = 937, + [SMALL_STATE(483)] = 1054, + [SMALL_STATE(484)] = 1175, + [SMALL_STATE(485)] = 1292, + [SMALL_STATE(486)] = 1409, + [SMALL_STATE(487)] = 1486, + [SMALL_STATE(488)] = 1603, + [SMALL_STATE(489)] = 1720, + [SMALL_STATE(490)] = 1837, + [SMALL_STATE(491)] = 1958, + [SMALL_STATE(492)] = 2075, + [SMALL_STATE(493)] = 2148, + [SMALL_STATE(494)] = 2265, + [SMALL_STATE(495)] = 2382, + [SMALL_STATE(496)] = 2499, + [SMALL_STATE(497)] = 2620, + [SMALL_STATE(498)] = 2737, + [SMALL_STATE(499)] = 2822, + [SMALL_STATE(500)] = 2939, + [SMALL_STATE(501)] = 3024, + [SMALL_STATE(502)] = 3141, + [SMALL_STATE(503)] = 3258, + [SMALL_STATE(504)] = 3375, + [SMALL_STATE(505)] = 3492, + [SMALL_STATE(506)] = 3609, + [SMALL_STATE(507)] = 3726, + [SMALL_STATE(508)] = 3843, + [SMALL_STATE(509)] = 3960, + [SMALL_STATE(510)] = 4077, + [SMALL_STATE(511)] = 4194, + [SMALL_STATE(512)] = 4267, + [SMALL_STATE(513)] = 4384, + [SMALL_STATE(514)] = 4501, + [SMALL_STATE(515)] = 4618, + [SMALL_STATE(516)] = 4735, + [SMALL_STATE(517)] = 4852, + [SMALL_STATE(518)] = 4969, + [SMALL_STATE(519)] = 5086, + [SMALL_STATE(520)] = 5203, + [SMALL_STATE(521)] = 5320, + [SMALL_STATE(522)] = 5437, + [SMALL_STATE(523)] = 5554, + [SMALL_STATE(524)] = 5671, + [SMALL_STATE(525)] = 5744, + [SMALL_STATE(526)] = 5861, + [SMALL_STATE(527)] = 5978, + [SMALL_STATE(528)] = 6095, + [SMALL_STATE(529)] = 6212, + [SMALL_STATE(530)] = 6329, + [SMALL_STATE(531)] = 6446, + [SMALL_STATE(532)] = 6563, + [SMALL_STATE(533)] = 6680, + [SMALL_STATE(534)] = 6801, + [SMALL_STATE(535)] = 6920, + [SMALL_STATE(536)] = 6993, + [SMALL_STATE(537)] = 7114, + [SMALL_STATE(538)] = 7235, + [SMALL_STATE(539)] = 7352, + [SMALL_STATE(540)] = 7469, + [SMALL_STATE(541)] = 7586, + [SMALL_STATE(542)] = 7703, + [SMALL_STATE(543)] = 7788, + [SMALL_STATE(544)] = 7909, + [SMALL_STATE(545)] = 8026, + [SMALL_STATE(546)] = 8099, + [SMALL_STATE(547)] = 8174, + [SMALL_STATE(548)] = 8291, + [SMALL_STATE(549)] = 8376, + [SMALL_STATE(550)] = 8493, + [SMALL_STATE(551)] = 8572, + [SMALL_STATE(552)] = 8689, + [SMALL_STATE(553)] = 8810, + [SMALL_STATE(554)] = 8927, + [SMALL_STATE(555)] = 9044, + [SMALL_STATE(556)] = 9119, + [SMALL_STATE(557)] = 9194, + [SMALL_STATE(558)] = 9271, + [SMALL_STATE(559)] = 9388, + [SMALL_STATE(560)] = 9505, + [SMALL_STATE(561)] = 9622, + [SMALL_STATE(562)] = 9697, + [SMALL_STATE(563)] = 9814, + [SMALL_STATE(564)] = 9931, + [SMALL_STATE(565)] = 10048, + [SMALL_STATE(566)] = 10121, + [SMALL_STATE(567)] = 10242, + [SMALL_STATE(568)] = 10359, + [SMALL_STATE(569)] = 10476, + [SMALL_STATE(570)] = 10593, + [SMALL_STATE(571)] = 10710, + [SMALL_STATE(572)] = 10787, + [SMALL_STATE(573)] = 10904, + [SMALL_STATE(574)] = 11021, + [SMALL_STATE(575)] = 11104, + [SMALL_STATE(576)] = 11221, + [SMALL_STATE(577)] = 11342, + [SMALL_STATE(578)] = 11459, + [SMALL_STATE(579)] = 11538, + [SMALL_STATE(580)] = 11655, + [SMALL_STATE(581)] = 11772, + [SMALL_STATE(582)] = 11853, + [SMALL_STATE(583)] = 11970, + [SMALL_STATE(584)] = 12091, + [SMALL_STATE(585)] = 12208, + [SMALL_STATE(586)] = 12325, + [SMALL_STATE(587)] = 12398, + [SMALL_STATE(588)] = 12519, + [SMALL_STATE(589)] = 12636, + [SMALL_STATE(590)] = 12757, + [SMALL_STATE(591)] = 12874, + [SMALL_STATE(592)] = 12991, + [SMALL_STATE(593)] = 13064, + [SMALL_STATE(594)] = 13181, + [SMALL_STATE(595)] = 13298, + [SMALL_STATE(596)] = 13415, + [SMALL_STATE(597)] = 13524, + [SMALL_STATE(598)] = 13645, + [SMALL_STATE(599)] = 13762, + [SMALL_STATE(600)] = 13883, + [SMALL_STATE(601)] = 14004, + [SMALL_STATE(602)] = 14113, + [SMALL_STATE(603)] = 14230, + [SMALL_STATE(604)] = 14337, + [SMALL_STATE(605)] = 14444, + [SMALL_STATE(606)] = 14561, + [SMALL_STATE(607)] = 14678, + [SMALL_STATE(608)] = 14795, + [SMALL_STATE(609)] = 14912, + [SMALL_STATE(610)] = 15029, + [SMALL_STATE(611)] = 15146, + [SMALL_STATE(612)] = 15263, + [SMALL_STATE(613)] = 15372, + [SMALL_STATE(614)] = 15491, + [SMALL_STATE(615)] = 15612, + [SMALL_STATE(616)] = 15685, + [SMALL_STATE(617)] = 15794, + [SMALL_STATE(618)] = 15911, + [SMALL_STATE(619)] = 16032, + [SMALL_STATE(620)] = 16107, + [SMALL_STATE(621)] = 16228, + [SMALL_STATE(622)] = 16305, + [SMALL_STATE(623)] = 16380, + [SMALL_STATE(624)] = 16473, + [SMALL_STATE(625)] = 16594, + [SMALL_STATE(626)] = 16711, + [SMALL_STATE(627)] = 16828, + [SMALL_STATE(628)] = 16945, + [SMALL_STATE(629)] = 17062, + [SMALL_STATE(630)] = 17179, + [SMALL_STATE(631)] = 17252, + [SMALL_STATE(632)] = 17327, + [SMALL_STATE(633)] = 17444, + [SMALL_STATE(634)] = 17565, + [SMALL_STATE(635)] = 17640, + [SMALL_STATE(636)] = 17757, + [SMALL_STATE(637)] = 17832, + [SMALL_STATE(638)] = 17909, + [SMALL_STATE(639)] = 18026, + [SMALL_STATE(640)] = 18143, + [SMALL_STATE(641)] = 18220, + [SMALL_STATE(642)] = 18295, + [SMALL_STATE(643)] = 18412, + [SMALL_STATE(644)] = 18489, + [SMALL_STATE(645)] = 18610, + [SMALL_STATE(646)] = 18727, + [SMALL_STATE(647)] = 18848, + [SMALL_STATE(648)] = 18965, + [SMALL_STATE(649)] = 19086, + [SMALL_STATE(650)] = 19159, + [SMALL_STATE(651)] = 19280, + [SMALL_STATE(652)] = 19397, + [SMALL_STATE(653)] = 19514, + [SMALL_STATE(654)] = 19613, + [SMALL_STATE(655)] = 19730, + [SMALL_STATE(656)] = 19803, + [SMALL_STATE(657)] = 19920, + [SMALL_STATE(658)] = 20037, + [SMALL_STATE(659)] = 20154, + [SMALL_STATE(660)] = 20271, + [SMALL_STATE(661)] = 20344, + [SMALL_STATE(662)] = 20461, + [SMALL_STATE(663)] = 20578, + [SMALL_STATE(664)] = 20699, + [SMALL_STATE(665)] = 20816, + [SMALL_STATE(666)] = 20937, + [SMALL_STATE(667)] = 21010, + [SMALL_STATE(668)] = 21127, + [SMALL_STATE(669)] = 21248, + [SMALL_STATE(670)] = 21365, + [SMALL_STATE(671)] = 21482, + [SMALL_STATE(672)] = 21599, + [SMALL_STATE(673)] = 21720, + [SMALL_STATE(674)] = 21841, + [SMALL_STATE(675)] = 21962, + [SMALL_STATE(676)] = 22079, + [SMALL_STATE(677)] = 22196, + [SMALL_STATE(678)] = 22313, + [SMALL_STATE(679)] = 22434, + [SMALL_STATE(680)] = 22555, + [SMALL_STATE(681)] = 22672, + [SMALL_STATE(682)] = 22753, + [SMALL_STATE(683)] = 22874, + [SMALL_STATE(684)] = 22991, + [SMALL_STATE(685)] = 23090, + [SMALL_STATE(686)] = 23163, + [SMALL_STATE(687)] = 23280, + [SMALL_STATE(688)] = 23357, + [SMALL_STATE(689)] = 23474, + [SMALL_STATE(690)] = 23591, + [SMALL_STATE(691)] = 23708, + [SMALL_STATE(692)] = 23825, + [SMALL_STATE(693)] = 23898, + [SMALL_STATE(694)] = 24015, + [SMALL_STATE(695)] = 24132, + [SMALL_STATE(696)] = 24241, + [SMALL_STATE(697)] = 24358, + [SMALL_STATE(698)] = 24475, + [SMALL_STATE(699)] = 24592, + [SMALL_STATE(700)] = 24665, + [SMALL_STATE(701)] = 24782, + [SMALL_STATE(702)] = 24891, + [SMALL_STATE(703)] = 25012, + [SMALL_STATE(704)] = 25095, + [SMALL_STATE(705)] = 25212, + [SMALL_STATE(706)] = 25333, + [SMALL_STATE(707)] = 25450, + [SMALL_STATE(708)] = 25567, + [SMALL_STATE(709)] = 25684, + [SMALL_STATE(710)] = 25801, + [SMALL_STATE(711)] = 25918, + [SMALL_STATE(712)] = 26035, + [SMALL_STATE(713)] = 26110, + [SMALL_STATE(714)] = 26227, + [SMALL_STATE(715)] = 26344, + [SMALL_STATE(716)] = 26461, + [SMALL_STATE(717)] = 26578, + [SMALL_STATE(718)] = 26699, + [SMALL_STATE(719)] = 26774, + [SMALL_STATE(720)] = 26865, + [SMALL_STATE(721)] = 26958, + [SMALL_STATE(722)] = 27079, + [SMALL_STATE(723)] = 27196, + [SMALL_STATE(724)] = 27275, + [SMALL_STATE(725)] = 27392, + [SMALL_STATE(726)] = 27509, + [SMALL_STATE(727)] = 27626, + [SMALL_STATE(728)] = 27743, + [SMALL_STATE(729)] = 27860, + [SMALL_STATE(730)] = 27977, + [SMALL_STATE(731)] = 28094, + [SMALL_STATE(732)] = 28211, + [SMALL_STATE(733)] = 28328, + [SMALL_STATE(734)] = 28445, + [SMALL_STATE(735)] = 28540, + [SMALL_STATE(736)] = 28615, + [SMALL_STATE(737)] = 28732, + [SMALL_STATE(738)] = 28817, + [SMALL_STATE(739)] = 28938, + [SMALL_STATE(740)] = 29059, + [SMALL_STATE(741)] = 29180, + [SMALL_STATE(742)] = 29269, + [SMALL_STATE(743)] = 29390, + [SMALL_STATE(744)] = 29487, + [SMALL_STATE(745)] = 29584, + [SMALL_STATE(746)] = 29701, + [SMALL_STATE(747)] = 29818, + [SMALL_STATE(748)] = 29913, + [SMALL_STATE(749)] = 30030, + [SMALL_STATE(750)] = 30147, + [SMALL_STATE(751)] = 30238, + [SMALL_STATE(752)] = 30355, + [SMALL_STATE(753)] = 30476, + [SMALL_STATE(754)] = 30565, + [SMALL_STATE(755)] = 30650, + [SMALL_STATE(756)] = 30735, + [SMALL_STATE(757)] = 30852, + [SMALL_STATE(758)] = 30969, + [SMALL_STATE(759)] = 31086, + [SMALL_STATE(760)] = 31203, + [SMALL_STATE(761)] = 31320, + [SMALL_STATE(762)] = 31437, + [SMALL_STATE(763)] = 31558, + [SMALL_STATE(764)] = 31675, + [SMALL_STATE(765)] = 31792, + [SMALL_STATE(766)] = 31909, + [SMALL_STATE(767)] = 32026, + [SMALL_STATE(768)] = 32143, + [SMALL_STATE(769)] = 32260, + [SMALL_STATE(770)] = 32377, + [SMALL_STATE(771)] = 32494, + [SMALL_STATE(772)] = 32611, + [SMALL_STATE(773)] = 32728, + [SMALL_STATE(774)] = 32845, + [SMALL_STATE(775)] = 32962, + [SMALL_STATE(776)] = 33083, + [SMALL_STATE(777)] = 33200, + [SMALL_STATE(778)] = 33317, + [SMALL_STATE(779)] = 33390, + [SMALL_STATE(780)] = 33507, + [SMALL_STATE(781)] = 33624, + [SMALL_STATE(782)] = 33745, + [SMALL_STATE(783)] = 33862, + [SMALL_STATE(784)] = 33979, + [SMALL_STATE(785)] = 34100, + [SMALL_STATE(786)] = 34221, + [SMALL_STATE(787)] = 34338, + [SMALL_STATE(788)] = 34455, + [SMALL_STATE(789)] = 34572, + [SMALL_STATE(790)] = 34689, + [SMALL_STATE(791)] = 34806, + [SMALL_STATE(792)] = 34923, + [SMALL_STATE(793)] = 35040, + [SMALL_STATE(794)] = 35157, + [SMALL_STATE(795)] = 35274, + [SMALL_STATE(796)] = 35395, + [SMALL_STATE(797)] = 35512, + [SMALL_STATE(798)] = 35633, + [SMALL_STATE(799)] = 35750, + [SMALL_STATE(800)] = 35867, + [SMALL_STATE(801)] = 35940, + [SMALL_STATE(802)] = 36057, + [SMALL_STATE(803)] = 36174, + [SMALL_STATE(804)] = 36291, + [SMALL_STATE(805)] = 36370, + [SMALL_STATE(806)] = 36487, + [SMALL_STATE(807)] = 36604, + [SMALL_STATE(808)] = 36721, + [SMALL_STATE(809)] = 36842, + [SMALL_STATE(810)] = 36959, + [SMALL_STATE(811)] = 37076, + [SMALL_STATE(812)] = 37197, + [SMALL_STATE(813)] = 37314, + [SMALL_STATE(814)] = 37389, + [SMALL_STATE(815)] = 37462, + [SMALL_STATE(816)] = 37583, + [SMALL_STATE(817)] = 37658, + [SMALL_STATE(818)] = 37731, + [SMALL_STATE(819)] = 37848, + [SMALL_STATE(820)] = 37965, + [SMALL_STATE(821)] = 38039, + [SMALL_STATE(822)] = 38137, + [SMALL_STATE(823)] = 38209, + [SMALL_STATE(824)] = 38291, + [SMALL_STATE(825)] = 38363, + [SMALL_STATE(826)] = 38441, + [SMALL_STATE(827)] = 38549, + [SMALL_STATE(828)] = 38667, + [SMALL_STATE(829)] = 38775, + [SMALL_STATE(830)] = 38849, + [SMALL_STATE(831)] = 38957, + [SMALL_STATE(832)] = 39047, + [SMALL_STATE(833)] = 39125, + [SMALL_STATE(834)] = 39217, + [SMALL_STATE(835)] = 39301, + [SMALL_STATE(836)] = 39375, + [SMALL_STATE(837)] = 39469, + [SMALL_STATE(838)] = 39577, + [SMALL_STATE(839)] = 39673, + [SMALL_STATE(840)] = 39781, + [SMALL_STATE(841)] = 39889, + [SMALL_STATE(842)] = 39971, + [SMALL_STATE(843)] = 40079, + [SMALL_STATE(844)] = 40151, + [SMALL_STATE(845)] = 40227, + [SMALL_STATE(846)] = 40299, + [SMALL_STATE(847)] = 40371, + [SMALL_STATE(848)] = 40477, + [SMALL_STATE(849)] = 40551, + [SMALL_STATE(850)] = 40623, + [SMALL_STATE(851)] = 40731, + [SMALL_STATE(852)] = 40805, + [SMALL_STATE(853)] = 40879, + [SMALL_STATE(854)] = 40987, + [SMALL_STATE(855)] = 41075, + [SMALL_STATE(856)] = 41159, + [SMALL_STATE(857)] = 41267, + [SMALL_STATE(858)] = 41339, + [SMALL_STATE(859)] = 41413, + [SMALL_STATE(860)] = 41485, + [SMALL_STATE(861)] = 41557, + [SMALL_STATE(862)] = 41631, + [SMALL_STATE(863)] = 41703, + [SMALL_STATE(864)] = 41787, + [SMALL_STATE(865)] = 41865, + [SMALL_STATE(866)] = 41949, + [SMALL_STATE(867)] = 42055, + [SMALL_STATE(868)] = 42163, + [SMALL_STATE(869)] = 42237, + [SMALL_STATE(870)] = 42309, + [SMALL_STATE(871)] = 42417, + [SMALL_STATE(872)] = 42501, + [SMALL_STATE(873)] = 42573, + [SMALL_STATE(874)] = 42657, + [SMALL_STATE(875)] = 42739, + [SMALL_STATE(876)] = 42823, + [SMALL_STATE(877)] = 42907, + [SMALL_STATE(878)] = 42983, + [SMALL_STATE(879)] = 43055, + [SMALL_STATE(880)] = 43127, + [SMALL_STATE(881)] = 43215, + [SMALL_STATE(882)] = 43287, + [SMALL_STATE(883)] = 43383, + [SMALL_STATE(884)] = 43477, + [SMALL_STATE(885)] = 43569, + [SMALL_STATE(886)] = 43641, + [SMALL_STATE(887)] = 43713, + [SMALL_STATE(888)] = 43785, + [SMALL_STATE(889)] = 43875, + [SMALL_STATE(890)] = 43957, + [SMALL_STATE(891)] = 44031, + [SMALL_STATE(892)] = 44107, + [SMALL_STATE(893)] = 44183, + [SMALL_STATE(894)] = 44261, + [SMALL_STATE(895)] = 44333, + [SMALL_STATE(896)] = 44403, + [SMALL_STATE(897)] = 44477, + [SMALL_STATE(898)] = 44547, + [SMALL_STATE(899)] = 44619, + [SMALL_STATE(900)] = 44695, + [SMALL_STATE(901)] = 44769, + [SMALL_STATE(902)] = 44839, + [SMALL_STATE(903)] = 44911, + [SMALL_STATE(904)] = 44987, + [SMALL_STATE(905)] = 45057, + [SMALL_STATE(906)] = 45131, + [SMALL_STATE(907)] = 45201, + [SMALL_STATE(908)] = 45271, + [SMALL_STATE(909)] = 45341, + [SMALL_STATE(910)] = 45417, + [SMALL_STATE(911)] = 45487, + [SMALL_STATE(912)] = 45557, + [SMALL_STATE(913)] = 45631, + [SMALL_STATE(914)] = 45729, + [SMALL_STATE(915)] = 45821, + [SMALL_STATE(916)] = 45895, + [SMALL_STATE(917)] = 45969, + [SMALL_STATE(918)] = 46041, + [SMALL_STATE(919)] = 46113, + [SMALL_STATE(920)] = 46187, + [SMALL_STATE(921)] = 46257, + [SMALL_STATE(922)] = 46331, + [SMALL_STATE(923)] = 46415, + [SMALL_STATE(924)] = 46487, + [SMALL_STATE(925)] = 46557, + [SMALL_STATE(926)] = 46639, + [SMALL_STATE(927)] = 46723, + [SMALL_STATE(928)] = 46841, + [SMALL_STATE(929)] = 46929, + [SMALL_STATE(930)] = 47001, + [SMALL_STATE(931)] = 47075, + [SMALL_STATE(932)] = 47145, + [SMALL_STATE(933)] = 47241, + [SMALL_STATE(934)] = 47335, + [SMALL_STATE(935)] = 47409, + [SMALL_STATE(936)] = 47499, + [SMALL_STATE(937)] = 47573, + [SMALL_STATE(938)] = 47647, + [SMALL_STATE(939)] = 47731, + [SMALL_STATE(940)] = 47807, + [SMALL_STATE(941)] = 47877, + [SMALL_STATE(942)] = 47949, + [SMALL_STATE(943)] = 48021, + [SMALL_STATE(944)] = 48091, + [SMALL_STATE(945)] = 48171, + [SMALL_STATE(946)] = 48247, + [SMALL_STATE(947)] = 48319, + [SMALL_STATE(948)] = 48391, + [SMALL_STATE(949)] = 48463, + [SMALL_STATE(950)] = 48539, + [SMALL_STATE(951)] = 48617, + [SMALL_STATE(952)] = 48689, + [SMALL_STATE(953)] = 48763, + [SMALL_STATE(954)] = 48867, + [SMALL_STATE(955)] = 48939, + [SMALL_STATE(956)] = 49019, + [SMALL_STATE(957)] = 49103, + [SMALL_STATE(958)] = 49173, + [SMALL_STATE(959)] = 49279, + [SMALL_STATE(960)] = 49355, + [SMALL_STATE(961)] = 49429, + [SMALL_STATE(962)] = 49503, + [SMALL_STATE(963)] = 49577, + [SMALL_STATE(964)] = 49647, + [SMALL_STATE(965)] = 49731, + [SMALL_STATE(966)] = 49801, + [SMALL_STATE(967)] = 49871, + [SMALL_STATE(968)] = 49941, + [SMALL_STATE(969)] = 50039, + [SMALL_STATE(970)] = 50109, + [SMALL_STATE(971)] = 50183, + [SMALL_STATE(972)] = 50261, + [SMALL_STATE(973)] = 50331, + [SMALL_STATE(974)] = 50413, + [SMALL_STATE(975)] = 50487, + [SMALL_STATE(976)] = 50571, + [SMALL_STATE(977)] = 50645, + [SMALL_STATE(978)] = 50729, + [SMALL_STATE(979)] = 50801, + [SMALL_STATE(980)] = 50889, + [SMALL_STATE(981)] = 50985, + [SMALL_STATE(982)] = 51079, + [SMALL_STATE(983)] = 51171, + [SMALL_STATE(984)] = 51261, + [SMALL_STATE(985)] = 51339, + [SMALL_STATE(986)] = 51413, + [SMALL_STATE(987)] = 51483, + [SMALL_STATE(988)] = 51559, + [SMALL_STATE(989)] = 51657, + [SMALL_STATE(990)] = 51761, + [SMALL_STATE(991)] = 51879, + [SMALL_STATE(992)] = 51949, + [SMALL_STATE(993)] = 52027, + [SMALL_STATE(994)] = 52133, + [SMALL_STATE(995)] = 52239, + [SMALL_STATE(996)] = 52323, + [SMALL_STATE(997)] = 52395, + [SMALL_STATE(998)] = 52467, + [SMALL_STATE(999)] = 52539, + [SMALL_STATE(1000)] = 52611, + [SMALL_STATE(1001)] = 52683, + [SMALL_STATE(1002)] = 52755, + [SMALL_STATE(1003)] = 52825, + [SMALL_STATE(1004)] = 52931, + [SMALL_STATE(1005)] = 53003, + [SMALL_STATE(1006)] = 53118, + [SMALL_STATE(1007)] = 53233, + [SMALL_STATE(1008)] = 53348, + [SMALL_STATE(1009)] = 53463, + [SMALL_STATE(1010)] = 53578, + [SMALL_STATE(1011)] = 53693, + [SMALL_STATE(1012)] = 53808, + [SMALL_STATE(1013)] = 53923, + [SMALL_STATE(1014)] = 54038, + [SMALL_STATE(1015)] = 54153, + [SMALL_STATE(1016)] = 54268, + [SMALL_STATE(1017)] = 54383, + [SMALL_STATE(1018)] = 54498, + [SMALL_STATE(1019)] = 54613, + [SMALL_STATE(1020)] = 54728, + [SMALL_STATE(1021)] = 54843, + [SMALL_STATE(1022)] = 54958, + [SMALL_STATE(1023)] = 55073, + [SMALL_STATE(1024)] = 55188, + [SMALL_STATE(1025)] = 55303, + [SMALL_STATE(1026)] = 55418, + [SMALL_STATE(1027)] = 55533, + [SMALL_STATE(1028)] = 55648, + [SMALL_STATE(1029)] = 55763, + [SMALL_STATE(1030)] = 55878, + [SMALL_STATE(1031)] = 55993, + [SMALL_STATE(1032)] = 56108, + [SMALL_STATE(1033)] = 56223, + [SMALL_STATE(1034)] = 56338, + [SMALL_STATE(1035)] = 56453, + [SMALL_STATE(1036)] = 56568, + [SMALL_STATE(1037)] = 56683, + [SMALL_STATE(1038)] = 56798, + [SMALL_STATE(1039)] = 56913, + [SMALL_STATE(1040)] = 57028, + [SMALL_STATE(1041)] = 57143, + [SMALL_STATE(1042)] = 57258, + [SMALL_STATE(1043)] = 57373, + [SMALL_STATE(1044)] = 57488, + [SMALL_STATE(1045)] = 57603, + [SMALL_STATE(1046)] = 57718, + [SMALL_STATE(1047)] = 57833, + [SMALL_STATE(1048)] = 57948, + [SMALL_STATE(1049)] = 58063, + [SMALL_STATE(1050)] = 58178, + [SMALL_STATE(1051)] = 58293, + [SMALL_STATE(1052)] = 58408, + [SMALL_STATE(1053)] = 58523, + [SMALL_STATE(1054)] = 58638, + [SMALL_STATE(1055)] = 58753, + [SMALL_STATE(1056)] = 58862, + [SMALL_STATE(1057)] = 58977, + [SMALL_STATE(1058)] = 59092, + [SMALL_STATE(1059)] = 59207, + [SMALL_STATE(1060)] = 59322, + [SMALL_STATE(1061)] = 59437, + [SMALL_STATE(1062)] = 59552, + [SMALL_STATE(1063)] = 59667, + [SMALL_STATE(1064)] = 59782, + [SMALL_STATE(1065)] = 59897, + [SMALL_STATE(1066)] = 60012, + [SMALL_STATE(1067)] = 60127, + [SMALL_STATE(1068)] = 60242, + [SMALL_STATE(1069)] = 60357, + [SMALL_STATE(1070)] = 60472, + [SMALL_STATE(1071)] = 60587, + [SMALL_STATE(1072)] = 60702, + [SMALL_STATE(1073)] = 60817, + [SMALL_STATE(1074)] = 60932, + [SMALL_STATE(1075)] = 61047, + [SMALL_STATE(1076)] = 61162, + [SMALL_STATE(1077)] = 61277, + [SMALL_STATE(1078)] = 61392, + [SMALL_STATE(1079)] = 61507, + [SMALL_STATE(1080)] = 61622, + [SMALL_STATE(1081)] = 61737, + [SMALL_STATE(1082)] = 61806, + [SMALL_STATE(1083)] = 61921, + [SMALL_STATE(1084)] = 62036, + [SMALL_STATE(1085)] = 62151, + [SMALL_STATE(1086)] = 62266, + [SMALL_STATE(1087)] = 62381, + [SMALL_STATE(1088)] = 62496, + [SMALL_STATE(1089)] = 62611, + [SMALL_STATE(1090)] = 62726, + [SMALL_STATE(1091)] = 62841, + [SMALL_STATE(1092)] = 62956, + [SMALL_STATE(1093)] = 63071, + [SMALL_STATE(1094)] = 63186, + [SMALL_STATE(1095)] = 63301, + [SMALL_STATE(1096)] = 63416, + [SMALL_STATE(1097)] = 63531, + [SMALL_STATE(1098)] = 63646, + [SMALL_STATE(1099)] = 63761, + [SMALL_STATE(1100)] = 63876, + [SMALL_STATE(1101)] = 63991, + [SMALL_STATE(1102)] = 64106, + [SMALL_STATE(1103)] = 64221, + [SMALL_STATE(1104)] = 64336, + [SMALL_STATE(1105)] = 64451, + [SMALL_STATE(1106)] = 64566, + [SMALL_STATE(1107)] = 64681, + [SMALL_STATE(1108)] = 64796, + [SMALL_STATE(1109)] = 64911, + [SMALL_STATE(1110)] = 65026, + [SMALL_STATE(1111)] = 65141, + [SMALL_STATE(1112)] = 65256, + [SMALL_STATE(1113)] = 65371, + [SMALL_STATE(1114)] = 65486, + [SMALL_STATE(1115)] = 65601, + [SMALL_STATE(1116)] = 65716, + [SMALL_STATE(1117)] = 65785, + [SMALL_STATE(1118)] = 65900, + [SMALL_STATE(1119)] = 66015, + [SMALL_STATE(1120)] = 66130, + [SMALL_STATE(1121)] = 66245, + [SMALL_STATE(1122)] = 66360, + [SMALL_STATE(1123)] = 66475, + [SMALL_STATE(1124)] = 66590, + [SMALL_STATE(1125)] = 66705, + [SMALL_STATE(1126)] = 66820, + [SMALL_STATE(1127)] = 66935, + [SMALL_STATE(1128)] = 67050, + [SMALL_STATE(1129)] = 67165, + [SMALL_STATE(1130)] = 67280, + [SMALL_STATE(1131)] = 67395, + [SMALL_STATE(1132)] = 67510, + [SMALL_STATE(1133)] = 67625, + [SMALL_STATE(1134)] = 67740, + [SMALL_STATE(1135)] = 67855, + [SMALL_STATE(1136)] = 67970, + [SMALL_STATE(1137)] = 68085, + [SMALL_STATE(1138)] = 68200, + [SMALL_STATE(1139)] = 68315, + [SMALL_STATE(1140)] = 68430, + [SMALL_STATE(1141)] = 68545, + [SMALL_STATE(1142)] = 68660, + [SMALL_STATE(1143)] = 68775, + [SMALL_STATE(1144)] = 68890, + [SMALL_STATE(1145)] = 69005, + [SMALL_STATE(1146)] = 69120, + [SMALL_STATE(1147)] = 69235, + [SMALL_STATE(1148)] = 69350, + [SMALL_STATE(1149)] = 69465, + [SMALL_STATE(1150)] = 69580, + [SMALL_STATE(1151)] = 69695, + [SMALL_STATE(1152)] = 69810, + [SMALL_STATE(1153)] = 69925, + [SMALL_STATE(1154)] = 70040, + [SMALL_STATE(1155)] = 70155, + [SMALL_STATE(1156)] = 70270, + [SMALL_STATE(1157)] = 70385, + [SMALL_STATE(1158)] = 70500, + [SMALL_STATE(1159)] = 70615, + [SMALL_STATE(1160)] = 70730, + [SMALL_STATE(1161)] = 70845, + [SMALL_STATE(1162)] = 70960, + [SMALL_STATE(1163)] = 71075, + [SMALL_STATE(1164)] = 71190, + [SMALL_STATE(1165)] = 71305, + [SMALL_STATE(1166)] = 71420, + [SMALL_STATE(1167)] = 71535, + [SMALL_STATE(1168)] = 71632, + [SMALL_STATE(1169)] = 71747, + [SMALL_STATE(1170)] = 71862, + [SMALL_STATE(1171)] = 71977, + [SMALL_STATE(1172)] = 72092, + [SMALL_STATE(1173)] = 72207, + [SMALL_STATE(1174)] = 72280, + [SMALL_STATE(1175)] = 72395, + [SMALL_STATE(1176)] = 72510, + [SMALL_STATE(1177)] = 72625, + [SMALL_STATE(1178)] = 72740, + [SMALL_STATE(1179)] = 72855, + [SMALL_STATE(1180)] = 72970, + [SMALL_STATE(1181)] = 73043, + [SMALL_STATE(1182)] = 73158, + [SMALL_STATE(1183)] = 73241, + [SMALL_STATE(1184)] = 73356, + [SMALL_STATE(1185)] = 73429, + [SMALL_STATE(1186)] = 73502, + [SMALL_STATE(1187)] = 73617, + [SMALL_STATE(1188)] = 73732, + [SMALL_STATE(1189)] = 73847, + [SMALL_STATE(1190)] = 73962, + [SMALL_STATE(1191)] = 74077, + [SMALL_STATE(1192)] = 74192, + [SMALL_STATE(1193)] = 74307, + [SMALL_STATE(1194)] = 74422, + [SMALL_STATE(1195)] = 74519, + [SMALL_STATE(1196)] = 74634, + [SMALL_STATE(1197)] = 74713, + [SMALL_STATE(1198)] = 74828, + [SMALL_STATE(1199)] = 74943, + [SMALL_STATE(1200)] = 75058, + [SMALL_STATE(1201)] = 75173, + [SMALL_STATE(1202)] = 75288, + [SMALL_STATE(1203)] = 75403, + [SMALL_STATE(1204)] = 75518, + [SMALL_STATE(1205)] = 75633, + [SMALL_STATE(1206)] = 75748, + [SMALL_STATE(1207)] = 75817, + [SMALL_STATE(1208)] = 75932, + [SMALL_STATE(1209)] = 76047, + [SMALL_STATE(1210)] = 76162, + [SMALL_STATE(1211)] = 76277, + [SMALL_STATE(1212)] = 76350, + [SMALL_STATE(1213)] = 76425, + [SMALL_STATE(1214)] = 76498, + [SMALL_STATE(1215)] = 76613, + [SMALL_STATE(1216)] = 76728, + [SMALL_STATE(1217)] = 76843, + [SMALL_STATE(1218)] = 76958, + [SMALL_STATE(1219)] = 77033, + [SMALL_STATE(1220)] = 77148, + [SMALL_STATE(1221)] = 77263, + [SMALL_STATE(1222)] = 77378, + [SMALL_STATE(1223)] = 77493, + [SMALL_STATE(1224)] = 77608, + [SMALL_STATE(1225)] = 77723, + [SMALL_STATE(1226)] = 77838, + [SMALL_STATE(1227)] = 77953, + [SMALL_STATE(1228)] = 78068, + [SMALL_STATE(1229)] = 78137, + [SMALL_STATE(1230)] = 78252, + [SMALL_STATE(1231)] = 78367, + [SMALL_STATE(1232)] = 78482, + [SMALL_STATE(1233)] = 78597, + [SMALL_STATE(1234)] = 78712, + [SMALL_STATE(1235)] = 78827, + [SMALL_STATE(1236)] = 78942, + [SMALL_STATE(1237)] = 79057, + [SMALL_STATE(1238)] = 79172, + [SMALL_STATE(1239)] = 79241, + [SMALL_STATE(1240)] = 79356, + [SMALL_STATE(1241)] = 79471, + [SMALL_STATE(1242)] = 79540, + [SMALL_STATE(1243)] = 79655, + [SMALL_STATE(1244)] = 79770, + [SMALL_STATE(1245)] = 79885, + [SMALL_STATE(1246)] = 80000, + [SMALL_STATE(1247)] = 80115, + [SMALL_STATE(1248)] = 80230, + [SMALL_STATE(1249)] = 80345, + [SMALL_STATE(1250)] = 80460, + [SMALL_STATE(1251)] = 80575, + [SMALL_STATE(1252)] = 80648, + [SMALL_STATE(1253)] = 80763, + [SMALL_STATE(1254)] = 80832, + [SMALL_STATE(1255)] = 80901, + [SMALL_STATE(1256)] = 81016, + [SMALL_STATE(1257)] = 81085, + [SMALL_STATE(1258)] = 81200, + [SMALL_STATE(1259)] = 81315, + [SMALL_STATE(1260)] = 81430, + [SMALL_STATE(1261)] = 81545, + [SMALL_STATE(1262)] = 81660, + [SMALL_STATE(1263)] = 81775, + [SMALL_STATE(1264)] = 81890, + [SMALL_STATE(1265)] = 82005, + [SMALL_STATE(1266)] = 82120, + [SMALL_STATE(1267)] = 82235, + [SMALL_STATE(1268)] = 82350, + [SMALL_STATE(1269)] = 82465, + [SMALL_STATE(1270)] = 82580, + [SMALL_STATE(1271)] = 82695, + [SMALL_STATE(1272)] = 82810, + [SMALL_STATE(1273)] = 82925, + [SMALL_STATE(1274)] = 83040, + [SMALL_STATE(1275)] = 83155, + [SMALL_STATE(1276)] = 83270, + [SMALL_STATE(1277)] = 83339, + [SMALL_STATE(1278)] = 83410, + [SMALL_STATE(1279)] = 83481, + [SMALL_STATE(1280)] = 83596, + [SMALL_STATE(1281)] = 83711, + [SMALL_STATE(1282)] = 83826, + [SMALL_STATE(1283)] = 83941, + [SMALL_STATE(1284)] = 84056, + [SMALL_STATE(1285)] = 84171, + [SMALL_STATE(1286)] = 84286, + [SMALL_STATE(1287)] = 84401, + [SMALL_STATE(1288)] = 84516, + [SMALL_STATE(1289)] = 84631, + [SMALL_STATE(1290)] = 84746, + [SMALL_STATE(1291)] = 84861, + [SMALL_STATE(1292)] = 84976, + [SMALL_STATE(1293)] = 85091, + [SMALL_STATE(1294)] = 85206, + [SMALL_STATE(1295)] = 85321, + [SMALL_STATE(1296)] = 85436, + [SMALL_STATE(1297)] = 85551, + [SMALL_STATE(1298)] = 85666, + [SMALL_STATE(1299)] = 85781, + [SMALL_STATE(1300)] = 85896, + [SMALL_STATE(1301)] = 86011, + [SMALL_STATE(1302)] = 86126, + [SMALL_STATE(1303)] = 86241, + [SMALL_STATE(1304)] = 86356, + [SMALL_STATE(1305)] = 86471, + [SMALL_STATE(1306)] = 86586, + [SMALL_STATE(1307)] = 86701, + [SMALL_STATE(1308)] = 86816, + [SMALL_STATE(1309)] = 86931, + [SMALL_STATE(1310)] = 87046, + [SMALL_STATE(1311)] = 87161, + [SMALL_STATE(1312)] = 87276, + [SMALL_STATE(1313)] = 87391, + [SMALL_STATE(1314)] = 87506, + [SMALL_STATE(1315)] = 87621, + [SMALL_STATE(1316)] = 87736, + [SMALL_STATE(1317)] = 87851, + [SMALL_STATE(1318)] = 87966, + [SMALL_STATE(1319)] = 88035, + [SMALL_STATE(1320)] = 88104, + [SMALL_STATE(1321)] = 88219, + [SMALL_STATE(1322)] = 88334, + [SMALL_STATE(1323)] = 88405, + [SMALL_STATE(1324)] = 88476, + [SMALL_STATE(1325)] = 88545, + [SMALL_STATE(1326)] = 88660, + [SMALL_STATE(1327)] = 88733, + [SMALL_STATE(1328)] = 88848, + [SMALL_STATE(1329)] = 88917, + [SMALL_STATE(1330)] = 88986, + [SMALL_STATE(1331)] = 89055, + [SMALL_STATE(1332)] = 89124, + [SMALL_STATE(1333)] = 89239, + [SMALL_STATE(1334)] = 89308, + [SMALL_STATE(1335)] = 89423, + [SMALL_STATE(1336)] = 89492, + [SMALL_STATE(1337)] = 89607, + [SMALL_STATE(1338)] = 89676, + [SMALL_STATE(1339)] = 89791, + [SMALL_STATE(1340)] = 89906, + [SMALL_STATE(1341)] = 89975, + [SMALL_STATE(1342)] = 90090, + [SMALL_STATE(1343)] = 90205, + [SMALL_STATE(1344)] = 90278, + [SMALL_STATE(1345)] = 90347, + [SMALL_STATE(1346)] = 90462, + [SMALL_STATE(1347)] = 90531, + [SMALL_STATE(1348)] = 90600, + [SMALL_STATE(1349)] = 90715, + [SMALL_STATE(1350)] = 90784, + [SMALL_STATE(1351)] = 90855, + [SMALL_STATE(1352)] = 90970, + [SMALL_STATE(1353)] = 91041, + [SMALL_STATE(1354)] = 91156, + [SMALL_STATE(1355)] = 91271, + [SMALL_STATE(1356)] = 91386, + [SMALL_STATE(1357)] = 91501, + [SMALL_STATE(1358)] = 91570, + [SMALL_STATE(1359)] = 91641, + [SMALL_STATE(1360)] = 91712, + [SMALL_STATE(1361)] = 91781, + [SMALL_STATE(1362)] = 91854, + [SMALL_STATE(1363)] = 91969, + [SMALL_STATE(1364)] = 92084, + [SMALL_STATE(1365)] = 92199, + [SMALL_STATE(1366)] = 92268, + [SMALL_STATE(1367)] = 92383, + [SMALL_STATE(1368)] = 92498, + [SMALL_STATE(1369)] = 92613, + [SMALL_STATE(1370)] = 92728, + [SMALL_STATE(1371)] = 92843, + [SMALL_STATE(1372)] = 92958, + [SMALL_STATE(1373)] = 93073, + [SMALL_STATE(1374)] = 93188, + [SMALL_STATE(1375)] = 93257, + [SMALL_STATE(1376)] = 93326, + [SMALL_STATE(1377)] = 93395, + [SMALL_STATE(1378)] = 93510, + [SMALL_STATE(1379)] = 93625, + [SMALL_STATE(1380)] = 93694, + [SMALL_STATE(1381)] = 93763, + [SMALL_STATE(1382)] = 93832, + [SMALL_STATE(1383)] = 93901, + [SMALL_STATE(1384)] = 93970, + [SMALL_STATE(1385)] = 94043, + [SMALL_STATE(1386)] = 94158, + [SMALL_STATE(1387)] = 94231, + [SMALL_STATE(1388)] = 94302, + [SMALL_STATE(1389)] = 94371, + [SMALL_STATE(1390)] = 94486, + [SMALL_STATE(1391)] = 94555, + [SMALL_STATE(1392)] = 94628, + [SMALL_STATE(1393)] = 94743, + [SMALL_STATE(1394)] = 94858, + [SMALL_STATE(1395)] = 94973, + [SMALL_STATE(1396)] = 95044, + [SMALL_STATE(1397)] = 95123, + [SMALL_STATE(1398)] = 95192, + [SMALL_STATE(1399)] = 95267, + [SMALL_STATE(1400)] = 95340, + [SMALL_STATE(1401)] = 95415, + [SMALL_STATE(1402)] = 95484, + [SMALL_STATE(1403)] = 95599, + [SMALL_STATE(1404)] = 95714, + [SMALL_STATE(1405)] = 95783, + [SMALL_STATE(1406)] = 95854, + [SMALL_STATE(1407)] = 95969, + [SMALL_STATE(1408)] = 96038, + [SMALL_STATE(1409)] = 96107, + [SMALL_STATE(1410)] = 96176, + [SMALL_STATE(1411)] = 96291, + [SMALL_STATE(1412)] = 96362, + [SMALL_STATE(1413)] = 96433, + [SMALL_STATE(1414)] = 96502, + [SMALL_STATE(1415)] = 96617, + [SMALL_STATE(1416)] = 96732, + [SMALL_STATE(1417)] = 96847, + [SMALL_STATE(1418)] = 96962, + [SMALL_STATE(1419)] = 97077, + [SMALL_STATE(1420)] = 97148, + [SMALL_STATE(1421)] = 97217, + [SMALL_STATE(1422)] = 97286, + [SMALL_STATE(1423)] = 97355, + [SMALL_STATE(1424)] = 97424, + [SMALL_STATE(1425)] = 97539, + [SMALL_STATE(1426)] = 97654, + [SMALL_STATE(1427)] = 97769, + [SMALL_STATE(1428)] = 97884, + [SMALL_STATE(1429)] = 97999, + [SMALL_STATE(1430)] = 98114, + [SMALL_STATE(1431)] = 98183, + [SMALL_STATE(1432)] = 98252, + [SMALL_STATE(1433)] = 98367, + [SMALL_STATE(1434)] = 98482, + [SMALL_STATE(1435)] = 98597, + [SMALL_STATE(1436)] = 98668, + [SMALL_STATE(1437)] = 98783, + [SMALL_STATE(1438)] = 98898, + [SMALL_STATE(1439)] = 99013, + [SMALL_STATE(1440)] = 99084, + [SMALL_STATE(1441)] = 99153, + [SMALL_STATE(1442)] = 99222, + [SMALL_STATE(1443)] = 99291, + [SMALL_STATE(1444)] = 99362, + [SMALL_STATE(1445)] = 99477, + [SMALL_STATE(1446)] = 99546, + [SMALL_STATE(1447)] = 99615, + [SMALL_STATE(1448)] = 99730, + [SMALL_STATE(1449)] = 99845, + [SMALL_STATE(1450)] = 99914, + [SMALL_STATE(1451)] = 100029, + [SMALL_STATE(1452)] = 100098, + [SMALL_STATE(1453)] = 100213, + [SMALL_STATE(1454)] = 100328, + [SMALL_STATE(1455)] = 100443, + [SMALL_STATE(1456)] = 100558, + [SMALL_STATE(1457)] = 100627, + [SMALL_STATE(1458)] = 100696, + [SMALL_STATE(1459)] = 100765, + [SMALL_STATE(1460)] = 100834, + [SMALL_STATE(1461)] = 100903, + [SMALL_STATE(1462)] = 100972, + [SMALL_STATE(1463)] = 101087, + [SMALL_STATE(1464)] = 101202, + [SMALL_STATE(1465)] = 101317, + [SMALL_STATE(1466)] = 101432, + [SMALL_STATE(1467)] = 101547, + [SMALL_STATE(1468)] = 101616, + [SMALL_STATE(1469)] = 101685, + [SMALL_STATE(1470)] = 101754, + [SMALL_STATE(1471)] = 101823, + [SMALL_STATE(1472)] = 101938, + [SMALL_STATE(1473)] = 102007, + [SMALL_STATE(1474)] = 102122, + [SMALL_STATE(1475)] = 102191, + [SMALL_STATE(1476)] = 102260, + [SMALL_STATE(1477)] = 102329, + [SMALL_STATE(1478)] = 102398, + [SMALL_STATE(1479)] = 102467, + [SMALL_STATE(1480)] = 102536, + [SMALL_STATE(1481)] = 102651, + [SMALL_STATE(1482)] = 102766, + [SMALL_STATE(1483)] = 102835, + [SMALL_STATE(1484)] = 102950, + [SMALL_STATE(1485)] = 103065, + [SMALL_STATE(1486)] = 103134, + [SMALL_STATE(1487)] = 103203, + [SMALL_STATE(1488)] = 103318, + [SMALL_STATE(1489)] = 103433, + [SMALL_STATE(1490)] = 103548, + [SMALL_STATE(1491)] = 103617, + [SMALL_STATE(1492)] = 103732, + [SMALL_STATE(1493)] = 103847, + [SMALL_STATE(1494)] = 103962, + [SMALL_STATE(1495)] = 104077, + [SMALL_STATE(1496)] = 104192, + [SMALL_STATE(1497)] = 104307, + [SMALL_STATE(1498)] = 104376, + [SMALL_STATE(1499)] = 104491, + [SMALL_STATE(1500)] = 104606, + [SMALL_STATE(1501)] = 104721, + [SMALL_STATE(1502)] = 104836, + [SMALL_STATE(1503)] = 104951, + [SMALL_STATE(1504)] = 105022, + [SMALL_STATE(1505)] = 105139, + [SMALL_STATE(1506)] = 105220, + [SMALL_STATE(1507)] = 105335, + [SMALL_STATE(1508)] = 105450, + [SMALL_STATE(1509)] = 105565, + [SMALL_STATE(1510)] = 105680, + [SMALL_STATE(1511)] = 105795, + [SMALL_STATE(1512)] = 105910, + [SMALL_STATE(1513)] = 106025, + [SMALL_STATE(1514)] = 106140, + [SMALL_STATE(1515)] = 106255, + [SMALL_STATE(1516)] = 106370, + [SMALL_STATE(1517)] = 106485, + [SMALL_STATE(1518)] = 106600, + [SMALL_STATE(1519)] = 106715, + [SMALL_STATE(1520)] = 106830, + [SMALL_STATE(1521)] = 106901, + [SMALL_STATE(1522)] = 107016, + [SMALL_STATE(1523)] = 107131, + [SMALL_STATE(1524)] = 107246, + [SMALL_STATE(1525)] = 107361, + [SMALL_STATE(1526)] = 107430, + [SMALL_STATE(1527)] = 107545, + [SMALL_STATE(1528)] = 107660, + [SMALL_STATE(1529)] = 107775, + [SMALL_STATE(1530)] = 107890, + [SMALL_STATE(1531)] = 108005, + [SMALL_STATE(1532)] = 108120, + [SMALL_STATE(1533)] = 108235, + [SMALL_STATE(1534)] = 108350, + [SMALL_STATE(1535)] = 108465, + [SMALL_STATE(1536)] = 108580, + [SMALL_STATE(1537)] = 108695, + [SMALL_STATE(1538)] = 108810, + [SMALL_STATE(1539)] = 108925, + [SMALL_STATE(1540)] = 109040, + [SMALL_STATE(1541)] = 109109, + [SMALL_STATE(1542)] = 109224, + [SMALL_STATE(1543)] = 109339, + [SMALL_STATE(1544)] = 109410, + [SMALL_STATE(1545)] = 109525, + [SMALL_STATE(1546)] = 109640, + [SMALL_STATE(1547)] = 109755, + [SMALL_STATE(1548)] = 109870, + [SMALL_STATE(1549)] = 109985, + [SMALL_STATE(1550)] = 110100, + [SMALL_STATE(1551)] = 110215, + [SMALL_STATE(1552)] = 110330, + [SMALL_STATE(1553)] = 110445, + [SMALL_STATE(1554)] = 110560, + [SMALL_STATE(1555)] = 110675, + [SMALL_STATE(1556)] = 110790, + [SMALL_STATE(1557)] = 110905, + [SMALL_STATE(1558)] = 111020, + [SMALL_STATE(1559)] = 111135, + [SMALL_STATE(1560)] = 111250, + [SMALL_STATE(1561)] = 111365, + [SMALL_STATE(1562)] = 111480, + [SMALL_STATE(1563)] = 111563, + [SMALL_STATE(1564)] = 111678, + [SMALL_STATE(1565)] = 111761, + [SMALL_STATE(1566)] = 111848, + [SMALL_STATE(1567)] = 111963, + [SMALL_STATE(1568)] = 112078, + [SMALL_STATE(1569)] = 112193, + [SMALL_STATE(1570)] = 112308, + [SMALL_STATE(1571)] = 112423, + [SMALL_STATE(1572)] = 112492, + [SMALL_STATE(1573)] = 112607, + [SMALL_STATE(1574)] = 112722, + [SMALL_STATE(1575)] = 112837, + [SMALL_STATE(1576)] = 112952, + [SMALL_STATE(1577)] = 113067, + [SMALL_STATE(1578)] = 113182, + [SMALL_STATE(1579)] = 113297, + [SMALL_STATE(1580)] = 113412, + [SMALL_STATE(1581)] = 113527, + [SMALL_STATE(1582)] = 113642, + [SMALL_STATE(1583)] = 113757, + [SMALL_STATE(1584)] = 113872, + [SMALL_STATE(1585)] = 113987, + [SMALL_STATE(1586)] = 114102, + [SMALL_STATE(1587)] = 114217, + [SMALL_STATE(1588)] = 114332, + [SMALL_STATE(1589)] = 114447, + [SMALL_STATE(1590)] = 114528, + [SMALL_STATE(1591)] = 114599, + [SMALL_STATE(1592)] = 114714, + [SMALL_STATE(1593)] = 114785, + [SMALL_STATE(1594)] = 114900, + [SMALL_STATE(1595)] = 115015, + [SMALL_STATE(1596)] = 115086, + [SMALL_STATE(1597)] = 115201, + [SMALL_STATE(1598)] = 115316, + [SMALL_STATE(1599)] = 115431, + [SMALL_STATE(1600)] = 115502, + [SMALL_STATE(1601)] = 115617, + [SMALL_STATE(1602)] = 115720, + [SMALL_STATE(1603)] = 115835, + [SMALL_STATE(1604)] = 115950, + [SMALL_STATE(1605)] = 116065, + [SMALL_STATE(1606)] = 116180, + [SMALL_STATE(1607)] = 116295, + [SMALL_STATE(1608)] = 116364, + [SMALL_STATE(1609)] = 116479, + [SMALL_STATE(1610)] = 116594, + [SMALL_STATE(1611)] = 116709, + [SMALL_STATE(1612)] = 116824, + [SMALL_STATE(1613)] = 116939, + [SMALL_STATE(1614)] = 117054, + [SMALL_STATE(1615)] = 117169, + [SMALL_STATE(1616)] = 117284, + [SMALL_STATE(1617)] = 117399, + [SMALL_STATE(1618)] = 117514, + [SMALL_STATE(1619)] = 117629, + [SMALL_STATE(1620)] = 117744, + [SMALL_STATE(1621)] = 117859, + [SMALL_STATE(1622)] = 117974, + [SMALL_STATE(1623)] = 118089, + [SMALL_STATE(1624)] = 118204, + [SMALL_STATE(1625)] = 118273, + [SMALL_STATE(1626)] = 118388, + [SMALL_STATE(1627)] = 118457, + [SMALL_STATE(1628)] = 118572, + [SMALL_STATE(1629)] = 118687, + [SMALL_STATE(1630)] = 118802, + [SMALL_STATE(1631)] = 118917, + [SMALL_STATE(1632)] = 119032, + [SMALL_STATE(1633)] = 119147, + [SMALL_STATE(1634)] = 119242, + [SMALL_STATE(1635)] = 119357, + [SMALL_STATE(1636)] = 119472, + [SMALL_STATE(1637)] = 119587, + [SMALL_STATE(1638)] = 119702, + [SMALL_STATE(1639)] = 119817, + [SMALL_STATE(1640)] = 119932, + [SMALL_STATE(1641)] = 120047, + [SMALL_STATE(1642)] = 120162, + [SMALL_STATE(1643)] = 120277, + [SMALL_STATE(1644)] = 120392, + [SMALL_STATE(1645)] = 120507, + [SMALL_STATE(1646)] = 120622, + [SMALL_STATE(1647)] = 120737, + [SMALL_STATE(1648)] = 120852, + [SMALL_STATE(1649)] = 120967, + [SMALL_STATE(1650)] = 121082, + [SMALL_STATE(1651)] = 121197, + [SMALL_STATE(1652)] = 121312, + [SMALL_STATE(1653)] = 121427, + [SMALL_STATE(1654)] = 121542, + [SMALL_STATE(1655)] = 121657, + [SMALL_STATE(1656)] = 121772, + [SMALL_STATE(1657)] = 121887, + [SMALL_STATE(1658)] = 122002, + [SMALL_STATE(1659)] = 122117, + [SMALL_STATE(1660)] = 122232, + [SMALL_STATE(1661)] = 122347, + [SMALL_STATE(1662)] = 122462, + [SMALL_STATE(1663)] = 122533, + [SMALL_STATE(1664)] = 122648, + [SMALL_STATE(1665)] = 122763, + [SMALL_STATE(1666)] = 122856, + [SMALL_STATE(1667)] = 122971, + [SMALL_STATE(1668)] = 123086, + [SMALL_STATE(1669)] = 123201, + [SMALL_STATE(1670)] = 123316, + [SMALL_STATE(1671)] = 123431, + [SMALL_STATE(1672)] = 123546, + [SMALL_STATE(1673)] = 123661, + [SMALL_STATE(1674)] = 123776, + [SMALL_STATE(1675)] = 123891, + [SMALL_STATE(1676)] = 124006, + [SMALL_STATE(1677)] = 124121, + [SMALL_STATE(1678)] = 124228, + [SMALL_STATE(1679)] = 124343, + [SMALL_STATE(1680)] = 124458, + [SMALL_STATE(1681)] = 124573, + [SMALL_STATE(1682)] = 124688, + [SMALL_STATE(1683)] = 124803, + [SMALL_STATE(1684)] = 124918, + [SMALL_STATE(1685)] = 125033, + [SMALL_STATE(1686)] = 125148, + [SMALL_STATE(1687)] = 125263, + [SMALL_STATE(1688)] = 125332, + [SMALL_STATE(1689)] = 125447, + [SMALL_STATE(1690)] = 125562, + [SMALL_STATE(1691)] = 125677, + [SMALL_STATE(1692)] = 125792, + [SMALL_STATE(1693)] = 125907, + [SMALL_STATE(1694)] = 126022, + [SMALL_STATE(1695)] = 126137, + [SMALL_STATE(1696)] = 126252, + [SMALL_STATE(1697)] = 126367, + [SMALL_STATE(1698)] = 126482, + [SMALL_STATE(1699)] = 126597, + [SMALL_STATE(1700)] = 126712, + [SMALL_STATE(1701)] = 126827, + [SMALL_STATE(1702)] = 126896, + [SMALL_STATE(1703)] = 127011, + [SMALL_STATE(1704)] = 127126, + [SMALL_STATE(1705)] = 127241, + [SMALL_STATE(1706)] = 127356, + [SMALL_STATE(1707)] = 127471, + [SMALL_STATE(1708)] = 127586, + [SMALL_STATE(1709)] = 127701, + [SMALL_STATE(1710)] = 127816, + [SMALL_STATE(1711)] = 127887, + [SMALL_STATE(1712)] = 128002, + [SMALL_STATE(1713)] = 128071, + [SMALL_STATE(1714)] = 128186, + [SMALL_STATE(1715)] = 128301, + [SMALL_STATE(1716)] = 128416, + [SMALL_STATE(1717)] = 128523, + [SMALL_STATE(1718)] = 128630, + [SMALL_STATE(1719)] = 128745, + [SMALL_STATE(1720)] = 128860, + [SMALL_STATE(1721)] = 128975, + [SMALL_STATE(1722)] = 129090, + [SMALL_STATE(1723)] = 129205, + [SMALL_STATE(1724)] = 129320, + [SMALL_STATE(1725)] = 129435, + [SMALL_STATE(1726)] = 129550, + [SMALL_STATE(1727)] = 129665, + [SMALL_STATE(1728)] = 129780, + [SMALL_STATE(1729)] = 129895, + [SMALL_STATE(1730)] = 130010, + [SMALL_STATE(1731)] = 130115, + [SMALL_STATE(1732)] = 130230, + [SMALL_STATE(1733)] = 130345, + [SMALL_STATE(1734)] = 130460, + [SMALL_STATE(1735)] = 130575, + [SMALL_STATE(1736)] = 130644, + [SMALL_STATE(1737)] = 130759, + [SMALL_STATE(1738)] = 130874, + [SMALL_STATE(1739)] = 130989, + [SMALL_STATE(1740)] = 131104, + [SMALL_STATE(1741)] = 131219, + [SMALL_STATE(1742)] = 131334, + [SMALL_STATE(1743)] = 131449, + [SMALL_STATE(1744)] = 131564, + [SMALL_STATE(1745)] = 131679, + [SMALL_STATE(1746)] = 131794, + [SMALL_STATE(1747)] = 131909, + [SMALL_STATE(1748)] = 132024, + [SMALL_STATE(1749)] = 132139, + [SMALL_STATE(1750)] = 132210, + [SMALL_STATE(1751)] = 132325, + [SMALL_STATE(1752)] = 132440, + [SMALL_STATE(1753)] = 132511, + [SMALL_STATE(1754)] = 132626, + [SMALL_STATE(1755)] = 132695, + [SMALL_STATE(1756)] = 132776, + [SMALL_STATE(1757)] = 132891, + [SMALL_STATE(1758)] = 132972, + [SMALL_STATE(1759)] = 133087, + [SMALL_STATE(1760)] = 133202, + [SMALL_STATE(1761)] = 133317, + [SMALL_STATE(1762)] = 133386, + [SMALL_STATE(1763)] = 133501, + [SMALL_STATE(1764)] = 133570, + [SMALL_STATE(1765)] = 133685, + [SMALL_STATE(1766)] = 133754, + [SMALL_STATE(1767)] = 133823, + [SMALL_STATE(1768)] = 133938, + [SMALL_STATE(1769)] = 134007, + [SMALL_STATE(1770)] = 134076, + [SMALL_STATE(1771)] = 134147, + [SMALL_STATE(1772)] = 134216, + [SMALL_STATE(1773)] = 134285, + [SMALL_STATE(1774)] = 134400, + [SMALL_STATE(1775)] = 134515, + [SMALL_STATE(1776)] = 134584, + [SMALL_STATE(1777)] = 134653, + [SMALL_STATE(1778)] = 134768, + [SMALL_STATE(1779)] = 134837, + [SMALL_STATE(1780)] = 134906, + [SMALL_STATE(1781)] = 134975, + [SMALL_STATE(1782)] = 135090, + [SMALL_STATE(1783)] = 135173, + [SMALL_STATE(1784)] = 135288, + [SMALL_STATE(1785)] = 135403, + [SMALL_STATE(1786)] = 135518, + [SMALL_STATE(1787)] = 135633, + [SMALL_STATE(1788)] = 135706, + [SMALL_STATE(1789)] = 135821, + [SMALL_STATE(1790)] = 135936, + [SMALL_STATE(1791)] = 136051, + [SMALL_STATE(1792)] = 136166, + [SMALL_STATE(1793)] = 136281, + [SMALL_STATE(1794)] = 136396, + [SMALL_STATE(1795)] = 136511, + [SMALL_STATE(1796)] = 136626, + [SMALL_STATE(1797)] = 136741, + [SMALL_STATE(1798)] = 136856, + [SMALL_STATE(1799)] = 136971, + [SMALL_STATE(1800)] = 137086, + [SMALL_STATE(1801)] = 137201, + [SMALL_STATE(1802)] = 137316, + [SMALL_STATE(1803)] = 137425, + [SMALL_STATE(1804)] = 137494, + [SMALL_STATE(1805)] = 137609, + [SMALL_STATE(1806)] = 137724, + [SMALL_STATE(1807)] = 137839, + [SMALL_STATE(1808)] = 137954, + [SMALL_STATE(1809)] = 138069, + [SMALL_STATE(1810)] = 138184, + [SMALL_STATE(1811)] = 138299, + [SMALL_STATE(1812)] = 138368, + [SMALL_STATE(1813)] = 138483, + [SMALL_STATE(1814)] = 138598, + [SMALL_STATE(1815)] = 138701, + [SMALL_STATE(1816)] = 138770, + [SMALL_STATE(1817)] = 138885, + [SMALL_STATE(1818)] = 139000, + [SMALL_STATE(1819)] = 139115, + [SMALL_STATE(1820)] = 139230, + [SMALL_STATE(1821)] = 139303, + [SMALL_STATE(1822)] = 139418, + [SMALL_STATE(1823)] = 139489, + [SMALL_STATE(1824)] = 139604, + [SMALL_STATE(1825)] = 139719, + [SMALL_STATE(1826)] = 139834, + [SMALL_STATE(1827)] = 139949, + [SMALL_STATE(1828)] = 140064, + [SMALL_STATE(1829)] = 140179, + [SMALL_STATE(1830)] = 140294, + [SMALL_STATE(1831)] = 140409, + [SMALL_STATE(1832)] = 140492, + [SMALL_STATE(1833)] = 140575, + [SMALL_STATE(1834)] = 140690, + [SMALL_STATE(1835)] = 140777, + [SMALL_STATE(1836)] = 140872, + [SMALL_STATE(1837)] = 140965, + [SMALL_STATE(1838)] = 141056, + [SMALL_STATE(1839)] = 141145, + [SMALL_STATE(1840)] = 141260, + [SMALL_STATE(1841)] = 141375, + [SMALL_STATE(1842)] = 141444, + [SMALL_STATE(1843)] = 141559, + [SMALL_STATE(1844)] = 141674, + [SMALL_STATE(1845)] = 141789, + [SMALL_STATE(1846)] = 141904, + [SMALL_STATE(1847)] = 142019, + [SMALL_STATE(1848)] = 142134, + [SMALL_STATE(1849)] = 142249, + [SMALL_STATE(1850)] = 142364, + [SMALL_STATE(1851)] = 142433, + [SMALL_STATE(1852)] = 142502, + [SMALL_STATE(1853)] = 142617, + [SMALL_STATE(1854)] = 142732, + [SMALL_STATE(1855)] = 142847, + [SMALL_STATE(1856)] = 142962, + [SMALL_STATE(1857)] = 143077, + [SMALL_STATE(1858)] = 143192, + [SMALL_STATE(1859)] = 143307, + [SMALL_STATE(1860)] = 143422, + [SMALL_STATE(1861)] = 143537, + [SMALL_STATE(1862)] = 143652, + [SMALL_STATE(1863)] = 143767, + [SMALL_STATE(1864)] = 143882, + [SMALL_STATE(1865)] = 143997, + [SMALL_STATE(1866)] = 144112, + [SMALL_STATE(1867)] = 144227, + [SMALL_STATE(1868)] = 144296, + [SMALL_STATE(1869)] = 144411, + [SMALL_STATE(1870)] = 144526, + [SMALL_STATE(1871)] = 144641, + [SMALL_STATE(1872)] = 144756, + [SMALL_STATE(1873)] = 144871, + [SMALL_STATE(1874)] = 144940, + [SMALL_STATE(1875)] = 145055, + [SMALL_STATE(1876)] = 145132, + [SMALL_STATE(1877)] = 145247, + [SMALL_STATE(1878)] = 145364, + [SMALL_STATE(1879)] = 145479, + [SMALL_STATE(1880)] = 145594, + [SMALL_STATE(1881)] = 145709, + [SMALL_STATE(1882)] = 145824, + [SMALL_STATE(1883)] = 145939, + [SMALL_STATE(1884)] = 146054, + [SMALL_STATE(1885)] = 146169, + [SMALL_STATE(1886)] = 146260, + [SMALL_STATE(1887)] = 146349, + [SMALL_STATE(1888)] = 146418, + [SMALL_STATE(1889)] = 146533, + [SMALL_STATE(1890)] = 146648, + [SMALL_STATE(1891)] = 146763, + [SMALL_STATE(1892)] = 146878, + [SMALL_STATE(1893)] = 146985, + [SMALL_STATE(1894)] = 147100, + [SMALL_STATE(1895)] = 147177, + [SMALL_STATE(1896)] = 147292, + [SMALL_STATE(1897)] = 147365, + [SMALL_STATE(1898)] = 147444, + [SMALL_STATE(1899)] = 147515, + [SMALL_STATE(1900)] = 147620, + [SMALL_STATE(1901)] = 147735, + [SMALL_STATE(1902)] = 147850, + [SMALL_STATE(1903)] = 147965, + [SMALL_STATE(1904)] = 148034, + [SMALL_STATE(1905)] = 148149, + [SMALL_STATE(1906)] = 148254, + [SMALL_STATE(1907)] = 148327, + [SMALL_STATE(1908)] = 148442, + [SMALL_STATE(1909)] = 148557, + [SMALL_STATE(1910)] = 148672, + [SMALL_STATE(1911)] = 148787, + [SMALL_STATE(1912)] = 148902, + [SMALL_STATE(1913)] = 148971, + [SMALL_STATE(1914)] = 149086, + [SMALL_STATE(1915)] = 149201, + [SMALL_STATE(1916)] = 149316, + [SMALL_STATE(1917)] = 149431, + [SMALL_STATE(1918)] = 149546, + [SMALL_STATE(1919)] = 149661, + [SMALL_STATE(1920)] = 149776, + [SMALL_STATE(1921)] = 149891, + [SMALL_STATE(1922)] = 150006, + [SMALL_STATE(1923)] = 150121, + [SMALL_STATE(1924)] = 150236, + [SMALL_STATE(1925)] = 150351, + [SMALL_STATE(1926)] = 150466, + [SMALL_STATE(1927)] = 150581, + [SMALL_STATE(1928)] = 150696, + [SMALL_STATE(1929)] = 150811, + [SMALL_STATE(1930)] = 150926, + [SMALL_STATE(1931)] = 151041, + [SMALL_STATE(1932)] = 151156, + [SMALL_STATE(1933)] = 151271, + [SMALL_STATE(1934)] = 151386, + [SMALL_STATE(1935)] = 151501, + [SMALL_STATE(1936)] = 151616, + [SMALL_STATE(1937)] = 151731, + [SMALL_STATE(1938)] = 151846, + [SMALL_STATE(1939)] = 151961, + [SMALL_STATE(1940)] = 152076, + [SMALL_STATE(1941)] = 152191, + [SMALL_STATE(1942)] = 152306, + [SMALL_STATE(1943)] = 152421, + [SMALL_STATE(1944)] = 152536, + [SMALL_STATE(1945)] = 152651, + [SMALL_STATE(1946)] = 152766, + [SMALL_STATE(1947)] = 152881, + [SMALL_STATE(1948)] = 152996, + [SMALL_STATE(1949)] = 153111, + [SMALL_STATE(1950)] = 153226, + [SMALL_STATE(1951)] = 153341, + [SMALL_STATE(1952)] = 153456, + [SMALL_STATE(1953)] = 153571, + [SMALL_STATE(1954)] = 153686, + [SMALL_STATE(1955)] = 153801, + [SMALL_STATE(1956)] = 153872, + [SMALL_STATE(1957)] = 153987, + [SMALL_STATE(1958)] = 154102, + [SMALL_STATE(1959)] = 154217, + [SMALL_STATE(1960)] = 154332, + [SMALL_STATE(1961)] = 154447, + [SMALL_STATE(1962)] = 154562, + [SMALL_STATE(1963)] = 154667, + [SMALL_STATE(1964)] = 154782, + [SMALL_STATE(1965)] = 154865, + [SMALL_STATE(1966)] = 154980, + [SMALL_STATE(1967)] = 155095, + [SMALL_STATE(1968)] = 155210, + [SMALL_STATE(1969)] = 155325, + [SMALL_STATE(1970)] = 155440, + [SMALL_STATE(1971)] = 155509, + [SMALL_STATE(1972)] = 155624, + [SMALL_STATE(1973)] = 155693, + [SMALL_STATE(1974)] = 155762, + [SMALL_STATE(1975)] = 155877, + [SMALL_STATE(1976)] = 155992, + [SMALL_STATE(1977)] = 156061, + [SMALL_STATE(1978)] = 156176, + [SMALL_STATE(1979)] = 156291, + [SMALL_STATE(1980)] = 156360, + [SMALL_STATE(1981)] = 156475, + [SMALL_STATE(1982)] = 156556, + [SMALL_STATE(1983)] = 156671, + [SMALL_STATE(1984)] = 156786, + [SMALL_STATE(1985)] = 156901, + [SMALL_STATE(1986)] = 157016, + [SMALL_STATE(1987)] = 157131, + [SMALL_STATE(1988)] = 157246, + [SMALL_STATE(1989)] = 157329, + [SMALL_STATE(1990)] = 157444, + [SMALL_STATE(1991)] = 157559, + [SMALL_STATE(1992)] = 157674, + [SMALL_STATE(1993)] = 157743, + [SMALL_STATE(1994)] = 157858, + [SMALL_STATE(1995)] = 157973, + [SMALL_STATE(1996)] = 158088, + [SMALL_STATE(1997)] = 158203, + [SMALL_STATE(1998)] = 158318, + [SMALL_STATE(1999)] = 158433, + [SMALL_STATE(2000)] = 158548, + [SMALL_STATE(2001)] = 158663, + [SMALL_STATE(2002)] = 158732, + [SMALL_STATE(2003)] = 158847, + [SMALL_STATE(2004)] = 158962, + [SMALL_STATE(2005)] = 159077, + [SMALL_STATE(2006)] = 159192, + [SMALL_STATE(2007)] = 159307, + [SMALL_STATE(2008)] = 159422, + [SMALL_STATE(2009)] = 159527, + [SMALL_STATE(2010)] = 159642, + [SMALL_STATE(2011)] = 159757, + [SMALL_STATE(2012)] = 159872, + [SMALL_STATE(2013)] = 159987, + [SMALL_STATE(2014)] = 160102, + [SMALL_STATE(2015)] = 160217, + [SMALL_STATE(2016)] = 160332, + [SMALL_STATE(2017)] = 160447, + [SMALL_STATE(2018)] = 160524, + [SMALL_STATE(2019)] = 160639, + [SMALL_STATE(2020)] = 160754, + [SMALL_STATE(2021)] = 160869, + [SMALL_STATE(2022)] = 160984, + [SMALL_STATE(2023)] = 161099, + [SMALL_STATE(2024)] = 161214, + [SMALL_STATE(2025)] = 161319, + [SMALL_STATE(2026)] = 161434, + [SMALL_STATE(2027)] = 161537, + [SMALL_STATE(2028)] = 161652, + [SMALL_STATE(2029)] = 161733, + [SMALL_STATE(2030)] = 161848, + [SMALL_STATE(2031)] = 161963, + [SMALL_STATE(2032)] = 162078, + [SMALL_STATE(2033)] = 162193, + [SMALL_STATE(2034)] = 162308, + [SMALL_STATE(2035)] = 162423, + [SMALL_STATE(2036)] = 162538, + [SMALL_STATE(2037)] = 162653, + [SMALL_STATE(2038)] = 162768, + [SMALL_STATE(2039)] = 162883, + [SMALL_STATE(2040)] = 162998, + [SMALL_STATE(2041)] = 163113, + [SMALL_STATE(2042)] = 163216, + [SMALL_STATE(2043)] = 163331, + [SMALL_STATE(2044)] = 163446, + [SMALL_STATE(2045)] = 163561, + [SMALL_STATE(2046)] = 163676, + [SMALL_STATE(2047)] = 163791, + [SMALL_STATE(2048)] = 163906, + [SMALL_STATE(2049)] = 163983, + [SMALL_STATE(2050)] = 164098, + [SMALL_STATE(2051)] = 164213, + [SMALL_STATE(2052)] = 164328, + [SMALL_STATE(2053)] = 164443, + [SMALL_STATE(2054)] = 164558, + [SMALL_STATE(2055)] = 164673, + [SMALL_STATE(2056)] = 164788, + [SMALL_STATE(2057)] = 164859, + [SMALL_STATE(2058)] = 164974, + [SMALL_STATE(2059)] = 165089, + [SMALL_STATE(2060)] = 165204, + [SMALL_STATE(2061)] = 165319, + [SMALL_STATE(2062)] = 165434, + [SMALL_STATE(2063)] = 165549, + [SMALL_STATE(2064)] = 165664, + [SMALL_STATE(2065)] = 165735, + [SMALL_STATE(2066)] = 165850, + [SMALL_STATE(2067)] = 165929, + [SMALL_STATE(2068)] = 166044, + [SMALL_STATE(2069)] = 166159, + [SMALL_STATE(2070)] = 166274, + [SMALL_STATE(2071)] = 166389, + [SMALL_STATE(2072)] = 166504, + [SMALL_STATE(2073)] = 166619, + [SMALL_STATE(2074)] = 166734, + [SMALL_STATE(2075)] = 166849, + [SMALL_STATE(2076)] = 166964, + [SMALL_STATE(2077)] = 167079, + [SMALL_STATE(2078)] = 167194, + [SMALL_STATE(2079)] = 167309, + [SMALL_STATE(2080)] = 167424, + [SMALL_STATE(2081)] = 167539, + [SMALL_STATE(2082)] = 167654, + [SMALL_STATE(2083)] = 167723, + [SMALL_STATE(2084)] = 167838, + [SMALL_STATE(2085)] = 167953, + [SMALL_STATE(2086)] = 168068, + [SMALL_STATE(2087)] = 168183, + [SMALL_STATE(2088)] = 168298, + [SMALL_STATE(2089)] = 168413, + [SMALL_STATE(2090)] = 168528, + [SMALL_STATE(2091)] = 168643, + [SMALL_STATE(2092)] = 168758, + [SMALL_STATE(2093)] = 168873, + [SMALL_STATE(2094)] = 168988, + [SMALL_STATE(2095)] = 169103, + [SMALL_STATE(2096)] = 169218, + [SMALL_STATE(2097)] = 169333, + [SMALL_STATE(2098)] = 169448, + [SMALL_STATE(2099)] = 169563, + [SMALL_STATE(2100)] = 169678, + [SMALL_STATE(2101)] = 169793, + [SMALL_STATE(2102)] = 169862, + [SMALL_STATE(2103)] = 169977, + [SMALL_STATE(2104)] = 170092, + [SMALL_STATE(2105)] = 170207, + [SMALL_STATE(2106)] = 170322, + [SMALL_STATE(2107)] = 170437, + [SMALL_STATE(2108)] = 170552, + [SMALL_STATE(2109)] = 170667, + [SMALL_STATE(2110)] = 170782, + [SMALL_STATE(2111)] = 170897, + [SMALL_STATE(2112)] = 171012, + [SMALL_STATE(2113)] = 171119, + [SMALL_STATE(2114)] = 171226, + [SMALL_STATE(2115)] = 171341, + [SMALL_STATE(2116)] = 171456, + [SMALL_STATE(2117)] = 171571, + [SMALL_STATE(2118)] = 171686, + [SMALL_STATE(2119)] = 171801, + [SMALL_STATE(2120)] = 171916, + [SMALL_STATE(2121)] = 171984, + [SMALL_STATE(2122)] = 172052, + [SMALL_STATE(2123)] = 172120, + [SMALL_STATE(2124)] = 172190, + [SMALL_STATE(2125)] = 172258, + [SMALL_STATE(2126)] = 172328, + [SMALL_STATE(2127)] = 172396, + [SMALL_STATE(2128)] = 172476, + [SMALL_STATE(2129)] = 172544, + [SMALL_STATE(2130)] = 172612, + [SMALL_STATE(2131)] = 172690, + [SMALL_STATE(2132)] = 172758, + [SMALL_STATE(2133)] = 172826, + [SMALL_STATE(2134)] = 172894, + [SMALL_STATE(2135)] = 172962, + [SMALL_STATE(2136)] = 173032, + [SMALL_STATE(2137)] = 173112, + [SMALL_STATE(2138)] = 173182, + [SMALL_STATE(2139)] = 173252, + [SMALL_STATE(2140)] = 173360, + [SMALL_STATE(2141)] = 173428, + [SMALL_STATE(2142)] = 173496, + [SMALL_STATE(2143)] = 173566, + [SMALL_STATE(2144)] = 173634, + [SMALL_STATE(2145)] = 173702, + [SMALL_STATE(2146)] = 173770, + [SMALL_STATE(2147)] = 173838, + [SMALL_STATE(2148)] = 173906, + [SMALL_STATE(2149)] = 173974, + [SMALL_STATE(2150)] = 174044, + [SMALL_STATE(2151)] = 174116, + [SMALL_STATE(2152)] = 174194, + [SMALL_STATE(2153)] = 174266, + [SMALL_STATE(2154)] = 174338, + [SMALL_STATE(2155)] = 174406, + [SMALL_STATE(2156)] = 174474, + [SMALL_STATE(2157)] = 174544, + [SMALL_STATE(2158)] = 174612, + [SMALL_STATE(2159)] = 174680, + [SMALL_STATE(2160)] = 174750, + [SMALL_STATE(2161)] = 174818, + [SMALL_STATE(2162)] = 174890, + [SMALL_STATE(2163)] = 174962, + [SMALL_STATE(2164)] = 175030, + [SMALL_STATE(2165)] = 175098, + [SMALL_STATE(2166)] = 175166, + [SMALL_STATE(2167)] = 175234, + [SMALL_STATE(2168)] = 175302, + [SMALL_STATE(2169)] = 175370, + [SMALL_STATE(2170)] = 175438, + [SMALL_STATE(2171)] = 175506, + [SMALL_STATE(2172)] = 175574, + [SMALL_STATE(2173)] = 175642, + [SMALL_STATE(2174)] = 175710, + [SMALL_STATE(2175)] = 175778, + [SMALL_STATE(2176)] = 175846, + [SMALL_STATE(2177)] = 175914, + [SMALL_STATE(2178)] = 175982, + [SMALL_STATE(2179)] = 176050, + [SMALL_STATE(2180)] = 176118, + [SMALL_STATE(2181)] = 176186, + [SMALL_STATE(2182)] = 176254, + [SMALL_STATE(2183)] = 176322, + [SMALL_STATE(2184)] = 176390, + [SMALL_STATE(2185)] = 176458, + [SMALL_STATE(2186)] = 176526, + [SMALL_STATE(2187)] = 176594, + [SMALL_STATE(2188)] = 176662, + [SMALL_STATE(2189)] = 176730, + [SMALL_STATE(2190)] = 176802, + [SMALL_STATE(2191)] = 176870, + [SMALL_STATE(2192)] = 176940, + [SMALL_STATE(2193)] = 177008, + [SMALL_STATE(2194)] = 177076, + [SMALL_STATE(2195)] = 177144, + [SMALL_STATE(2196)] = 177212, + [SMALL_STATE(2197)] = 177280, + [SMALL_STATE(2198)] = 177348, + [SMALL_STATE(2199)] = 177416, + [SMALL_STATE(2200)] = 177484, + [SMALL_STATE(2201)] = 177552, + [SMALL_STATE(2202)] = 177620, + [SMALL_STATE(2203)] = 177688, + [SMALL_STATE(2204)] = 177760, + [SMALL_STATE(2205)] = 177832, + [SMALL_STATE(2206)] = 177910, + [SMALL_STATE(2207)] = 177978, + [SMALL_STATE(2208)] = 178046, + [SMALL_STATE(2209)] = 178114, + [SMALL_STATE(2210)] = 178182, + [SMALL_STATE(2211)] = 178250, + [SMALL_STATE(2212)] = 178318, + [SMALL_STATE(2213)] = 178386, + [SMALL_STATE(2214)] = 178456, + [SMALL_STATE(2215)] = 178524, + [SMALL_STATE(2216)] = 178592, + [SMALL_STATE(2217)] = 178660, + [SMALL_STATE(2218)] = 178728, + [SMALL_STATE(2219)] = 178796, + [SMALL_STATE(2220)] = 178864, + [SMALL_STATE(2221)] = 178932, + [SMALL_STATE(2222)] = 179000, + [SMALL_STATE(2223)] = 179068, + [SMALL_STATE(2224)] = 179136, + [SMALL_STATE(2225)] = 179206, + [SMALL_STATE(2226)] = 179310, + [SMALL_STATE(2227)] = 179378, + [SMALL_STATE(2228)] = 179448, + [SMALL_STATE(2229)] = 179516, + [SMALL_STATE(2230)] = 179584, + [SMALL_STATE(2231)] = 179652, + [SMALL_STATE(2232)] = 179720, + [SMALL_STATE(2233)] = 179788, + [SMALL_STATE(2234)] = 179856, + [SMALL_STATE(2235)] = 179924, + [SMALL_STATE(2236)] = 179992, + [SMALL_STATE(2237)] = 180062, + [SMALL_STATE(2238)] = 180130, + [SMALL_STATE(2239)] = 180232, + [SMALL_STATE(2240)] = 180310, + [SMALL_STATE(2241)] = 180380, + [SMALL_STATE(2242)] = 180448, + [SMALL_STATE(2243)] = 180516, + [SMALL_STATE(2244)] = 180594, + [SMALL_STATE(2245)] = 180664, + [SMALL_STATE(2246)] = 180766, + [SMALL_STATE(2247)] = 180834, + [SMALL_STATE(2248)] = 180938, + [SMALL_STATE(2249)] = 181006, + [SMALL_STATE(2250)] = 181074, + [SMALL_STATE(2251)] = 181142, + [SMALL_STATE(2252)] = 181210, + [SMALL_STATE(2253)] = 181278, + [SMALL_STATE(2254)] = 181346, + [SMALL_STATE(2255)] = 181416, + [SMALL_STATE(2256)] = 181484, + [SMALL_STATE(2257)] = 181554, + [SMALL_STATE(2258)] = 181622, + [SMALL_STATE(2259)] = 181730, + [SMALL_STATE(2260)] = 181799, + [SMALL_STATE(2261)] = 181876, + [SMALL_STATE(2262)] = 181947, + [SMALL_STATE(2263)] = 182024, + [SMALL_STATE(2264)] = 182101, + [SMALL_STATE(2265)] = 182172, + [SMALL_STATE(2266)] = 182249, + [SMALL_STATE(2267)] = 182326, + [SMALL_STATE(2268)] = 182397, + [SMALL_STATE(2269)] = 182468, + [SMALL_STATE(2270)] = 182539, + [SMALL_STATE(2271)] = 182608, + [SMALL_STATE(2272)] = 182685, + [SMALL_STATE(2273)] = 182756, + [SMALL_STATE(2274)] = 182832, + [SMALL_STATE(2275)] = 182908, + [SMALL_STATE(2276)] = 182984, + [SMALL_STATE(2277)] = 183054, + [SMALL_STATE(2278)] = 183124, + [SMALL_STATE(2279)] = 183191, + [SMALL_STATE(2280)] = 183278, + [SMALL_STATE(2281)] = 183347, + [SMALL_STATE(2282)] = 183416, + [SMALL_STATE(2283)] = 183487, + [SMALL_STATE(2284)] = 183556, + [SMALL_STATE(2285)] = 183627, + [SMALL_STATE(2286)] = 183704, + [SMALL_STATE(2287)] = 183777, + [SMALL_STATE(2288)] = 183856, + [SMALL_STATE(2289)] = 183923, + [SMALL_STATE(2290)] = 184026, + [SMALL_STATE(2291)] = 184097, + [SMALL_STATE(2292)] = 184164, + [SMALL_STATE(2293)] = 184239, + [SMALL_STATE(2294)] = 184316, + [SMALL_STATE(2295)] = 184417, + [SMALL_STATE(2296)] = 184520, + [SMALL_STATE(2297)] = 184589, + [SMALL_STATE(2298)] = 184660, + [SMALL_STATE(2299)] = 184729, + [SMALL_STATE(2300)] = 184802, + [SMALL_STATE(2301)] = 184887, + [SMALL_STATE(2302)] = 184956, + [SMALL_STATE(2303)] = 185023, + [SMALL_STATE(2304)] = 185092, + [SMALL_STATE(2305)] = 185181, + [SMALL_STATE(2306)] = 185272, + [SMALL_STATE(2307)] = 185355, + [SMALL_STATE(2308)] = 185422, + [SMALL_STATE(2309)] = 185497, + [SMALL_STATE(2310)] = 185566, + [SMALL_STATE(2311)] = 185645, + [SMALL_STATE(2312)] = 185744, + [SMALL_STATE(2313)] = 185811, + [SMALL_STATE(2314)] = 185878, + [SMALL_STATE(2315)] = 185979, + [SMALL_STATE(2316)] = 186058, + [SMALL_STATE(2317)] = 186137, + [SMALL_STATE(2318)] = 186230, + [SMALL_STATE(2319)] = 186297, + [SMALL_STATE(2320)] = 186368, + [SMALL_STATE(2321)] = 186471, + [SMALL_STATE(2322)] = 186538, + [SMALL_STATE(2323)] = 186605, + [SMALL_STATE(2324)] = 186680, + [SMALL_STATE(2325)] = 186747, + [SMALL_STATE(2326)] = 186814, + [SMALL_STATE(2327)] = 186878, + [SMALL_STATE(2328)] = 186944, + [SMALL_STATE(2329)] = 187008, + [SMALL_STATE(2330)] = 187074, + [SMALL_STATE(2331)] = 187166, + [SMALL_STATE(2332)] = 187234, + [SMALL_STATE(2333)] = 187304, + [SMALL_STATE(2334)] = 187382, + [SMALL_STATE(2335)] = 187450, + [SMALL_STATE(2336)] = 187520, + [SMALL_STATE(2337)] = 187588, + [SMALL_STATE(2338)] = 187656, + [SMALL_STATE(2339)] = 187724, + [SMALL_STATE(2340)] = 187788, + [SMALL_STATE(2341)] = 187856, + [SMALL_STATE(2342)] = 187930, + [SMALL_STATE(2343)] = 187996, + [SMALL_STATE(2344)] = 188062, + [SMALL_STATE(2345)] = 188160, + [SMALL_STATE(2346)] = 188234, + [SMALL_STATE(2347)] = 188336, + [SMALL_STATE(2348)] = 188438, + [SMALL_STATE(2349)] = 188506, + [SMALL_STATE(2350)] = 188574, + [SMALL_STATE(2351)] = 188640, + [SMALL_STATE(2352)] = 188744, + [SMALL_STATE(2353)] = 188828, + [SMALL_STATE(2354)] = 188892, + [SMALL_STATE(2355)] = 188992, + [SMALL_STATE(2356)] = 189070, + [SMALL_STATE(2357)] = 189156, + [SMALL_STATE(2358)] = 189222, + [SMALL_STATE(2359)] = 189286, + [SMALL_STATE(2360)] = 189374, + [SMALL_STATE(2361)] = 189444, + [SMALL_STATE(2362)] = 189510, + [SMALL_STATE(2363)] = 189600, + [SMALL_STATE(2364)] = 189682, + [SMALL_STATE(2365)] = 189756, + [SMALL_STATE(2366)] = 189856, + [SMALL_STATE(2367)] = 189922, + [SMALL_STATE(2368)] = 189986, + [SMALL_STATE(2369)] = 190054, + [SMALL_STATE(2370)] = 190156, + [SMALL_STATE(2371)] = 190234, + [SMALL_STATE(2372)] = 190300, + [SMALL_STATE(2373)] = 190376, + [SMALL_STATE(2374)] = 190478, + [SMALL_STATE(2375)] = 190550, + [SMALL_STATE(2376)] = 190628, + [SMALL_STATE(2377)] = 190692, + [SMALL_STATE(2378)] = 190756, + [SMALL_STATE(2379)] = 190820, + [SMALL_STATE(2380)] = 190898, + [SMALL_STATE(2381)] = 190992, + [SMALL_STATE(2382)] = 191078, + [SMALL_STATE(2383)] = 191166, + [SMALL_STATE(2384)] = 191256, + [SMALL_STATE(2385)] = 191348, + [SMALL_STATE(2386)] = 191430, + [SMALL_STATE(2387)] = 191534, + [SMALL_STATE(2388)] = 191638, + [SMALL_STATE(2389)] = 191702, + [SMALL_STATE(2390)] = 191778, + [SMALL_STATE(2391)] = 191856, + [SMALL_STATE(2392)] = 191928, + [SMALL_STATE(2393)] = 192006, + [SMALL_STATE(2394)] = 192072, + [SMALL_STATE(2395)] = 192146, + [SMALL_STATE(2396)] = 192218, + [SMALL_STATE(2397)] = 192284, + [SMALL_STATE(2398)] = 192358, + [SMALL_STATE(2399)] = 192428, + [SMALL_STATE(2400)] = 192504, + [SMALL_STATE(2401)] = 192578, + [SMALL_STATE(2402)] = 192654, + [SMALL_STATE(2403)] = 192726, + [SMALL_STATE(2404)] = 192794, + [SMALL_STATE(2405)] = 192896, + [SMALL_STATE(2406)] = 192996, + [SMALL_STATE(2407)] = 193062, + [SMALL_STATE(2408)] = 193126, + [SMALL_STATE(2409)] = 193190, + [SMALL_STATE(2410)] = 193256, + [SMALL_STATE(2411)] = 193326, + [SMALL_STATE(2412)] = 193394, + [SMALL_STATE(2413)] = 193462, + [SMALL_STATE(2414)] = 193530, + [SMALL_STATE(2415)] = 193596, + [SMALL_STATE(2416)] = 193662, + [SMALL_STATE(2417)] = 193732, + [SMALL_STATE(2418)] = 193810, + [SMALL_STATE(2419)] = 193873, + [SMALL_STATE(2420)] = 193936, + [SMALL_STATE(2421)] = 194009, + [SMALL_STATE(2422)] = 194076, + [SMALL_STATE(2423)] = 194141, + [SMALL_STATE(2424)] = 194208, + [SMALL_STATE(2425)] = 194275, + [SMALL_STATE(2426)] = 194350, + [SMALL_STATE(2427)] = 194417, + [SMALL_STATE(2428)] = 194488, + [SMALL_STATE(2429)] = 194553, + [SMALL_STATE(2430)] = 194626, + [SMALL_STATE(2431)] = 194689, + [SMALL_STATE(2432)] = 194752, + [SMALL_STATE(2433)] = 194825, + [SMALL_STATE(2434)] = 194926, + [SMALL_STATE(2435)] = 194989, + [SMALL_STATE(2436)] = 195052, + [SMALL_STATE(2437)] = 195117, + [SMALL_STATE(2438)] = 195182, + [SMALL_STATE(2439)] = 195245, + [SMALL_STATE(2440)] = 195308, + [SMALL_STATE(2441)] = 195371, + [SMALL_STATE(2442)] = 195434, + [SMALL_STATE(2443)] = 195497, + [SMALL_STATE(2444)] = 195560, + [SMALL_STATE(2445)] = 195623, + [SMALL_STATE(2446)] = 195686, + [SMALL_STATE(2447)] = 195751, + [SMALL_STATE(2448)] = 195828, + [SMALL_STATE(2449)] = 195891, + [SMALL_STATE(2450)] = 195956, + [SMALL_STATE(2451)] = 196021, + [SMALL_STATE(2452)] = 196086, + [SMALL_STATE(2453)] = 196151, + [SMALL_STATE(2454)] = 196252, + [SMALL_STATE(2455)] = 196317, + [SMALL_STATE(2456)] = 196394, + [SMALL_STATE(2457)] = 196459, + [SMALL_STATE(2458)] = 196532, + [SMALL_STATE(2459)] = 196597, + [SMALL_STATE(2460)] = 196662, + [SMALL_STATE(2461)] = 196727, + [SMALL_STATE(2462)] = 196790, + [SMALL_STATE(2463)] = 196853, + [SMALL_STATE(2464)] = 196916, + [SMALL_STATE(2465)] = 196979, + [SMALL_STATE(2466)] = 197042, + [SMALL_STATE(2467)] = 197105, + [SMALL_STATE(2468)] = 197168, + [SMALL_STATE(2469)] = 197231, + [SMALL_STATE(2470)] = 197294, + [SMALL_STATE(2471)] = 197357, + [SMALL_STATE(2472)] = 197420, + [SMALL_STATE(2473)] = 197485, + [SMALL_STATE(2474)] = 197548, + [SMALL_STATE(2475)] = 197615, + [SMALL_STATE(2476)] = 197678, + [SMALL_STATE(2477)] = 197741, + [SMALL_STATE(2478)] = 197804, + [SMALL_STATE(2479)] = 197867, + [SMALL_STATE(2480)] = 197970, + [SMALL_STATE(2481)] = 198033, + [SMALL_STATE(2482)] = 198096, + [SMALL_STATE(2483)] = 198159, + [SMALL_STATE(2484)] = 198224, + [SMALL_STATE(2485)] = 198297, + [SMALL_STATE(2486)] = 198362, + [SMALL_STATE(2487)] = 198425, + [SMALL_STATE(2488)] = 198488, + [SMALL_STATE(2489)] = 198551, + [SMALL_STATE(2490)] = 198614, + [SMALL_STATE(2491)] = 198677, + [SMALL_STATE(2492)] = 198740, + [SMALL_STATE(2493)] = 198803, + [SMALL_STATE(2494)] = 198866, + [SMALL_STATE(2495)] = 198929, + [SMALL_STATE(2496)] = 198992, + [SMALL_STATE(2497)] = 199055, + [SMALL_STATE(2498)] = 199120, + [SMALL_STATE(2499)] = 199183, + [SMALL_STATE(2500)] = 199252, + [SMALL_STATE(2501)] = 199315, + [SMALL_STATE(2502)] = 199378, + [SMALL_STATE(2503)] = 199441, + [SMALL_STATE(2504)] = 199504, + [SMALL_STATE(2505)] = 199567, + [SMALL_STATE(2506)] = 199630, + [SMALL_STATE(2507)] = 199695, + [SMALL_STATE(2508)] = 199758, + [SMALL_STATE(2509)] = 199821, + [SMALL_STATE(2510)] = 199884, + [SMALL_STATE(2511)] = 199951, + [SMALL_STATE(2512)] = 200014, + [SMALL_STATE(2513)] = 200077, + [SMALL_STATE(2514)] = 200180, + [SMALL_STATE(2515)] = 200283, + [SMALL_STATE(2516)] = 200346, + [SMALL_STATE(2517)] = 200413, + [SMALL_STATE(2518)] = 200480, + [SMALL_STATE(2519)] = 200543, + [SMALL_STATE(2520)] = 200606, + [SMALL_STATE(2521)] = 200669, + [SMALL_STATE(2522)] = 200732, + [SMALL_STATE(2523)] = 200795, + [SMALL_STATE(2524)] = 200858, + [SMALL_STATE(2525)] = 200921, + [SMALL_STATE(2526)] = 200984, + [SMALL_STATE(2527)] = 201047, + [SMALL_STATE(2528)] = 201112, + [SMALL_STATE(2529)] = 201175, + [SMALL_STATE(2530)] = 201238, + [SMALL_STATE(2531)] = 201301, + [SMALL_STATE(2532)] = 201364, + [SMALL_STATE(2533)] = 201427, + [SMALL_STATE(2534)] = 201490, + [SMALL_STATE(2535)] = 201553, + [SMALL_STATE(2536)] = 201616, + [SMALL_STATE(2537)] = 201679, + [SMALL_STATE(2538)] = 201742, + [SMALL_STATE(2539)] = 201805, + [SMALL_STATE(2540)] = 201868, + [SMALL_STATE(2541)] = 201931, + [SMALL_STATE(2542)] = 201994, + [SMALL_STATE(2543)] = 202057, + [SMALL_STATE(2544)] = 202120, + [SMALL_STATE(2545)] = 202183, + [SMALL_STATE(2546)] = 202246, + [SMALL_STATE(2547)] = 202309, + [SMALL_STATE(2548)] = 202380, + [SMALL_STATE(2549)] = 202443, + [SMALL_STATE(2550)] = 202506, + [SMALL_STATE(2551)] = 202569, + [SMALL_STATE(2552)] = 202632, + [SMALL_STATE(2553)] = 202695, + [SMALL_STATE(2554)] = 202758, + [SMALL_STATE(2555)] = 202821, + [SMALL_STATE(2556)] = 202884, + [SMALL_STATE(2557)] = 202947, + [SMALL_STATE(2558)] = 203016, + [SMALL_STATE(2559)] = 203085, + [SMALL_STATE(2560)] = 203160, + [SMALL_STATE(2561)] = 203225, + [SMALL_STATE(2562)] = 203292, + [SMALL_STATE(2563)] = 203359, + [SMALL_STATE(2564)] = 203422, + [SMALL_STATE(2565)] = 203495, + [SMALL_STATE(2566)] = 203588, + [SMALL_STATE(2567)] = 203653, + [SMALL_STATE(2568)] = 203718, + [SMALL_STATE(2569)] = 203781, + [SMALL_STATE(2570)] = 203844, + [SMALL_STATE(2571)] = 203907, + [SMALL_STATE(2572)] = 203970, + [SMALL_STATE(2573)] = 204033, + [SMALL_STATE(2574)] = 204096, + [SMALL_STATE(2575)] = 204161, + [SMALL_STATE(2576)] = 204224, + [SMALL_STATE(2577)] = 204287, + [SMALL_STATE(2578)] = 204350, + [SMALL_STATE(2579)] = 204423, + [SMALL_STATE(2580)] = 204486, + [SMALL_STATE(2581)] = 204549, + [SMALL_STATE(2582)] = 204634, + [SMALL_STATE(2583)] = 204699, + [SMALL_STATE(2584)] = 204786, + [SMALL_STATE(2585)] = 204875, + [SMALL_STATE(2586)] = 204966, + [SMALL_STATE(2587)] = 205047, + [SMALL_STATE(2588)] = 205110, + [SMALL_STATE(2589)] = 205187, + [SMALL_STATE(2590)] = 205264, + [SMALL_STATE(2591)] = 205327, + [SMALL_STATE(2592)] = 205426, + [SMALL_STATE(2593)] = 205489, + [SMALL_STATE(2594)] = 205554, + [SMALL_STATE(2595)] = 205619, + [SMALL_STATE(2596)] = 205682, + [SMALL_STATE(2597)] = 205745, + [SMALL_STATE(2598)] = 205812, + [SMALL_STATE(2599)] = 205885, + [SMALL_STATE(2600)] = 205958, + [SMALL_STATE(2601)] = 206025, + [SMALL_STATE(2602)] = 206089, + [SMALL_STATE(2603)] = 206151, + [SMALL_STATE(2604)] = 206215, + [SMALL_STATE(2605)] = 206279, + [SMALL_STATE(2606)] = 206343, + [SMALL_STATE(2607)] = 206405, + [SMALL_STATE(2608)] = 206467, + [SMALL_STATE(2609)] = 206529, + [SMALL_STATE(2610)] = 206591, + [SMALL_STATE(2611)] = 206653, + [SMALL_STATE(2612)] = 206725, + [SMALL_STATE(2613)] = 206791, + [SMALL_STATE(2614)] = 206857, + [SMALL_STATE(2615)] = 206923, + [SMALL_STATE(2616)] = 206989, + [SMALL_STATE(2617)] = 207053, + [SMALL_STATE(2618)] = 207115, + [SMALL_STATE(2619)] = 207177, + [SMALL_STATE(2620)] = 207239, + [SMALL_STATE(2621)] = 207301, + [SMALL_STATE(2622)] = 207363, + [SMALL_STATE(2623)] = 207425, + [SMALL_STATE(2624)] = 207487, + [SMALL_STATE(2625)] = 207551, + [SMALL_STATE(2626)] = 207613, + [SMALL_STATE(2627)] = 207675, + [SMALL_STATE(2628)] = 207737, + [SMALL_STATE(2629)] = 207799, + [SMALL_STATE(2630)] = 207865, + [SMALL_STATE(2631)] = 207931, + [SMALL_STATE(2632)] = 208001, + [SMALL_STATE(2633)] = 208063, + [SMALL_STATE(2634)] = 208127, + [SMALL_STATE(2635)] = 208189, + [SMALL_STATE(2636)] = 208253, + [SMALL_STATE(2637)] = 208315, + [SMALL_STATE(2638)] = 208381, + [SMALL_STATE(2639)] = 208447, + [SMALL_STATE(2640)] = 208511, + [SMALL_STATE(2641)] = 208607, + [SMALL_STATE(2642)] = 208669, + [SMALL_STATE(2643)] = 208731, + [SMALL_STATE(2644)] = 208795, + [SMALL_STATE(2645)] = 208861, + [SMALL_STATE(2646)] = 208923, + [SMALL_STATE(2647)] = 208991, + [SMALL_STATE(2648)] = 209053, + [SMALL_STATE(2649)] = 209115, + [SMALL_STATE(2650)] = 209177, + [SMALL_STATE(2651)] = 209241, + [SMALL_STATE(2652)] = 209307, + [SMALL_STATE(2653)] = 209407, + [SMALL_STATE(2654)] = 209507, + [SMALL_STATE(2655)] = 209571, + [SMALL_STATE(2656)] = 209633, + [SMALL_STATE(2657)] = 209731, + [SMALL_STATE(2658)] = 209795, + [SMALL_STATE(2659)] = 209857, + [SMALL_STATE(2660)] = 209947, + [SMALL_STATE(2661)] = 210011, + [SMALL_STATE(2662)] = 210075, + [SMALL_STATE(2663)] = 210137, + [SMALL_STATE(2664)] = 210199, + [SMALL_STATE(2665)] = 210261, + [SMALL_STATE(2666)] = 210325, + [SMALL_STATE(2667)] = 210387, + [SMALL_STATE(2668)] = 210449, + [SMALL_STATE(2669)] = 210513, + [SMALL_STATE(2670)] = 210583, + [SMALL_STATE(2671)] = 210647, + [SMALL_STATE(2672)] = 210709, + [SMALL_STATE(2673)] = 210791, + [SMALL_STATE(2674)] = 210875, + [SMALL_STATE(2675)] = 210961, + [SMALL_STATE(2676)] = 211049, + [SMALL_STATE(2677)] = 211129, + [SMALL_STATE(2678)] = 211193, + [SMALL_STATE(2679)] = 211269, + [SMALL_STATE(2680)] = 211345, + [SMALL_STATE(2681)] = 211407, + [SMALL_STATE(2682)] = 211475, + [SMALL_STATE(2683)] = 211541, + [SMALL_STATE(2684)] = 211607, + [SMALL_STATE(2685)] = 211675, + [SMALL_STATE(2686)] = 211737, + [SMALL_STATE(2687)] = 211799, + [SMALL_STATE(2688)] = 211871, + [SMALL_STATE(2689)] = 211937, + [SMALL_STATE(2690)] = 212037, + [SMALL_STATE(2691)] = 212099, + [SMALL_STATE(2692)] = 212161, + [SMALL_STATE(2693)] = 212223, + [SMALL_STATE(2694)] = 212285, + [SMALL_STATE(2695)] = 212347, + [SMALL_STATE(2696)] = 212411, + [SMALL_STATE(2697)] = 212475, + [SMALL_STATE(2698)] = 212547, + [SMALL_STATE(2699)] = 212613, + [SMALL_STATE(2700)] = 212677, + [SMALL_STATE(2701)] = 212741, + [SMALL_STATE(2702)] = 212803, + [SMALL_STATE(2703)] = 212865, + [SMALL_STATE(2704)] = 212927, + [SMALL_STATE(2705)] = 212991, + [SMALL_STATE(2706)] = 213053, + [SMALL_STATE(2707)] = 213115, + [SMALL_STATE(2708)] = 213181, + [SMALL_STATE(2709)] = 213247, + [SMALL_STATE(2710)] = 213313, + [SMALL_STATE(2711)] = 213375, + [SMALL_STATE(2712)] = 213437, + [SMALL_STATE(2713)] = 213509, + [SMALL_STATE(2714)] = 213571, + [SMALL_STATE(2715)] = 213647, + [SMALL_STATE(2716)] = 213721, + [SMALL_STATE(2717)] = 213785, + [SMALL_STATE(2718)] = 213847, + [SMALL_STATE(2719)] = 213909, + [SMALL_STATE(2720)] = 214007, + [SMALL_STATE(2721)] = 214071, + [SMALL_STATE(2722)] = 214133, + [SMALL_STATE(2723)] = 214209, + [SMALL_STATE(2724)] = 214271, + [SMALL_STATE(2725)] = 214333, + [SMALL_STATE(2726)] = 214407, + [SMALL_STATE(2727)] = 214471, + [SMALL_STATE(2728)] = 214533, + [SMALL_STATE(2729)] = 214595, + [SMALL_STATE(2730)] = 214657, + [SMALL_STATE(2731)] = 214719, + [SMALL_STATE(2732)] = 214781, + [SMALL_STATE(2733)] = 214843, + [SMALL_STATE(2734)] = 214905, + [SMALL_STATE(2735)] = 214973, + [SMALL_STATE(2736)] = 215034, + [SMALL_STATE(2737)] = 215097, + [SMALL_STATE(2738)] = 215160, + [SMALL_STATE(2739)] = 215221, + [SMALL_STATE(2740)] = 215284, + [SMALL_STATE(2741)] = 215347, + [SMALL_STATE(2742)] = 215424, + [SMALL_STATE(2743)] = 215487, + [SMALL_STATE(2744)] = 215548, + [SMALL_STATE(2745)] = 215613, + [SMALL_STATE(2746)] = 215676, + [SMALL_STATE(2747)] = 215739, + [SMALL_STATE(2748)] = 215804, + [SMALL_STATE(2749)] = 215895, + [SMALL_STATE(2750)] = 215962, + [SMALL_STATE(2751)] = 216025, + [SMALL_STATE(2752)] = 216088, + [SMALL_STATE(2753)] = 216153, + [SMALL_STATE(2754)] = 216218, + [SMALL_STATE(2755)] = 216307, + [SMALL_STATE(2756)] = 216370, + [SMALL_STATE(2757)] = 216463, + [SMALL_STATE(2758)] = 216528, + [SMALL_STATE(2759)] = 216623, + [SMALL_STATE(2760)] = 216688, + [SMALL_STATE(2761)] = 216755, + [SMALL_STATE(2762)] = 216816, + [SMALL_STATE(2763)] = 216879, + [SMALL_STATE(2764)] = 216944, + [SMALL_STATE(2765)] = 217005, + [SMALL_STATE(2766)] = 217078, + [SMALL_STATE(2767)] = 217173, + [SMALL_STATE(2768)] = 217238, + [SMALL_STATE(2769)] = 217333, + [SMALL_STATE(2770)] = 217394, + [SMALL_STATE(2771)] = 217457, + [SMALL_STATE(2772)] = 217522, + [SMALL_STATE(2773)] = 217585, + [SMALL_STATE(2774)] = 217650, + [SMALL_STATE(2775)] = 217717, + [SMALL_STATE(2776)] = 217782, + [SMALL_STATE(2777)] = 217843, + [SMALL_STATE(2778)] = 217904, + [SMALL_STATE(2779)] = 217991, + [SMALL_STATE(2780)] = 218054, + [SMALL_STATE(2781)] = 218119, + [SMALL_STATE(2782)] = 218188, + [SMALL_STATE(2783)] = 218255, + [SMALL_STATE(2784)] = 218318, + [SMALL_STATE(2785)] = 218381, + [SMALL_STATE(2786)] = 218452, + [SMALL_STATE(2787)] = 218515, + [SMALL_STATE(2788)] = 218578, + [SMALL_STATE(2789)] = 218641, + [SMALL_STATE(2790)] = 218706, + [SMALL_STATE(2791)] = 218769, + [SMALL_STATE(2792)] = 218844, + [SMALL_STATE(2793)] = 218909, + [SMALL_STATE(2794)] = 218974, + [SMALL_STATE(2795)] = 219035, + [SMALL_STATE(2796)] = 219104, + [SMALL_STATE(2797)] = 219167, + [SMALL_STATE(2798)] = 219230, + [SMALL_STATE(2799)] = 219293, + [SMALL_STATE(2800)] = 219356, + [SMALL_STATE(2801)] = 219427, + [SMALL_STATE(2802)] = 219492, + [SMALL_STATE(2803)] = 219557, + [SMALL_STATE(2804)] = 219620, + [SMALL_STATE(2805)] = 219683, + [SMALL_STATE(2806)] = 219746, + [SMALL_STATE(2807)] = 219815, + [SMALL_STATE(2808)] = 219888, + [SMALL_STATE(2809)] = 219953, + [SMALL_STATE(2810)] = 220024, + [SMALL_STATE(2811)] = 220093, + [SMALL_STATE(2812)] = 220172, + [SMALL_STATE(2813)] = 220235, + [SMALL_STATE(2814)] = 220300, + [SMALL_STATE(2815)] = 220399, + [SMALL_STATE(2816)] = 220498, + [SMALL_STATE(2817)] = 220561, + [SMALL_STATE(2818)] = 220642, + [SMALL_STATE(2819)] = 220725, + [SMALL_STATE(2820)] = 220810, + [SMALL_STATE(2821)] = 220891, + [SMALL_STATE(2822)] = 220974, + [SMALL_STATE(2823)] = 221059, + [SMALL_STATE(2824)] = 221146, + [SMALL_STATE(2825)] = 221225, + [SMALL_STATE(2826)] = 221300, + [SMALL_STATE(2827)] = 221375, + [SMALL_STATE(2828)] = 221442, + [SMALL_STATE(2829)] = 221519, + [SMALL_STATE(2830)] = 221586, + [SMALL_STATE(2831)] = 221661, + [SMALL_STATE(2832)] = 221736, + [SMALL_STATE(2833)] = 221797, + [SMALL_STATE(2834)] = 221858, + [SMALL_STATE(2835)] = 221923, + [SMALL_STATE(2836)] = 222022, + [SMALL_STATE(2837)] = 222087, + [SMALL_STATE(2838)] = 222150, + [SMALL_STATE(2839)] = 222243, + [SMALL_STATE(2840)] = 222304, + [SMALL_STATE(2841)] = 222367, + [SMALL_STATE(2842)] = 222442, + [SMALL_STATE(2843)] = 222505, + [SMALL_STATE(2844)] = 222568, + [SMALL_STATE(2845)] = 222643, + [SMALL_STATE(2846)] = 222740, + [SMALL_STATE(2847)] = 222802, + [SMALL_STATE(2848)] = 222874, + [SMALL_STATE(2849)] = 222934, + [SMALL_STATE(2850)] = 222994, + [SMALL_STATE(2851)] = 223056, + [SMALL_STATE(2852)] = 223116, + [SMALL_STATE(2853)] = 223212, + [SMALL_STATE(2854)] = 223272, + [SMALL_STATE(2855)] = 223354, + [SMALL_STATE(2856)] = 223414, + [SMALL_STATE(2857)] = 223510, + [SMALL_STATE(2858)] = 223584, + [SMALL_STATE(2859)] = 223644, + [SMALL_STATE(2860)] = 223704, + [SMALL_STATE(2861)] = 223764, + [SMALL_STATE(2862)] = 223826, + [SMALL_STATE(2863)] = 223886, + [SMALL_STATE(2864)] = 223958, + [SMALL_STATE(2865)] = 224018, + [SMALL_STATE(2866)] = 224078, + [SMALL_STATE(2867)] = 224138, + [SMALL_STATE(2868)] = 224200, + [SMALL_STATE(2869)] = 224260, + [SMALL_STATE(2870)] = 224320, + [SMALL_STATE(2871)] = 224380, + [SMALL_STATE(2872)] = 224442, + [SMALL_STATE(2873)] = 224504, + [SMALL_STATE(2874)] = 224568, + [SMALL_STATE(2875)] = 224638, + [SMALL_STATE(2876)] = 224698, + [SMALL_STATE(2877)] = 224758, + [SMALL_STATE(2878)] = 224820, + [SMALL_STATE(2879)] = 224880, + [SMALL_STATE(2880)] = 224942, + [SMALL_STATE(2881)] = 225002, + [SMALL_STATE(2882)] = 225062, + [SMALL_STATE(2883)] = 225122, + [SMALL_STATE(2884)] = 225182, + [SMALL_STATE(2885)] = 225244, + [SMALL_STATE(2886)] = 225308, + [SMALL_STATE(2887)] = 225376, + [SMALL_STATE(2888)] = 225436, + [SMALL_STATE(2889)] = 225498, + [SMALL_STATE(2890)] = 225594, + [SMALL_STATE(2891)] = 225654, + [SMALL_STATE(2892)] = 225728, + [SMALL_STATE(2893)] = 225790, + [SMALL_STATE(2894)] = 225850, + [SMALL_STATE(2895)] = 225910, + [SMALL_STATE(2896)] = 225970, + [SMALL_STATE(2897)] = 226030, + [SMALL_STATE(2898)] = 226090, + [SMALL_STATE(2899)] = 226152, + [SMALL_STATE(2900)] = 226214, + [SMALL_STATE(2901)] = 226274, + [SMALL_STATE(2902)] = 226334, + [SMALL_STATE(2903)] = 226394, + [SMALL_STATE(2904)] = 226492, + [SMALL_STATE(2905)] = 226554, + [SMALL_STATE(2906)] = 226618, + [SMALL_STATE(2907)] = 226678, + [SMALL_STATE(2908)] = 226740, + [SMALL_STATE(2909)] = 226806, + [SMALL_STATE(2910)] = 226866, + [SMALL_STATE(2911)] = 226926, + [SMALL_STATE(2912)] = 226992, + [SMALL_STATE(2913)] = 227054, + [SMALL_STATE(2914)] = 227116, + [SMALL_STATE(2915)] = 227178, + [SMALL_STATE(2916)] = 227238, + [SMALL_STATE(2917)] = 227298, + [SMALL_STATE(2918)] = 227372, + [SMALL_STATE(2919)] = 227432, + [SMALL_STATE(2920)] = 227492, + [SMALL_STATE(2921)] = 227566, + [SMALL_STATE(2922)] = 227626, + [SMALL_STATE(2923)] = 227688, + [SMALL_STATE(2924)] = 227766, + [SMALL_STATE(2925)] = 227852, + [SMALL_STATE(2926)] = 227936, + [SMALL_STATE(2927)] = 228030, + [SMALL_STATE(2928)] = 228094, + [SMALL_STATE(2929)] = 228154, + [SMALL_STATE(2930)] = 228214, + [SMALL_STATE(2931)] = 228294, + [SMALL_STATE(2932)] = 228354, + [SMALL_STATE(2933)] = 228414, + [SMALL_STATE(2934)] = 228474, + [SMALL_STATE(2935)] = 228536, + [SMALL_STATE(2936)] = 228596, + [SMALL_STATE(2937)] = 228656, + [SMALL_STATE(2938)] = 228716, + [SMALL_STATE(2939)] = 228814, + [SMALL_STATE(2940)] = 228912, + [SMALL_STATE(2941)] = 228974, + [SMALL_STATE(2942)] = 229038, + [SMALL_STATE(2943)] = 229098, + [SMALL_STATE(2944)] = 229160, + [SMALL_STATE(2945)] = 229220, + [SMALL_STATE(2946)] = 229280, + [SMALL_STATE(2947)] = 229340, + [SMALL_STATE(2948)] = 229400, + [SMALL_STATE(2949)] = 229460, + [SMALL_STATE(2950)] = 229528, + [SMALL_STATE(2951)] = 229590, + [SMALL_STATE(2952)] = 229650, + [SMALL_STATE(2953)] = 229710, + [SMALL_STATE(2954)] = 229770, + [SMALL_STATE(2955)] = 229830, + [SMALL_STATE(2956)] = 229892, + [SMALL_STATE(2957)] = 229956, + [SMALL_STATE(2958)] = 230018, + [SMALL_STATE(2959)] = 230090, + [SMALL_STATE(2960)] = 230152, + [SMALL_STATE(2961)] = 230214, + [SMALL_STATE(2962)] = 230276, + [SMALL_STATE(2963)] = 230338, + [SMALL_STATE(2964)] = 230398, + [SMALL_STATE(2965)] = 230458, + [SMALL_STATE(2966)] = 230524, + [SMALL_STATE(2967)] = 230584, + [SMALL_STATE(2968)] = 230648, + [SMALL_STATE(2969)] = 230714, + [SMALL_STATE(2970)] = 230778, + [SMALL_STATE(2971)] = 230842, + [SMALL_STATE(2972)] = 230906, + [SMALL_STATE(2973)] = 230970, + [SMALL_STATE(2974)] = 231034, + [SMALL_STATE(2975)] = 231094, + [SMALL_STATE(2976)] = 231154, + [SMALL_STATE(2977)] = 231214, + [SMALL_STATE(2978)] = 231274, + [SMALL_STATE(2979)] = 231338, + [SMALL_STATE(2980)] = 231398, + [SMALL_STATE(2981)] = 231492, + [SMALL_STATE(2982)] = 231552, + [SMALL_STATE(2983)] = 231648, + [SMALL_STATE(2984)] = 231708, + [SMALL_STATE(2985)] = 231772, + [SMALL_STATE(2986)] = 231870, + [SMALL_STATE(2987)] = 231930, + [SMALL_STATE(2988)] = 232004, + [SMALL_STATE(2989)] = 232078, + [SMALL_STATE(2990)] = 232156, + [SMALL_STATE(2991)] = 232244, + [SMALL_STATE(2992)] = 232330, + [SMALL_STATE(2993)] = 232414, + [SMALL_STATE(2994)] = 232496, + [SMALL_STATE(2995)] = 232564, + [SMALL_STATE(2996)] = 232624, + [SMALL_STATE(2997)] = 232696, + [SMALL_STATE(2998)] = 232760, + [SMALL_STATE(2999)] = 232826, + [SMALL_STATE(3000)] = 232888, + [SMALL_STATE(3001)] = 232960, + [SMALL_STATE(3002)] = 233050, + [SMALL_STATE(3003)] = 233122, + [SMALL_STATE(3004)] = 233190, + [SMALL_STATE(3005)] = 233252, + [SMALL_STATE(3006)] = 233314, + [SMALL_STATE(3007)] = 233412, + [SMALL_STATE(3008)] = 233480, + [SMALL_STATE(3009)] = 233554, + [SMALL_STATE(3010)] = 233616, + [SMALL_STATE(3011)] = 233680, + [SMALL_STATE(3012)] = 233744, + [SMALL_STATE(3013)] = 233806, + [SMALL_STATE(3014)] = 233870, + [SMALL_STATE(3015)] = 233934, + [SMALL_STATE(3016)] = 233998, + [SMALL_STATE(3017)] = 234060, + [SMALL_STATE(3018)] = 234126, + [SMALL_STATE(3019)] = 234200, + [SMALL_STATE(3020)] = 234300, + [SMALL_STATE(3021)] = 234388, + [SMALL_STATE(3022)] = 234488, + [SMALL_STATE(3023)] = 234548, + [SMALL_STATE(3024)] = 234648, + [SMALL_STATE(3025)] = 234708, + [SMALL_STATE(3026)] = 234768, + [SMALL_STATE(3027)] = 234828, + [SMALL_STATE(3028)] = 234887, + [SMALL_STATE(3029)] = 234946, + [SMALL_STATE(3030)] = 235005, + [SMALL_STATE(3031)] = 235064, + [SMALL_STATE(3032)] = 235123, + [SMALL_STATE(3033)] = 235196, + [SMALL_STATE(3034)] = 235263, + [SMALL_STATE(3035)] = 235324, + [SMALL_STATE(3036)] = 235395, + [SMALL_STATE(3037)] = 235458, + [SMALL_STATE(3038)] = 235521, + [SMALL_STATE(3039)] = 235580, + [SMALL_STATE(3040)] = 235641, + [SMALL_STATE(3041)] = 235700, + [SMALL_STATE(3042)] = 235759, + [SMALL_STATE(3043)] = 235820, + [SMALL_STATE(3044)] = 235881, + [SMALL_STATE(3045)] = 235942, + [SMALL_STATE(3046)] = 236001, + [SMALL_STATE(3047)] = 236060, + [SMALL_STATE(3048)] = 236119, + [SMALL_STATE(3049)] = 236178, + [SMALL_STATE(3050)] = 236237, + [SMALL_STATE(3051)] = 236300, + [SMALL_STATE(3052)] = 236359, + [SMALL_STATE(3053)] = 236418, + [SMALL_STATE(3054)] = 236477, + [SMALL_STATE(3055)] = 236538, + [SMALL_STATE(3056)] = 236597, + [SMALL_STATE(3057)] = 236656, + [SMALL_STATE(3058)] = 236715, + [SMALL_STATE(3059)] = 236776, + [SMALL_STATE(3060)] = 236835, + [SMALL_STATE(3061)] = 236894, + [SMALL_STATE(3062)] = 236953, + [SMALL_STATE(3063)] = 237012, + [SMALL_STATE(3064)] = 237071, + [SMALL_STATE(3065)] = 237130, + [SMALL_STATE(3066)] = 237189, + [SMALL_STATE(3067)] = 237248, + [SMALL_STATE(3068)] = 237309, + [SMALL_STATE(3069)] = 237370, + [SMALL_STATE(3070)] = 237431, + [SMALL_STATE(3071)] = 237492, + [SMALL_STATE(3072)] = 237553, + [SMALL_STATE(3073)] = 237612, + [SMALL_STATE(3074)] = 237673, + [SMALL_STATE(3075)] = 237732, + [SMALL_STATE(3076)] = 237793, + [SMALL_STATE(3077)] = 237852, + [SMALL_STATE(3078)] = 237911, + [SMALL_STATE(3079)] = 237970, + [SMALL_STATE(3080)] = 238041, + [SMALL_STATE(3081)] = 238100, + [SMALL_STATE(3082)] = 238159, + [SMALL_STATE(3083)] = 238218, + [SMALL_STATE(3084)] = 238277, + [SMALL_STATE(3085)] = 238336, + [SMALL_STATE(3086)] = 238395, + [SMALL_STATE(3087)] = 238454, + [SMALL_STATE(3088)] = 238513, + [SMALL_STATE(3089)] = 238572, + [SMALL_STATE(3090)] = 238631, + [SMALL_STATE(3091)] = 238694, + [SMALL_STATE(3092)] = 238753, + [SMALL_STATE(3093)] = 238812, + [SMALL_STATE(3094)] = 238871, + [SMALL_STATE(3095)] = 238930, + [SMALL_STATE(3096)] = 238989, + [SMALL_STATE(3097)] = 239048, + [SMALL_STATE(3098)] = 239107, + [SMALL_STATE(3099)] = 239166, + [SMALL_STATE(3100)] = 239225, + [SMALL_STATE(3101)] = 239284, + [SMALL_STATE(3102)] = 239347, + [SMALL_STATE(3103)] = 239408, + [SMALL_STATE(3104)] = 239467, + [SMALL_STATE(3105)] = 239526, + [SMALL_STATE(3106)] = 239585, + [SMALL_STATE(3107)] = 239644, + [SMALL_STATE(3108)] = 239703, + [SMALL_STATE(3109)] = 239762, + [SMALL_STATE(3110)] = 239821, + [SMALL_STATE(3111)] = 239880, + [SMALL_STATE(3112)] = 239939, + [SMALL_STATE(3113)] = 239998, + [SMALL_STATE(3114)] = 240057, + [SMALL_STATE(3115)] = 240116, + [SMALL_STATE(3116)] = 240177, + [SMALL_STATE(3117)] = 240236, + [SMALL_STATE(3118)] = 240295, + [SMALL_STATE(3119)] = 240354, + [SMALL_STATE(3120)] = 240413, + [SMALL_STATE(3121)] = 240478, + [SMALL_STATE(3122)] = 240537, + [SMALL_STATE(3123)] = 240596, + [SMALL_STATE(3124)] = 240659, + [SMALL_STATE(3125)] = 240724, + [SMALL_STATE(3126)] = 240787, + [SMALL_STATE(3127)] = 240846, + [SMALL_STATE(3128)] = 240905, + [SMALL_STATE(3129)] = 240964, + [SMALL_STATE(3130)] = 241023, + [SMALL_STATE(3131)] = 241082, + [SMALL_STATE(3132)] = 241141, + [SMALL_STATE(3133)] = 241200, + [SMALL_STATE(3134)] = 241263, + [SMALL_STATE(3135)] = 241326, + [SMALL_STATE(3136)] = 241385, + [SMALL_STATE(3137)] = 241444, + [SMALL_STATE(3138)] = 241503, + [SMALL_STATE(3139)] = 241566, + [SMALL_STATE(3140)] = 241625, + [SMALL_STATE(3141)] = 241684, + [SMALL_STATE(3142)] = 241747, + [SMALL_STATE(3143)] = 241806, + [SMALL_STATE(3144)] = 241865, + [SMALL_STATE(3145)] = 241924, + [SMALL_STATE(3146)] = 241983, + [SMALL_STATE(3147)] = 242042, + [SMALL_STATE(3148)] = 242101, + [SMALL_STATE(3149)] = 242160, + [SMALL_STATE(3150)] = 242219, + [SMALL_STATE(3151)] = 242280, + [SMALL_STATE(3152)] = 242339, + [SMALL_STATE(3153)] = 242398, + [SMALL_STATE(3154)] = 242467, + [SMALL_STATE(3155)] = 242528, + [SMALL_STATE(3156)] = 242587, + [SMALL_STATE(3157)] = 242646, + [SMALL_STATE(3158)] = 242705, + [SMALL_STATE(3159)] = 242764, + [SMALL_STATE(3160)] = 242823, + [SMALL_STATE(3161)] = 242882, + [SMALL_STATE(3162)] = 242951, + [SMALL_STATE(3163)] = 243014, + [SMALL_STATE(3164)] = 243077, + [SMALL_STATE(3165)] = 243136, + [SMALL_STATE(3166)] = 243195, + [SMALL_STATE(3167)] = 243254, + [SMALL_STATE(3168)] = 243351, + [SMALL_STATE(3169)] = 243410, + [SMALL_STATE(3170)] = 243507, + [SMALL_STATE(3171)] = 243570, + [SMALL_STATE(3172)] = 243629, + [SMALL_STATE(3173)] = 243692, + [SMALL_STATE(3174)] = 243789, + [SMALL_STATE(3175)] = 243862, + [SMALL_STATE(3176)] = 243921, + [SMALL_STATE(3177)] = 244016, + [SMALL_STATE(3178)] = 244075, + [SMALL_STATE(3179)] = 244134, + [SMALL_STATE(3180)] = 244193, + [SMALL_STATE(3181)] = 244260, + [SMALL_STATE(3182)] = 244321, + [SMALL_STATE(3183)] = 244380, + [SMALL_STATE(3184)] = 244453, + [SMALL_STATE(3185)] = 244526, + [SMALL_STATE(3186)] = 244585, + [SMALL_STATE(3187)] = 244662, + [SMALL_STATE(3188)] = 244721, + [SMALL_STATE(3189)] = 244806, + [SMALL_STATE(3190)] = 244889, + [SMALL_STATE(3191)] = 244970, + [SMALL_STATE(3192)] = 245049, + [SMALL_STATE(3193)] = 245142, + [SMALL_STATE(3194)] = 245229, + [SMALL_STATE(3195)] = 245288, + [SMALL_STATE(3196)] = 245347, + [SMALL_STATE(3197)] = 245442, + [SMALL_STATE(3198)] = 245501, + [SMALL_STATE(3199)] = 245560, + [SMALL_STATE(3200)] = 245619, + [SMALL_STATE(3201)] = 245677, + [SMALL_STATE(3202)] = 245743, + [SMALL_STATE(3203)] = 245801, + [SMALL_STATE(3204)] = 245867, + [SMALL_STATE(3205)] = 245925, + [SMALL_STATE(3206)] = 245991, + [SMALL_STATE(3207)] = 246057, + [SMALL_STATE(3208)] = 246117, + [SMALL_STATE(3209)] = 246179, + [SMALL_STATE(3210)] = 246241, + [SMALL_STATE(3211)] = 246299, + [SMALL_STATE(3212)] = 246357, + [SMALL_STATE(3213)] = 246417, + [SMALL_STATE(3214)] = 246479, + [SMALL_STATE(3215)] = 246545, + [SMALL_STATE(3216)] = 246605, + [SMALL_STATE(3217)] = 246663, + [SMALL_STATE(3218)] = 246721, + [SMALL_STATE(3219)] = 246787, + [SMALL_STATE(3220)] = 246853, + [SMALL_STATE(3221)] = 246915, + [SMALL_STATE(3222)] = 246981, + [SMALL_STATE(3223)] = 247039, + [SMALL_STATE(3224)] = 247099, + [SMALL_STATE(3225)] = 247159, + [SMALL_STATE(3226)] = 247219, + [SMALL_STATE(3227)] = 247281, + [SMALL_STATE(3228)] = 247341, + [SMALL_STATE(3229)] = 247399, + [SMALL_STATE(3230)] = 247461, + [SMALL_STATE(3231)] = 247519, + [SMALL_STATE(3232)] = 247577, + [SMALL_STATE(3233)] = 247635, + [SMALL_STATE(3234)] = 247693, + [SMALL_STATE(3235)] = 247751, + [SMALL_STATE(3236)] = 247809, + [SMALL_STATE(3237)] = 247871, + [SMALL_STATE(3238)] = 247929, + [SMALL_STATE(3239)] = 247987, + [SMALL_STATE(3240)] = 248045, + [SMALL_STATE(3241)] = 248103, + [SMALL_STATE(3242)] = 248161, + [SMALL_STATE(3243)] = 248219, + [SMALL_STATE(3244)] = 248277, + [SMALL_STATE(3245)] = 248335, + [SMALL_STATE(3246)] = 248393, + [SMALL_STATE(3247)] = 248451, + [SMALL_STATE(3248)] = 248509, + [SMALL_STATE(3249)] = 248567, + [SMALL_STATE(3250)] = 248625, + [SMALL_STATE(3251)] = 248683, + [SMALL_STATE(3252)] = 248741, + [SMALL_STATE(3253)] = 248799, + [SMALL_STATE(3254)] = 248857, + [SMALL_STATE(3255)] = 248915, + [SMALL_STATE(3256)] = 248975, + [SMALL_STATE(3257)] = 249037, + [SMALL_STATE(3258)] = 249095, + [SMALL_STATE(3259)] = 249153, + [SMALL_STATE(3260)] = 249211, + [SMALL_STATE(3261)] = 249269, + [SMALL_STATE(3262)] = 249327, + [SMALL_STATE(3263)] = 249385, + [SMALL_STATE(3264)] = 249443, + [SMALL_STATE(3265)] = 249501, + [SMALL_STATE(3266)] = 249559, + [SMALL_STATE(3267)] = 249627, + [SMALL_STATE(3268)] = 249685, + [SMALL_STATE(3269)] = 249743, + [SMALL_STATE(3270)] = 249801, + [SMALL_STATE(3271)] = 249859, + [SMALL_STATE(3272)] = 249917, + [SMALL_STATE(3273)] = 249975, + [SMALL_STATE(3274)] = 250033, + [SMALL_STATE(3275)] = 250091, + [SMALL_STATE(3276)] = 250149, + [SMALL_STATE(3277)] = 250214, + [SMALL_STATE(3278)] = 250279, + [SMALL_STATE(3279)] = 250344, + [SMALL_STATE(3280)] = 250409, + [SMALL_STATE(3281)] = 250474, + [SMALL_STATE(3282)] = 250539, + [SMALL_STATE(3283)] = 250604, + [SMALL_STATE(3284)] = 250669, + [SMALL_STATE(3285)] = 250730, + [SMALL_STATE(3286)] = 250795, + [SMALL_STATE(3287)] = 250860, + [SMALL_STATE(3288)] = 250925, + [SMALL_STATE(3289)] = 250990, + [SMALL_STATE(3290)] = 251051, + [SMALL_STATE(3291)] = 251116, + [SMALL_STATE(3292)] = 251181, + [SMALL_STATE(3293)] = 251246, + [SMALL_STATE(3294)] = 251311, + [SMALL_STATE(3295)] = 251375, + [SMALL_STATE(3296)] = 251439, + [SMALL_STATE(3297)] = 251503, + [SMALL_STATE(3298)] = 251567, + [SMALL_STATE(3299)] = 251631, + [SMALL_STATE(3300)] = 251695, + [SMALL_STATE(3301)] = 251759, + [SMALL_STATE(3302)] = 251823, + [SMALL_STATE(3303)] = 251884, + [SMALL_STATE(3304)] = 251945, + [SMALL_STATE(3305)] = 252006, + [SMALL_STATE(3306)] = 252067, + [SMALL_STATE(3307)] = 252128, + [SMALL_STATE(3308)] = 252189, + [SMALL_STATE(3309)] = 252250, + [SMALL_STATE(3310)] = 252311, + [SMALL_STATE(3311)] = 252371, + [SMALL_STATE(3312)] = 252431, + [SMALL_STATE(3313)] = 252491, + [SMALL_STATE(3314)] = 252551, + [SMALL_STATE(3315)] = 252610, + [SMALL_STATE(3316)] = 252665, + [SMALL_STATE(3317)] = 252720, + [SMALL_STATE(3318)] = 252775, + [SMALL_STATE(3319)] = 252834, + [SMALL_STATE(3320)] = 252889, + [SMALL_STATE(3321)] = 252946, + [SMALL_STATE(3322)] = 253001, + [SMALL_STATE(3323)] = 253066, + [SMALL_STATE(3324)] = 253123, + [SMALL_STATE(3325)] = 253186, + [SMALL_STATE(3326)] = 253241, + [SMALL_STATE(3327)] = 253306, + [SMALL_STATE(3328)] = 253361, + [SMALL_STATE(3329)] = 253418, + [SMALL_STATE(3330)] = 253477, + [SMALL_STATE(3331)] = 253532, + [SMALL_STATE(3332)] = 253595, + [SMALL_STATE(3333)] = 253652, + [SMALL_STATE(3334)] = 253711, + [SMALL_STATE(3335)] = 253774, + [SMALL_STATE(3336)] = 253829, + [SMALL_STATE(3337)] = 253884, + [SMALL_STATE(3338)] = 253939, + [SMALL_STATE(3339)] = 253994, + [SMALL_STATE(3340)] = 254048, + [SMALL_STATE(3341)] = 254102, + [SMALL_STATE(3342)] = 254158, + [SMALL_STATE(3343)] = 254212, + [SMALL_STATE(3344)] = 254268, + [SMALL_STATE(3345)] = 254330, + [SMALL_STATE(3346)] = 254384, + [SMALL_STATE(3347)] = 254442, + [SMALL_STATE(3348)] = 254496, + [SMALL_STATE(3349)] = 254550, + [SMALL_STATE(3350)] = 254608, + [SMALL_STATE(3351)] = 254672, + [SMALL_STATE(3352)] = 254726, + [SMALL_STATE(3353)] = 254784, + [SMALL_STATE(3354)] = 254846, + [SMALL_STATE(3355)] = 254900, + [SMALL_STATE(3356)] = 254954, + [SMALL_STATE(3357)] = 255008, + [SMALL_STATE(3358)] = 255064, + [SMALL_STATE(3359)] = 255126, + [SMALL_STATE(3360)] = 255180, + [SMALL_STATE(3361)] = 255236, + [SMALL_STATE(3362)] = 255300, + [SMALL_STATE(3363)] = 255354, + [SMALL_STATE(3364)] = 255408, + [SMALL_STATE(3365)] = 255462, + [SMALL_STATE(3366)] = 255526, + [SMALL_STATE(3367)] = 255580, + [SMALL_STATE(3368)] = 255634, + [SMALL_STATE(3369)] = 255688, + [SMALL_STATE(3370)] = 255744, + [SMALL_STATE(3371)] = 255798, + [SMALL_STATE(3372)] = 255862, + [SMALL_STATE(3373)] = 255920, + [SMALL_STATE(3374)] = 255974, + [SMALL_STATE(3375)] = 256028, + [SMALL_STATE(3376)] = 256082, + [SMALL_STATE(3377)] = 256138, + [SMALL_STATE(3378)] = 256194, + [SMALL_STATE(3379)] = 256248, + [SMALL_STATE(3380)] = 256302, + [SMALL_STATE(3381)] = 256356, + [SMALL_STATE(3382)] = 256412, + [SMALL_STATE(3383)] = 256465, + [SMALL_STATE(3384)] = 256518, + [SMALL_STATE(3385)] = 256581, + [SMALL_STATE(3386)] = 256636, + [SMALL_STATE(3387)] = 256687, + [SMALL_STATE(3388)] = 256750, + [SMALL_STATE(3389)] = 256811, + [SMALL_STATE(3390)] = 256864, + [SMALL_STATE(3391)] = 256919, + [SMALL_STATE(3392)] = 256982, + [SMALL_STATE(3393)] = 257035, + [SMALL_STATE(3394)] = 257088, + [SMALL_STATE(3395)] = 257141, + [SMALL_STATE(3396)] = 257196, + [SMALL_STATE(3397)] = 257263, + [SMALL_STATE(3398)] = 257316, + [SMALL_STATE(3399)] = 257377, + [SMALL_STATE(3400)] = 257430, + [SMALL_STATE(3401)] = 257485, + [SMALL_STATE(3402)] = 257538, + [SMALL_STATE(3403)] = 257591, + [SMALL_STATE(3404)] = 257658, + [SMALL_STATE(3405)] = 257713, + [SMALL_STATE(3406)] = 257774, + [SMALL_STATE(3407)] = 257827, + [SMALL_STATE(3408)] = 257882, + [SMALL_STATE(3409)] = 257937, + [SMALL_STATE(3410)] = 257990, + [SMALL_STATE(3411)] = 258045, + [SMALL_STATE(3412)] = 258106, + [SMALL_STATE(3413)] = 258169, + [SMALL_STATE(3414)] = 258222, + [SMALL_STATE(3415)] = 258280, + [SMALL_STATE(3416)] = 258336, + [SMALL_STATE(3417)] = 258394, + [SMALL_STATE(3418)] = 258452, + [SMALL_STATE(3419)] = 258508, + [SMALL_STATE(3420)] = 258566, + [SMALL_STATE(3421)] = 258624, + [SMALL_STATE(3422)] = 258680, + [SMALL_STATE(3423)] = 258742, + [SMALL_STATE(3424)] = 258798, + [SMALL_STATE(3425)] = 258856, + [SMALL_STATE(3426)] = 258912, + [SMALL_STATE(3427)] = 258966, + [SMALL_STATE(3428)] = 259018, + [SMALL_STATE(3429)] = 259076, + [SMALL_STATE(3430)] = 259134, + [SMALL_STATE(3431)] = 259192, + [SMALL_STATE(3432)] = 259250, + [SMALL_STATE(3433)] = 259300, + [SMALL_STATE(3434)] = 259350, + [SMALL_STATE(3435)] = 259404, + [SMALL_STATE(3436)] = 259460, + [SMALL_STATE(3437)] = 259516, + [SMALL_STATE(3438)] = 259572, + [SMALL_STATE(3439)] = 259628, + [SMALL_STATE(3440)] = 259684, + [SMALL_STATE(3441)] = 259744, + [SMALL_STATE(3442)] = 259800, + [SMALL_STATE(3443)] = 259856, + [SMALL_STATE(3444)] = 259912, + [SMALL_STATE(3445)] = 259968, + [SMALL_STATE(3446)] = 260026, + [SMALL_STATE(3447)] = 260084, + [SMALL_STATE(3448)] = 260142, + [SMALL_STATE(3449)] = 260200, + [SMALL_STATE(3450)] = 260258, + [SMALL_STATE(3451)] = 260312, + [SMALL_STATE(3452)] = 260370, + [SMALL_STATE(3453)] = 260422, + [SMALL_STATE(3454)] = 260480, + [SMALL_STATE(3455)] = 260540, + [SMALL_STATE(3456)] = 260598, + [SMALL_STATE(3457)] = 260656, + [SMALL_STATE(3458)] = 260714, + [SMALL_STATE(3459)] = 260764, + [SMALL_STATE(3460)] = 260822, + [SMALL_STATE(3461)] = 260880, + [SMALL_STATE(3462)] = 260936, + [SMALL_STATE(3463)] = 260994, + [SMALL_STATE(3464)] = 261048, + [SMALL_STATE(3465)] = 261104, + [SMALL_STATE(3466)] = 261164, + [SMALL_STATE(3467)] = 261218, + [SMALL_STATE(3468)] = 261278, + [SMALL_STATE(3469)] = 261338, + [SMALL_STATE(3470)] = 261396, + [SMALL_STATE(3471)] = 261454, + [SMALL_STATE(3472)] = 261512, + [SMALL_STATE(3473)] = 261570, + [SMALL_STATE(3474)] = 261630, + [SMALL_STATE(3475)] = 261684, + [SMALL_STATE(3476)] = 261742, + [SMALL_STATE(3477)] = 261800, + [SMALL_STATE(3478)] = 261858, + [SMALL_STATE(3479)] = 261905, + [SMALL_STATE(3480)] = 261976, + [SMALL_STATE(3481)] = 262063, + [SMALL_STATE(3482)] = 262150, + [SMALL_STATE(3483)] = 262201, + [SMALL_STATE(3484)] = 262248, + [SMALL_STATE(3485)] = 262295, + [SMALL_STATE(3486)] = 262342, + [SMALL_STATE(3487)] = 262397, + [SMALL_STATE(3488)] = 262456, + [SMALL_STATE(3489)] = 262507, + [SMALL_STATE(3490)] = 262562, + [SMALL_STATE(3491)] = 262623, + [SMALL_STATE(3492)] = 262700, + [SMALL_STATE(3493)] = 262747, + [SMALL_STATE(3494)] = 262794, + [SMALL_STATE(3495)] = 262841, + [SMALL_STATE(3496)] = 262888, + [SMALL_STATE(3497)] = 262935, + [SMALL_STATE(3498)] = 262982, + [SMALL_STATE(3499)] = 263029, + [SMALL_STATE(3500)] = 263076, + [SMALL_STATE(3501)] = 263123, + [SMALL_STATE(3502)] = 263170, + [SMALL_STATE(3503)] = 263217, + [SMALL_STATE(3504)] = 263264, + [SMALL_STATE(3505)] = 263311, + [SMALL_STATE(3506)] = 263358, + [SMALL_STATE(3507)] = 263405, + [SMALL_STATE(3508)] = 263466, + [SMALL_STATE(3509)] = 263513, + [SMALL_STATE(3510)] = 263574, + [SMALL_STATE(3511)] = 263623, + [SMALL_STATE(3512)] = 263670, + [SMALL_STATE(3513)] = 263717, + [SMALL_STATE(3514)] = 263764, + [SMALL_STATE(3515)] = 263811, + [SMALL_STATE(3516)] = 263858, + [SMALL_STATE(3517)] = 263909, + [SMALL_STATE(3518)] = 263960, + [SMALL_STATE(3519)] = 264007, + [SMALL_STATE(3520)] = 264054, + [SMALL_STATE(3521)] = 264101, + [SMALL_STATE(3522)] = 264166, + [SMALL_STATE(3523)] = 264241, + [SMALL_STATE(3524)] = 264288, + [SMALL_STATE(3525)] = 264335, + [SMALL_STATE(3526)] = 264382, + [SMALL_STATE(3527)] = 264429, + [SMALL_STATE(3528)] = 264502, + [SMALL_STATE(3529)] = 264549, + [SMALL_STATE(3530)] = 264602, + [SMALL_STATE(3531)] = 264671, + [SMALL_STATE(3532)] = 264756, + [SMALL_STATE(3533)] = 264817, + [SMALL_STATE(3534)] = 264902, + [SMALL_STATE(3535)] = 264949, + [SMALL_STATE(3536)] = 265036, + [SMALL_STATE(3537)] = 265095, + [SMALL_STATE(3538)] = 265142, + [SMALL_STATE(3539)] = 265193, + [SMALL_STATE(3540)] = 265244, + [SMALL_STATE(3541)] = 265297, + [SMALL_STATE(3542)] = 265348, + [SMALL_STATE(3543)] = 265401, + [SMALL_STATE(3544)] = 265452, + [SMALL_STATE(3545)] = 265537, + [SMALL_STATE(3546)] = 265594, + [SMALL_STATE(3547)] = 265641, + [SMALL_STATE(3548)] = 265688, + [SMALL_STATE(3549)] = 265735, + [SMALL_STATE(3550)] = 265782, + [SMALL_STATE(3551)] = 265829, + [SMALL_STATE(3552)] = 265876, + [SMALL_STATE(3553)] = 265923, + [SMALL_STATE(3554)] = 265970, + [SMALL_STATE(3555)] = 266017, + [SMALL_STATE(3556)] = 266064, + [SMALL_STATE(3557)] = 266111, + [SMALL_STATE(3558)] = 266158, + [SMALL_STATE(3559)] = 266205, + [SMALL_STATE(3560)] = 266252, + [SMALL_STATE(3561)] = 266299, + [SMALL_STATE(3562)] = 266346, + [SMALL_STATE(3563)] = 266393, + [SMALL_STATE(3564)] = 266440, + [SMALL_STATE(3565)] = 266497, + [SMALL_STATE(3566)] = 266544, + [SMALL_STATE(3567)] = 266591, + [SMALL_STATE(3568)] = 266650, + [SMALL_STATE(3569)] = 266697, + [SMALL_STATE(3570)] = 266744, + [SMALL_STATE(3571)] = 266797, + [SMALL_STATE(3572)] = 266848, + [SMALL_STATE(3573)] = 266895, + [SMALL_STATE(3574)] = 266942, + [SMALL_STATE(3575)] = 266989, + [SMALL_STATE(3576)] = 267046, + [SMALL_STATE(3577)] = 267103, + [SMALL_STATE(3578)] = 267162, + [SMALL_STATE(3579)] = 267221, + [SMALL_STATE(3580)] = 267271, + [SMALL_STATE(3581)] = 267323, + [SMALL_STATE(3582)] = 267371, + [SMALL_STATE(3583)] = 267423, + [SMALL_STATE(3584)] = 267507, + [SMALL_STATE(3585)] = 267557, + [SMALL_STATE(3586)] = 267609, + [SMALL_STATE(3587)] = 267669, + [SMALL_STATE(3588)] = 267719, + [SMALL_STATE(3589)] = 267769, + [SMALL_STATE(3590)] = 267819, + [SMALL_STATE(3591)] = 267869, + [SMALL_STATE(3592)] = 267919, + [SMALL_STATE(3593)] = 267967, + [SMALL_STATE(3594)] = 268017, + [SMALL_STATE(3595)] = 268067, + [SMALL_STATE(3596)] = 268115, + [SMALL_STATE(3597)] = 268165, + [SMALL_STATE(3598)] = 268217, + [SMALL_STATE(3599)] = 268269, + [SMALL_STATE(3600)] = 268319, + [SMALL_STATE(3601)] = 268369, + [SMALL_STATE(3602)] = 268455, + [SMALL_STATE(3603)] = 268503, + [SMALL_STATE(3604)] = 268589, + [SMALL_STATE(3605)] = 268637, + [SMALL_STATE(3606)] = 268723, + [SMALL_STATE(3607)] = 268773, + [SMALL_STATE(3608)] = 268825, + [SMALL_STATE(3609)] = 268909, + [SMALL_STATE(3610)] = 268959, + [SMALL_STATE(3611)] = 269009, + [SMALL_STATE(3612)] = 269059, + [SMALL_STATE(3613)] = 269109, + [SMALL_STATE(3614)] = 269157, + [SMALL_STATE(3615)] = 269205, + [SMALL_STATE(3616)] = 269255, + [SMALL_STATE(3617)] = 269339, + [SMALL_STATE(3618)] = 269399, + [SMALL_STATE(3619)] = 269447, + [SMALL_STATE(3620)] = 269495, + [SMALL_STATE(3621)] = 269545, + [SMALL_STATE(3622)] = 269595, + [SMALL_STATE(3623)] = 269653, + [SMALL_STATE(3624)] = 269713, + [SMALL_STATE(3625)] = 269773, + [SMALL_STATE(3626)] = 269837, + [SMALL_STATE(3627)] = 269911, + [SMALL_STATE(3628)] = 269959, + [SMALL_STATE(3629)] = 270007, + [SMALL_STATE(3630)] = 270053, + [SMALL_STATE(3631)] = 270125, + [SMALL_STATE(3632)] = 270171, + [SMALL_STATE(3633)] = 270219, + [SMALL_STATE(3634)] = 270289, + [SMALL_STATE(3635)] = 270357, + [SMALL_STATE(3636)] = 270405, + [SMALL_STATE(3637)] = 270453, + [SMALL_STATE(3638)] = 270503, + [SMALL_STATE(3639)] = 270557, + [SMALL_STATE(3640)] = 270603, + [SMALL_STATE(3641)] = 270651, + [SMALL_STATE(3642)] = 270705, + [SMALL_STATE(3643)] = 270751, + [SMALL_STATE(3644)] = 270799, + [SMALL_STATE(3645)] = 270847, + [SMALL_STATE(3646)] = 270903, + [SMALL_STATE(3647)] = 270951, + [SMALL_STATE(3648)] = 271009, + [SMALL_STATE(3649)] = 271055, + [SMALL_STATE(3650)] = 271111, + [SMALL_STATE(3651)] = 271187, + [SMALL_STATE(3652)] = 271237, + [SMALL_STATE(3653)] = 271282, + [SMALL_STATE(3654)] = 271329, + [SMALL_STATE(3655)] = 271374, + [SMALL_STATE(3656)] = 271419, + [SMALL_STATE(3657)] = 271464, + [SMALL_STATE(3658)] = 271509, + [SMALL_STATE(3659)] = 271554, + [SMALL_STATE(3660)] = 271599, + [SMALL_STATE(3661)] = 271646, + [SMALL_STATE(3662)] = 271693, + [SMALL_STATE(3663)] = 271738, + [SMALL_STATE(3664)] = 271783, + [SMALL_STATE(3665)] = 271828, + [SMALL_STATE(3666)] = 271873, + [SMALL_STATE(3667)] = 271920, + [SMALL_STATE(3668)] = 271965, + [SMALL_STATE(3669)] = 272010, + [SMALL_STATE(3670)] = 272057, + [SMALL_STATE(3671)] = 272102, + [SMALL_STATE(3672)] = 272147, + [SMALL_STATE(3673)] = 272192, + [SMALL_STATE(3674)] = 272237, + [SMALL_STATE(3675)] = 272282, + [SMALL_STATE(3676)] = 272327, + [SMALL_STATE(3677)] = 272372, + [SMALL_STATE(3678)] = 272417, + [SMALL_STATE(3679)] = 272462, + [SMALL_STATE(3680)] = 272507, + [SMALL_STATE(3681)] = 272552, + [SMALL_STATE(3682)] = 272599, + [SMALL_STATE(3683)] = 272644, + [SMALL_STATE(3684)] = 272689, + [SMALL_STATE(3685)] = 272734, + [SMALL_STATE(3686)] = 272779, + [SMALL_STATE(3687)] = 272824, + [SMALL_STATE(3688)] = 272869, + [SMALL_STATE(3689)] = 272914, + [SMALL_STATE(3690)] = 272967, + [SMALL_STATE(3691)] = 273012, + [SMALL_STATE(3692)] = 273057, + [SMALL_STATE(3693)] = 273106, + [SMALL_STATE(3694)] = 273153, + [SMALL_STATE(3695)] = 273198, + [SMALL_STATE(3696)] = 273243, + [SMALL_STATE(3697)] = 273288, + [SMALL_STATE(3698)] = 273333, + [SMALL_STATE(3699)] = 273380, + [SMALL_STATE(3700)] = 273425, + [SMALL_STATE(3701)] = 273470, + [SMALL_STATE(3702)] = 273519, + [SMALL_STATE(3703)] = 273564, + [SMALL_STATE(3704)] = 273609, + [SMALL_STATE(3705)] = 273654, + [SMALL_STATE(3706)] = 273701, + [SMALL_STATE(3707)] = 273746, + [SMALL_STATE(3708)] = 273801, + [SMALL_STATE(3709)] = 273848, + [SMALL_STATE(3710)] = 273903, + [SMALL_STATE(3711)] = 273950, + [SMALL_STATE(3712)] = 273997, + [SMALL_STATE(3713)] = 274046, + [SMALL_STATE(3714)] = 274095, + [SMALL_STATE(3715)] = 274142, + [SMALL_STATE(3716)] = 274191, + [SMALL_STATE(3717)] = 274240, + [SMALL_STATE(3718)] = 274289, + [SMALL_STATE(3719)] = 274338, + [SMALL_STATE(3720)] = 274387, + [SMALL_STATE(3721)] = 274460, + [SMALL_STATE(3722)] = 274511, + [SMALL_STATE(3723)] = 274556, + [SMALL_STATE(3724)] = 274609, + [SMALL_STATE(3725)] = 274658, + [SMALL_STATE(3726)] = 274703, + [SMALL_STATE(3727)] = 274754, + [SMALL_STATE(3728)] = 274801, + [SMALL_STATE(3729)] = 274848, + [SMALL_STATE(3730)] = 274895, + [SMALL_STATE(3731)] = 274942, + [SMALL_STATE(3732)] = 274989, + [SMALL_STATE(3733)] = 275070, + [SMALL_STATE(3734)] = 275151, + [SMALL_STATE(3735)] = 275198, + [SMALL_STATE(3736)] = 275245, + [SMALL_STATE(3737)] = 275290, + [SMALL_STATE(3738)] = 275337, + [SMALL_STATE(3739)] = 275384, + [SMALL_STATE(3740)] = 275431, + [SMALL_STATE(3741)] = 275496, + [SMALL_STATE(3742)] = 275563, + [SMALL_STATE(3743)] = 275632, + [SMALL_STATE(3744)] = 275703, + [SMALL_STATE(3745)] = 275766, + [SMALL_STATE(3746)] = 275811, + [SMALL_STATE(3747)] = 275870, + [SMALL_STATE(3748)] = 275929, + [SMALL_STATE(3749)] = 275978, + [SMALL_STATE(3750)] = 276027, + [SMALL_STATE(3751)] = 276082, + [SMALL_STATE(3752)] = 276127, + [SMALL_STATE(3753)] = 276172, + [SMALL_STATE(3754)] = 276217, + [SMALL_STATE(3755)] = 276266, + [SMALL_STATE(3756)] = 276311, + [SMALL_STATE(3757)] = 276358, + [SMALL_STATE(3758)] = 276407, + [SMALL_STATE(3759)] = 276488, + [SMALL_STATE(3760)] = 276547, + [SMALL_STATE(3761)] = 276592, + [SMALL_STATE(3762)] = 276637, + [SMALL_STATE(3763)] = 276682, + [SMALL_STATE(3764)] = 276741, + [SMALL_STATE(3765)] = 276792, + [SMALL_STATE(3766)] = 276839, + [SMALL_STATE(3767)] = 276884, + [SMALL_STATE(3768)] = 276943, + [SMALL_STATE(3769)] = 277022, + [SMALL_STATE(3770)] = 277071, + [SMALL_STATE(3771)] = 277118, + [SMALL_STATE(3772)] = 277163, + [SMALL_STATE(3773)] = 277212, + [SMALL_STATE(3774)] = 277263, + [SMALL_STATE(3775)] = 277308, + [SMALL_STATE(3776)] = 277353, + [SMALL_STATE(3777)] = 277400, + [SMALL_STATE(3778)] = 277445, + [SMALL_STATE(3779)] = 277494, + [SMALL_STATE(3780)] = 277573, + [SMALL_STATE(3781)] = 277618, + [SMALL_STATE(3782)] = 277663, + [SMALL_STATE(3783)] = 277708, + [SMALL_STATE(3784)] = 277757, + [SMALL_STATE(3785)] = 277814, + [SMALL_STATE(3786)] = 277863, + [SMALL_STATE(3787)] = 277908, + [SMALL_STATE(3788)] = 277957, + [SMALL_STATE(3789)] = 278006, + [SMALL_STATE(3790)] = 278051, + [SMALL_STATE(3791)] = 278096, + [SMALL_STATE(3792)] = 278141, + [SMALL_STATE(3793)] = 278198, + [SMALL_STATE(3794)] = 278243, + [SMALL_STATE(3795)] = 278292, + [SMALL_STATE(3796)] = 278337, + [SMALL_STATE(3797)] = 278394, + [SMALL_STATE(3798)] = 278439, + [SMALL_STATE(3799)] = 278484, + [SMALL_STATE(3800)] = 278541, + [SMALL_STATE(3801)] = 278620, + [SMALL_STATE(3802)] = 278668, + [SMALL_STATE(3803)] = 278726, + [SMALL_STATE(3804)] = 278770, + [SMALL_STATE(3805)] = 278816, + [SMALL_STATE(3806)] = 278860, + [SMALL_STATE(3807)] = 278914, + [SMALL_STATE(3808)] = 278958, + [SMALL_STATE(3809)] = 279002, + [SMALL_STATE(3810)] = 279046, + [SMALL_STATE(3811)] = 279096, + [SMALL_STATE(3812)] = 279146, + [SMALL_STATE(3813)] = 279190, + [SMALL_STATE(3814)] = 279234, + [SMALL_STATE(3815)] = 279284, + [SMALL_STATE(3816)] = 279336, + [SMALL_STATE(3817)] = 279382, + [SMALL_STATE(3818)] = 279426, + [SMALL_STATE(3819)] = 279484, + [SMALL_STATE(3820)] = 279528, + [SMALL_STATE(3821)] = 279608, + [SMALL_STATE(3822)] = 279688, + [SMALL_STATE(3823)] = 279760, + [SMALL_STATE(3824)] = 279842, + [SMALL_STATE(3825)] = 279904, + [SMALL_STATE(3826)] = 279976, + [SMALL_STATE(3827)] = 280024, + [SMALL_STATE(3828)] = 280072, + [SMALL_STATE(3829)] = 280142, + [SMALL_STATE(3830)] = 280188, + [SMALL_STATE(3831)] = 280256, + [SMALL_STATE(3832)] = 280322, + [SMALL_STATE(3833)] = 280366, + [SMALL_STATE(3834)] = 280410, + [SMALL_STATE(3835)] = 280454, + [SMALL_STATE(3836)] = 280502, + [SMALL_STATE(3837)] = 280550, + [SMALL_STATE(3838)] = 280618, + [SMALL_STATE(3839)] = 280664, + [SMALL_STATE(3840)] = 280712, + [SMALL_STATE(3841)] = 280764, + [SMALL_STATE(3842)] = 280810, + [SMALL_STATE(3843)] = 280858, + [SMALL_STATE(3844)] = 280904, + [SMALL_STATE(3845)] = 280948, + [SMALL_STATE(3846)] = 280996, + [SMALL_STATE(3847)] = 281040, + [SMALL_STATE(3848)] = 281100, + [SMALL_STATE(3849)] = 281144, + [SMALL_STATE(3850)] = 281190, + [SMALL_STATE(3851)] = 281236, + [SMALL_STATE(3852)] = 281284, + [SMALL_STATE(3853)] = 281334, + [SMALL_STATE(3854)] = 281380, + [SMALL_STATE(3855)] = 281428, + [SMALL_STATE(3856)] = 281474, + [SMALL_STATE(3857)] = 281520, + [SMALL_STATE(3858)] = 281574, + [SMALL_STATE(3859)] = 281618, + [SMALL_STATE(3860)] = 281662, + [SMALL_STATE(3861)] = 281712, + [SMALL_STATE(3862)] = 281774, + [SMALL_STATE(3863)] = 281818, + [SMALL_STATE(3864)] = 281866, + [SMALL_STATE(3865)] = 281914, + [SMALL_STATE(3866)] = 281978, + [SMALL_STATE(3867)] = 282026, + [SMALL_STATE(3868)] = 282074, + [SMALL_STATE(3869)] = 282122, + [SMALL_STATE(3870)] = 282170, + [SMALL_STATE(3871)] = 282214, + [SMALL_STATE(3872)] = 282260, + [SMALL_STATE(3873)] = 282308, + [SMALL_STATE(3874)] = 282356, + [SMALL_STATE(3875)] = 282408, + [SMALL_STATE(3876)] = 282474, + [SMALL_STATE(3877)] = 282522, + [SMALL_STATE(3878)] = 282598, + [SMALL_STATE(3879)] = 282646, + [SMALL_STATE(3880)] = 282690, + [SMALL_STATE(3881)] = 282748, + [SMALL_STATE(3882)] = 282794, + [SMALL_STATE(3883)] = 282840, + [SMALL_STATE(3884)] = 282888, + [SMALL_STATE(3885)] = 282936, + [SMALL_STATE(3886)] = 283016, + [SMALL_STATE(3887)] = 283096, + [SMALL_STATE(3888)] = 283142, + [SMALL_STATE(3889)] = 283186, + [SMALL_STATE(3890)] = 283236, + [SMALL_STATE(3891)] = 283280, + [SMALL_STATE(3892)] = 283356, + [SMALL_STATE(3893)] = 283402, + [SMALL_STATE(3894)] = 283448, + [SMALL_STATE(3895)] = 283492, + [SMALL_STATE(3896)] = 283570, + [SMALL_STATE(3897)] = 283616, + [SMALL_STATE(3898)] = 283662, + [SMALL_STATE(3899)] = 283718, + [SMALL_STATE(3900)] = 283764, + [SMALL_STATE(3901)] = 283810, + [SMALL_STATE(3902)] = 283890, + [SMALL_STATE(3903)] = 283954, + [SMALL_STATE(3904)] = 284020, + [SMALL_STATE(3905)] = 284088, + [SMALL_STATE(3906)] = 284158, + [SMALL_STATE(3907)] = 284220, + [SMALL_STATE(3908)] = 284266, + [SMALL_STATE(3909)] = 284324, + [SMALL_STATE(3910)] = 284382, + [SMALL_STATE(3911)] = 284426, + [SMALL_STATE(3912)] = 284472, + [SMALL_STATE(3913)] = 284518, + [SMALL_STATE(3914)] = 284600, + [SMALL_STATE(3915)] = 284648, + [SMALL_STATE(3916)] = 284692, + [SMALL_STATE(3917)] = 284738, + [SMALL_STATE(3918)] = 284784, + [SMALL_STATE(3919)] = 284830, + [SMALL_STATE(3920)] = 284906, + [SMALL_STATE(3921)] = 284950, + [SMALL_STATE(3922)] = 284996, + [SMALL_STATE(3923)] = 285044, + [SMALL_STATE(3924)] = 285092, + [SMALL_STATE(3925)] = 285172, + [SMALL_STATE(3926)] = 285230, + [SMALL_STATE(3927)] = 285276, + [SMALL_STATE(3928)] = 285324, + [SMALL_STATE(3929)] = 285370, + [SMALL_STATE(3930)] = 285424, + [SMALL_STATE(3931)] = 285468, + [SMALL_STATE(3932)] = 285520, + [SMALL_STATE(3933)] = 285564, + [SMALL_STATE(3934)] = 285642, + [SMALL_STATE(3935)] = 285720, + [SMALL_STATE(3936)] = 285770, + [SMALL_STATE(3937)] = 285848, + [SMALL_STATE(3938)] = 285896, + [SMALL_STATE(3939)] = 285946, + [SMALL_STATE(3940)] = 285994, + [SMALL_STATE(3941)] = 286042, + [SMALL_STATE(3942)] = 286090, + [SMALL_STATE(3943)] = 286142, + [SMALL_STATE(3944)] = 286194, + [SMALL_STATE(3945)] = 286240, + [SMALL_STATE(3946)] = 286296, + [SMALL_STATE(3947)] = 286350, + [SMALL_STATE(3948)] = 286432, + [SMALL_STATE(3949)] = 286480, + [SMALL_STATE(3950)] = 286528, + [SMALL_STATE(3951)] = 286574, + [SMALL_STATE(3952)] = 286632, + [SMALL_STATE(3953)] = 286706, + [SMALL_STATE(3954)] = 286752, + [SMALL_STATE(3955)] = 286810, + [SMALL_STATE(3956)] = 286856, + [SMALL_STATE(3957)] = 286902, + [SMALL_STATE(3958)] = 286950, + [SMALL_STATE(3959)] = 287004, + [SMALL_STATE(3960)] = 287052, + [SMALL_STATE(3961)] = 287106, + [SMALL_STATE(3962)] = 287154, + [SMALL_STATE(3963)] = 287198, + [SMALL_STATE(3964)] = 287246, + [SMALL_STATE(3965)] = 287316, + [SMALL_STATE(3966)] = 287362, + [SMALL_STATE(3967)] = 287418, + [SMALL_STATE(3968)] = 287464, + [SMALL_STATE(3969)] = 287512, + [SMALL_STATE(3970)] = 287558, + [SMALL_STATE(3971)] = 287606, + [SMALL_STATE(3972)] = 287652, + [SMALL_STATE(3973)] = 287710, + [SMALL_STATE(3974)] = 287768, + [SMALL_STATE(3975)] = 287815, + [SMALL_STATE(3976)] = 287860, + [SMALL_STATE(3977)] = 287937, + [SMALL_STATE(3978)] = 287980, + [SMALL_STATE(3979)] = 288023, + [SMALL_STATE(3980)] = 288100, + [SMALL_STATE(3981)] = 288143, + [SMALL_STATE(3982)] = 288186, + [SMALL_STATE(3983)] = 288229, + [SMALL_STATE(3984)] = 288274, + [SMALL_STATE(3985)] = 288319, + [SMALL_STATE(3986)] = 288372, + [SMALL_STATE(3987)] = 288415, + [SMALL_STATE(3988)] = 288468, + [SMALL_STATE(3989)] = 288511, + [SMALL_STATE(3990)] = 288554, + [SMALL_STATE(3991)] = 288597, + [SMALL_STATE(3992)] = 288640, + [SMALL_STATE(3993)] = 288683, + [SMALL_STATE(3994)] = 288726, + [SMALL_STATE(3995)] = 288769, + [SMALL_STATE(3996)] = 288812, + [SMALL_STATE(3997)] = 288855, + [SMALL_STATE(3998)] = 288898, + [SMALL_STATE(3999)] = 288941, + [SMALL_STATE(4000)] = 288984, + [SMALL_STATE(4001)] = 289027, + [SMALL_STATE(4002)] = 289070, + [SMALL_STATE(4003)] = 289113, + [SMALL_STATE(4004)] = 289156, + [SMALL_STATE(4005)] = 289201, + [SMALL_STATE(4006)] = 289244, + [SMALL_STATE(4007)] = 289287, + [SMALL_STATE(4008)] = 289330, + [SMALL_STATE(4009)] = 289373, + [SMALL_STATE(4010)] = 289416, + [SMALL_STATE(4011)] = 289459, + [SMALL_STATE(4012)] = 289502, + [SMALL_STATE(4013)] = 289545, + [SMALL_STATE(4014)] = 289588, + [SMALL_STATE(4015)] = 289631, + [SMALL_STATE(4016)] = 289674, + [SMALL_STATE(4017)] = 289717, + [SMALL_STATE(4018)] = 289760, + [SMALL_STATE(4019)] = 289803, + [SMALL_STATE(4020)] = 289846, + [SMALL_STATE(4021)] = 289889, + [SMALL_STATE(4022)] = 289932, + [SMALL_STATE(4023)] = 289975, + [SMALL_STATE(4024)] = 290018, + [SMALL_STATE(4025)] = 290061, + [SMALL_STATE(4026)] = 290104, + [SMALL_STATE(4027)] = 290147, + [SMALL_STATE(4028)] = 290190, + [SMALL_STATE(4029)] = 290233, + [SMALL_STATE(4030)] = 290276, + [SMALL_STATE(4031)] = 290319, + [SMALL_STATE(4032)] = 290362, + [SMALL_STATE(4033)] = 290405, + [SMALL_STATE(4034)] = 290448, + [SMALL_STATE(4035)] = 290491, + [SMALL_STATE(4036)] = 290534, + [SMALL_STATE(4037)] = 290577, + [SMALL_STATE(4038)] = 290620, + [SMALL_STATE(4039)] = 290663, + [SMALL_STATE(4040)] = 290706, + [SMALL_STATE(4041)] = 290749, + [SMALL_STATE(4042)] = 290792, + [SMALL_STATE(4043)] = 290835, + [SMALL_STATE(4044)] = 290878, + [SMALL_STATE(4045)] = 290921, + [SMALL_STATE(4046)] = 290964, + [SMALL_STATE(4047)] = 291009, + [SMALL_STATE(4048)] = 291052, + [SMALL_STATE(4049)] = 291095, + [SMALL_STATE(4050)] = 291138, + [SMALL_STATE(4051)] = 291181, + [SMALL_STATE(4052)] = 291224, + [SMALL_STATE(4053)] = 291267, + [SMALL_STATE(4054)] = 291310, + [SMALL_STATE(4055)] = 291353, + [SMALL_STATE(4056)] = 291396, + [SMALL_STATE(4057)] = 291439, + [SMALL_STATE(4058)] = 291482, + [SMALL_STATE(4059)] = 291525, + [SMALL_STATE(4060)] = 291568, + [SMALL_STATE(4061)] = 291611, + [SMALL_STATE(4062)] = 291654, + [SMALL_STATE(4063)] = 291697, + [SMALL_STATE(4064)] = 291740, + [SMALL_STATE(4065)] = 291783, + [SMALL_STATE(4066)] = 291826, + [SMALL_STATE(4067)] = 291869, + [SMALL_STATE(4068)] = 291912, + [SMALL_STATE(4069)] = 291955, + [SMALL_STATE(4070)] = 291998, + [SMALL_STATE(4071)] = 292041, + [SMALL_STATE(4072)] = 292084, + [SMALL_STATE(4073)] = 292127, + [SMALL_STATE(4074)] = 292170, + [SMALL_STATE(4075)] = 292213, + [SMALL_STATE(4076)] = 292256, + [SMALL_STATE(4077)] = 292299, + [SMALL_STATE(4078)] = 292342, + [SMALL_STATE(4079)] = 292385, + [SMALL_STATE(4080)] = 292428, + [SMALL_STATE(4081)] = 292471, + [SMALL_STATE(4082)] = 292514, + [SMALL_STATE(4083)] = 292557, + [SMALL_STATE(4084)] = 292600, + [SMALL_STATE(4085)] = 292643, + [SMALL_STATE(4086)] = 292686, + [SMALL_STATE(4087)] = 292729, + [SMALL_STATE(4088)] = 292772, + [SMALL_STATE(4089)] = 292815, + [SMALL_STATE(4090)] = 292858, + [SMALL_STATE(4091)] = 292901, + [SMALL_STATE(4092)] = 292944, + [SMALL_STATE(4093)] = 292987, + [SMALL_STATE(4094)] = 293030, + [SMALL_STATE(4095)] = 293073, + [SMALL_STATE(4096)] = 293150, + [SMALL_STATE(4097)] = 293197, + [SMALL_STATE(4098)] = 293240, + [SMALL_STATE(4099)] = 293317, + [SMALL_STATE(4100)] = 293374, + [SMALL_STATE(4101)] = 293419, + [SMALL_STATE(4102)] = 293500, + [SMALL_STATE(4103)] = 293579, + [SMALL_STATE(4104)] = 293626, + [SMALL_STATE(4105)] = 293673, + [SMALL_STATE(4106)] = 293726, + [SMALL_STATE(4107)] = 293773, + [SMALL_STATE(4108)] = 293830, + [SMALL_STATE(4109)] = 293887, + [SMALL_STATE(4110)] = 293948, + [SMALL_STATE(4111)] = 294017, + [SMALL_STATE(4112)] = 294084, + [SMALL_STATE(4113)] = 294149, + [SMALL_STATE(4114)] = 294212, + [SMALL_STATE(4115)] = 294291, + [SMALL_STATE(4116)] = 294370, + [SMALL_STATE(4117)] = 294421, + [SMALL_STATE(4118)] = 294464, + [SMALL_STATE(4119)] = 294507, + [SMALL_STATE(4120)] = 294550, + [SMALL_STATE(4121)] = 294593, + [SMALL_STATE(4122)] = 294640, + [SMALL_STATE(4123)] = 294683, + [SMALL_STATE(4124)] = 294726, + [SMALL_STATE(4125)] = 294769, + [SMALL_STATE(4126)] = 294812, + [SMALL_STATE(4127)] = 294855, + [SMALL_STATE(4128)] = 294898, + [SMALL_STATE(4129)] = 294941, + [SMALL_STATE(4130)] = 294984, + [SMALL_STATE(4131)] = 295027, + [SMALL_STATE(4132)] = 295070, + [SMALL_STATE(4133)] = 295113, + [SMALL_STATE(4134)] = 295156, + [SMALL_STATE(4135)] = 295199, + [SMALL_STATE(4136)] = 295242, + [SMALL_STATE(4137)] = 295285, + [SMALL_STATE(4138)] = 295328, + [SMALL_STATE(4139)] = 295371, + [SMALL_STATE(4140)] = 295414, + [SMALL_STATE(4141)] = 295457, + [SMALL_STATE(4142)] = 295500, + [SMALL_STATE(4143)] = 295543, + [SMALL_STATE(4144)] = 295586, + [SMALL_STATE(4145)] = 295629, + [SMALL_STATE(4146)] = 295672, + [SMALL_STATE(4147)] = 295715, + [SMALL_STATE(4148)] = 295758, + [SMALL_STATE(4149)] = 295801, + [SMALL_STATE(4150)] = 295844, + [SMALL_STATE(4151)] = 295887, + [SMALL_STATE(4152)] = 295930, + [SMALL_STATE(4153)] = 295973, + [SMALL_STATE(4154)] = 296016, + [SMALL_STATE(4155)] = 296059, + [SMALL_STATE(4156)] = 296102, + [SMALL_STATE(4157)] = 296145, + [SMALL_STATE(4158)] = 296188, + [SMALL_STATE(4159)] = 296231, + [SMALL_STATE(4160)] = 296274, + [SMALL_STATE(4161)] = 296317, + [SMALL_STATE(4162)] = 296360, + [SMALL_STATE(4163)] = 296403, + [SMALL_STATE(4164)] = 296446, + [SMALL_STATE(4165)] = 296489, + [SMALL_STATE(4166)] = 296532, + [SMALL_STATE(4167)] = 296575, + [SMALL_STATE(4168)] = 296618, + [SMALL_STATE(4169)] = 296661, + [SMALL_STATE(4170)] = 296704, + [SMALL_STATE(4171)] = 296747, + [SMALL_STATE(4172)] = 296790, + [SMALL_STATE(4173)] = 296833, + [SMALL_STATE(4174)] = 296876, + [SMALL_STATE(4175)] = 296919, + [SMALL_STATE(4176)] = 296962, + [SMALL_STATE(4177)] = 297005, + [SMALL_STATE(4178)] = 297052, + [SMALL_STATE(4179)] = 297097, + [SMALL_STATE(4180)] = 297142, + [SMALL_STATE(4181)] = 297185, + [SMALL_STATE(4182)] = 297230, + [SMALL_STATE(4183)] = 297273, + [SMALL_STATE(4184)] = 297316, + [SMALL_STATE(4185)] = 297359, + [SMALL_STATE(4186)] = 297402, + [SMALL_STATE(4187)] = 297445, + [SMALL_STATE(4188)] = 297488, + [SMALL_STATE(4189)] = 297531, + [SMALL_STATE(4190)] = 297582, + [SMALL_STATE(4191)] = 297625, + [SMALL_STATE(4192)] = 297670, + [SMALL_STATE(4193)] = 297715, + [SMALL_STATE(4194)] = 297758, + [SMALL_STATE(4195)] = 297801, + [SMALL_STATE(4196)] = 297844, + [SMALL_STATE(4197)] = 297887, + [SMALL_STATE(4198)] = 297930, + [SMALL_STATE(4199)] = 297973, + [SMALL_STATE(4200)] = 298016, + [SMALL_STATE(4201)] = 298059, + [SMALL_STATE(4202)] = 298112, + [SMALL_STATE(4203)] = 298157, + [SMALL_STATE(4204)] = 298202, + [SMALL_STATE(4205)] = 298247, + [SMALL_STATE(4206)] = 298292, + [SMALL_STATE(4207)] = 298349, + [SMALL_STATE(4208)] = 298398, + [SMALL_STATE(4209)] = 298445, + [SMALL_STATE(4210)] = 298494, + [SMALL_STATE(4211)] = 298541, + [SMALL_STATE(4212)] = 298588, + [SMALL_STATE(4213)] = 298635, + [SMALL_STATE(4214)] = 298688, + [SMALL_STATE(4215)] = 298735, + [SMALL_STATE(4216)] = 298782, + [SMALL_STATE(4217)] = 298827, + [SMALL_STATE(4218)] = 298898, + [SMALL_STATE(4219)] = 298949, + [SMALL_STATE(4220)] = 298994, + [SMALL_STATE(4221)] = 299039, + [SMALL_STATE(4222)] = 299084, + [SMALL_STATE(4223)] = 299137, + [SMALL_STATE(4224)] = 299182, + [SMALL_STATE(4225)] = 299227, + [SMALL_STATE(4226)] = 299274, + [SMALL_STATE(4227)] = 299321, + [SMALL_STATE(4228)] = 299368, + [SMALL_STATE(4229)] = 299415, + [SMALL_STATE(4230)] = 299462, + [SMALL_STATE(4231)] = 299509, + [SMALL_STATE(4232)] = 299558, + [SMALL_STATE(4233)] = 299605, + [SMALL_STATE(4234)] = 299654, + [SMALL_STATE(4235)] = 299699, + [SMALL_STATE(4236)] = 299744, + [SMALL_STATE(4237)] = 299789, + [SMALL_STATE(4238)] = 299834, + [SMALL_STATE(4239)] = 299879, + [SMALL_STATE(4240)] = 299924, + [SMALL_STATE(4241)] = 299969, + [SMALL_STATE(4242)] = 300014, + [SMALL_STATE(4243)] = 300091, + [SMALL_STATE(4244)] = 300146, + [SMALL_STATE(4245)] = 300191, + [SMALL_STATE(4246)] = 300236, + [SMALL_STATE(4247)] = 300281, + [SMALL_STATE(4248)] = 300326, + [SMALL_STATE(4249)] = 300371, + [SMALL_STATE(4250)] = 300416, + [SMALL_STATE(4251)] = 300461, + [SMALL_STATE(4252)] = 300506, + [SMALL_STATE(4253)] = 300551, + [SMALL_STATE(4254)] = 300593, + [SMALL_STATE(4255)] = 300635, + [SMALL_STATE(4256)] = 300677, + [SMALL_STATE(4257)] = 300723, + [SMALL_STATE(4258)] = 300765, + [SMALL_STATE(4259)] = 300807, + [SMALL_STATE(4260)] = 300849, + [SMALL_STATE(4261)] = 300893, + [SMALL_STATE(4262)] = 300935, + [SMALL_STATE(4263)] = 300977, + [SMALL_STATE(4264)] = 301019, + [SMALL_STATE(4265)] = 301061, + [SMALL_STATE(4266)] = 301103, + [SMALL_STATE(4267)] = 301145, + [SMALL_STATE(4268)] = 301187, + [SMALL_STATE(4269)] = 301233, + [SMALL_STATE(4270)] = 301275, + [SMALL_STATE(4271)] = 301319, + [SMALL_STATE(4272)] = 301361, + [SMALL_STATE(4273)] = 301407, + [SMALL_STATE(4274)] = 301453, + [SMALL_STATE(4275)] = 301499, + [SMALL_STATE(4276)] = 301545, + [SMALL_STATE(4277)] = 301589, + [SMALL_STATE(4278)] = 301643, + [SMALL_STATE(4279)] = 301689, + [SMALL_STATE(4280)] = 301735, + [SMALL_STATE(4281)] = 301781, + [SMALL_STATE(4282)] = 301829, + [SMALL_STATE(4283)] = 301875, + [SMALL_STATE(4284)] = 301923, + [SMALL_STATE(4285)] = 301967, + [SMALL_STATE(4286)] = 302011, + [SMALL_STATE(4287)] = 302055, + [SMALL_STATE(4288)] = 302099, + [SMALL_STATE(4289)] = 302143, + [SMALL_STATE(4290)] = 302195, + [SMALL_STATE(4291)] = 302237, + [SMALL_STATE(4292)] = 302279, + [SMALL_STATE(4293)] = 302321, + [SMALL_STATE(4294)] = 302363, + [SMALL_STATE(4295)] = 302405, + [SMALL_STATE(4296)] = 302447, + [SMALL_STATE(4297)] = 302489, + [SMALL_STATE(4298)] = 302531, + [SMALL_STATE(4299)] = 302573, + [SMALL_STATE(4300)] = 302615, + [SMALL_STATE(4301)] = 302657, + [SMALL_STATE(4302)] = 302699, + [SMALL_STATE(4303)] = 302741, + [SMALL_STATE(4304)] = 302783, + [SMALL_STATE(4305)] = 302825, + [SMALL_STATE(4306)] = 302867, + [SMALL_STATE(4307)] = 302909, + [SMALL_STATE(4308)] = 302955, + [SMALL_STATE(4309)] = 302997, + [SMALL_STATE(4310)] = 303041, + [SMALL_STATE(4311)] = 303083, + [SMALL_STATE(4312)] = 303125, + [SMALL_STATE(4313)] = 303167, + [SMALL_STATE(4314)] = 303209, + [SMALL_STATE(4315)] = 303251, + [SMALL_STATE(4316)] = 303293, + [SMALL_STATE(4317)] = 303335, + [SMALL_STATE(4318)] = 303377, + [SMALL_STATE(4319)] = 303419, + [SMALL_STATE(4320)] = 303461, + [SMALL_STATE(4321)] = 303503, + [SMALL_STATE(4322)] = 303547, + [SMALL_STATE(4323)] = 303589, + [SMALL_STATE(4324)] = 303631, + [SMALL_STATE(4325)] = 303673, + [SMALL_STATE(4326)] = 303715, + [SMALL_STATE(4327)] = 303761, + [SMALL_STATE(4328)] = 303803, + [SMALL_STATE(4329)] = 303845, + [SMALL_STATE(4330)] = 303887, + [SMALL_STATE(4331)] = 303929, + [SMALL_STATE(4332)] = 303971, + [SMALL_STATE(4333)] = 304013, + [SMALL_STATE(4334)] = 304055, + [SMALL_STATE(4335)] = 304097, + [SMALL_STATE(4336)] = 304139, + [SMALL_STATE(4337)] = 304181, + [SMALL_STATE(4338)] = 304223, + [SMALL_STATE(4339)] = 304265, + [SMALL_STATE(4340)] = 304307, + [SMALL_STATE(4341)] = 304349, + [SMALL_STATE(4342)] = 304391, + [SMALL_STATE(4343)] = 304437, + [SMALL_STATE(4344)] = 304479, + [SMALL_STATE(4345)] = 304521, + [SMALL_STATE(4346)] = 304563, + [SMALL_STATE(4347)] = 304605, + [SMALL_STATE(4348)] = 304647, + [SMALL_STATE(4349)] = 304689, + [SMALL_STATE(4350)] = 304731, + [SMALL_STATE(4351)] = 304773, + [SMALL_STATE(4352)] = 304815, + [SMALL_STATE(4353)] = 304857, + [SMALL_STATE(4354)] = 304899, + [SMALL_STATE(4355)] = 304941, + [SMALL_STATE(4356)] = 304983, + [SMALL_STATE(4357)] = 305025, + [SMALL_STATE(4358)] = 305067, + [SMALL_STATE(4359)] = 305109, + [SMALL_STATE(4360)] = 305151, + [SMALL_STATE(4361)] = 305193, + [SMALL_STATE(4362)] = 305235, + [SMALL_STATE(4363)] = 305277, + [SMALL_STATE(4364)] = 305319, + [SMALL_STATE(4365)] = 305361, + [SMALL_STATE(4366)] = 305417, + [SMALL_STATE(4367)] = 305459, + [SMALL_STATE(4368)] = 305501, + [SMALL_STATE(4369)] = 305543, + [SMALL_STATE(4370)] = 305585, + [SMALL_STATE(4371)] = 305627, + [SMALL_STATE(4372)] = 305669, + [SMALL_STATE(4373)] = 305711, + [SMALL_STATE(4374)] = 305753, + [SMALL_STATE(4375)] = 305795, + [SMALL_STATE(4376)] = 305837, + [SMALL_STATE(4377)] = 305879, + [SMALL_STATE(4378)] = 305921, + [SMALL_STATE(4379)] = 305963, + [SMALL_STATE(4380)] = 306005, + [SMALL_STATE(4381)] = 306047, + [SMALL_STATE(4382)] = 306089, + [SMALL_STATE(4383)] = 306131, + [SMALL_STATE(4384)] = 306173, + [SMALL_STATE(4385)] = 306215, + [SMALL_STATE(4386)] = 306257, + [SMALL_STATE(4387)] = 306299, + [SMALL_STATE(4388)] = 306340, + [SMALL_STATE(4389)] = 306381, + [SMALL_STATE(4390)] = 306426, + [SMALL_STATE(4391)] = 306471, + [SMALL_STATE(4392)] = 306518, + [SMALL_STATE(4393)] = 306563, + [SMALL_STATE(4394)] = 306608, + [SMALL_STATE(4395)] = 306653, + [SMALL_STATE(4396)] = 306706, + [SMALL_STATE(4397)] = 306749, + [SMALL_STATE(4398)] = 306790, + [SMALL_STATE(4399)] = 306831, + [SMALL_STATE(4400)] = 306878, + [SMALL_STATE(4401)] = 306923, + [SMALL_STATE(4402)] = 306970, + [SMALL_STATE(4403)] = 307015, + [SMALL_STATE(4404)] = 307060, + [SMALL_STATE(4405)] = 307105, + [SMALL_STATE(4406)] = 307160, + [SMALL_STATE(4407)] = 307201, + [SMALL_STATE(4408)] = 307242, + [SMALL_STATE(4409)] = 307287, + [SMALL_STATE(4410)] = 307332, + [SMALL_STATE(4411)] = 307377, + [SMALL_STATE(4412)] = 307452, + [SMALL_STATE(4413)] = 307527, + [SMALL_STATE(4414)] = 307572, + [SMALL_STATE(4415)] = 307617, + [SMALL_STATE(4416)] = 307692, + [SMALL_STATE(4417)] = 307767, + [SMALL_STATE(4418)] = 307808, + [SMALL_STATE(4419)] = 307877, + [SMALL_STATE(4420)] = 307918, + [SMALL_STATE(4421)] = 307973, + [SMALL_STATE(4422)] = 308020, + [SMALL_STATE(4423)] = 308067, + [SMALL_STATE(4424)] = 308112, + [SMALL_STATE(4425)] = 308159, + [SMALL_STATE(4426)] = 308200, + [SMALL_STATE(4427)] = 308241, + [SMALL_STATE(4428)] = 308282, + [SMALL_STATE(4429)] = 308327, + [SMALL_STATE(4430)] = 308368, + [SMALL_STATE(4431)] = 308409, + [SMALL_STATE(4432)] = 308450, + [SMALL_STATE(4433)] = 308491, + [SMALL_STATE(4434)] = 308532, + [SMALL_STATE(4435)] = 308573, + [SMALL_STATE(4436)] = 308620, + [SMALL_STATE(4437)] = 308665, + [SMALL_STATE(4438)] = 308706, + [SMALL_STATE(4439)] = 308755, + [SMALL_STATE(4440)] = 308796, + [SMALL_STATE(4441)] = 308841, + [SMALL_STATE(4442)] = 308882, + [SMALL_STATE(4443)] = 308923, + [SMALL_STATE(4444)] = 308964, + [SMALL_STATE(4445)] = 309005, + [SMALL_STATE(4446)] = 309050, + [SMALL_STATE(4447)] = 309095, + [SMALL_STATE(4448)] = 309140, + [SMALL_STATE(4449)] = 309195, + [SMALL_STATE(4450)] = 309250, + [SMALL_STATE(4451)] = 309295, + [SMALL_STATE(4452)] = 309370, + [SMALL_STATE(4453)] = 309411, + [SMALL_STATE(4454)] = 309456, + [SMALL_STATE(4455)] = 309497, + [SMALL_STATE(4456)] = 309538, + [SMALL_STATE(4457)] = 309589, + [SMALL_STATE(4458)] = 309636, + [SMALL_STATE(4459)] = 309681, + [SMALL_STATE(4460)] = 309726, + [SMALL_STATE(4461)] = 309767, + [SMALL_STATE(4462)] = 309812, + [SMALL_STATE(4463)] = 309857, + [SMALL_STATE(4464)] = 309902, + [SMALL_STATE(4465)] = 309947, + [SMALL_STATE(4466)] = 309992, + [SMALL_STATE(4467)] = 310033, + [SMALL_STATE(4468)] = 310074, + [SMALL_STATE(4469)] = 310115, + [SMALL_STATE(4470)] = 310156, + [SMALL_STATE(4471)] = 310213, + [SMALL_STATE(4472)] = 310258, + [SMALL_STATE(4473)] = 310299, + [SMALL_STATE(4474)] = 310340, + [SMALL_STATE(4475)] = 310397, + [SMALL_STATE(4476)] = 310438, + [SMALL_STATE(4477)] = 310487, + [SMALL_STATE(4478)] = 310528, + [SMALL_STATE(4479)] = 310573, + [SMALL_STATE(4480)] = 310628, + [SMALL_STATE(4481)] = 310673, + [SMALL_STATE(4482)] = 310728, + [SMALL_STATE(4483)] = 310769, + [SMALL_STATE(4484)] = 310816, + [SMALL_STATE(4485)] = 310861, + [SMALL_STATE(4486)] = 310906, + [SMALL_STATE(4487)] = 310981, + [SMALL_STATE(4488)] = 311028, + [SMALL_STATE(4489)] = 311089, + [SMALL_STATE(4490)] = 311152, + [SMALL_STATE(4491)] = 311193, + [SMALL_STATE(4492)] = 311258, + [SMALL_STATE(4493)] = 311325, + [SMALL_STATE(4494)] = 311366, + [SMALL_STATE(4495)] = 311407, + [SMALL_STATE(4496)] = 311448, + [SMALL_STATE(4497)] = 311489, + [SMALL_STATE(4498)] = 311530, + [SMALL_STATE(4499)] = 311589, + [SMALL_STATE(4500)] = 311644, + [SMALL_STATE(4501)] = 311685, + [SMALL_STATE(4502)] = 311730, + [SMALL_STATE(4503)] = 311771, + [SMALL_STATE(4504)] = 311813, + [SMALL_STATE(4505)] = 311855, + [SMALL_STATE(4506)] = 311897, + [SMALL_STATE(4507)] = 311947, + [SMALL_STATE(4508)] = 311989, + [SMALL_STATE(4509)] = 312031, + [SMALL_STATE(4510)] = 312073, + [SMALL_STATE(4511)] = 312113, + [SMALL_STATE(4512)] = 312156, + [SMALL_STATE(4513)] = 312193, + [SMALL_STATE(4514)] = 312249, + [SMALL_STATE(4515)] = 312305, + [SMALL_STATE(4516)] = 312361, + [SMALL_STATE(4517)] = 312417, + [SMALL_STATE(4518)] = 312473, + [SMALL_STATE(4519)] = 312529, + [SMALL_STATE(4520)] = 312585, + [SMALL_STATE(4521)] = 312641, + [SMALL_STATE(4522)] = 312697, + [SMALL_STATE(4523)] = 312753, + [SMALL_STATE(4524)] = 312809, + [SMALL_STATE(4525)] = 312865, + [SMALL_STATE(4526)] = 312921, + [SMALL_STATE(4527)] = 312977, + [SMALL_STATE(4528)] = 313033, + [SMALL_STATE(4529)] = 313089, + [SMALL_STATE(4530)] = 313145, + [SMALL_STATE(4531)] = 313201, + [SMALL_STATE(4532)] = 313257, + [SMALL_STATE(4533)] = 313313, + [SMALL_STATE(4534)] = 313369, + [SMALL_STATE(4535)] = 313425, + [SMALL_STATE(4536)] = 313481, + [SMALL_STATE(4537)] = 313537, + [SMALL_STATE(4538)] = 313593, + [SMALL_STATE(4539)] = 313649, + [SMALL_STATE(4540)] = 313705, + [SMALL_STATE(4541)] = 313761, + [SMALL_STATE(4542)] = 313817, + [SMALL_STATE(4543)] = 313873, + [SMALL_STATE(4544)] = 313929, + [SMALL_STATE(4545)] = 313985, + [SMALL_STATE(4546)] = 314041, + [SMALL_STATE(4547)] = 314097, + [SMALL_STATE(4548)] = 314153, + [SMALL_STATE(4549)] = 314209, + [SMALL_STATE(4550)] = 314265, + [SMALL_STATE(4551)] = 314321, + [SMALL_STATE(4552)] = 314377, + [SMALL_STATE(4553)] = 314433, + [SMALL_STATE(4554)] = 314489, + [SMALL_STATE(4555)] = 314545, + [SMALL_STATE(4556)] = 314601, + [SMALL_STATE(4557)] = 314657, + [SMALL_STATE(4558)] = 314713, + [SMALL_STATE(4559)] = 314769, + [SMALL_STATE(4560)] = 314825, + [SMALL_STATE(4561)] = 314881, + [SMALL_STATE(4562)] = 314937, + [SMALL_STATE(4563)] = 314993, + [SMALL_STATE(4564)] = 315049, + [SMALL_STATE(4565)] = 315083, + [SMALL_STATE(4566)] = 315139, + [SMALL_STATE(4567)] = 315195, + [SMALL_STATE(4568)] = 315251, + [SMALL_STATE(4569)] = 315307, + [SMALL_STATE(4570)] = 315363, + [SMALL_STATE(4571)] = 315419, + [SMALL_STATE(4572)] = 315475, + [SMALL_STATE(4573)] = 315531, + [SMALL_STATE(4574)] = 315587, + [SMALL_STATE(4575)] = 315643, + [SMALL_STATE(4576)] = 315699, + [SMALL_STATE(4577)] = 315755, + [SMALL_STATE(4578)] = 315811, + [SMALL_STATE(4579)] = 315867, + [SMALL_STATE(4580)] = 315923, + [SMALL_STATE(4581)] = 315979, + [SMALL_STATE(4582)] = 316035, + [SMALL_STATE(4583)] = 316091, + [SMALL_STATE(4584)] = 316147, + [SMALL_STATE(4585)] = 316203, + [SMALL_STATE(4586)] = 316259, + [SMALL_STATE(4587)] = 316315, + [SMALL_STATE(4588)] = 316371, + [SMALL_STATE(4589)] = 316427, + [SMALL_STATE(4590)] = 316483, + [SMALL_STATE(4591)] = 316539, + [SMALL_STATE(4592)] = 316595, + [SMALL_STATE(4593)] = 316651, + [SMALL_STATE(4594)] = 316707, + [SMALL_STATE(4595)] = 316763, + [SMALL_STATE(4596)] = 316819, + [SMALL_STATE(4597)] = 316875, + [SMALL_STATE(4598)] = 316931, + [SMALL_STATE(4599)] = 316987, + [SMALL_STATE(4600)] = 317043, + [SMALL_STATE(4601)] = 317099, + [SMALL_STATE(4602)] = 317155, + [SMALL_STATE(4603)] = 317211, + [SMALL_STATE(4604)] = 317267, + [SMALL_STATE(4605)] = 317323, + [SMALL_STATE(4606)] = 317379, + [SMALL_STATE(4607)] = 317435, + [SMALL_STATE(4608)] = 317488, + [SMALL_STATE(4609)] = 317541, + [SMALL_STATE(4610)] = 317596, + [SMALL_STATE(4611)] = 317649, + [SMALL_STATE(4612)] = 317704, + [SMALL_STATE(4613)] = 317757, + [SMALL_STATE(4614)] = 317810, + [SMALL_STATE(4615)] = 317863, + [SMALL_STATE(4616)] = 317918, + [SMALL_STATE(4617)] = 317971, + [SMALL_STATE(4618)] = 318024, + [SMALL_STATE(4619)] = 318077, + [SMALL_STATE(4620)] = 318132, + [SMALL_STATE(4621)] = 318187, + [SMALL_STATE(4622)] = 318240, + [SMALL_STATE(4623)] = 318295, + [SMALL_STATE(4624)] = 318348, + [SMALL_STATE(4625)] = 318401, + [SMALL_STATE(4626)] = 318456, + [SMALL_STATE(4627)] = 318509, + [SMALL_STATE(4628)] = 318562, + [SMALL_STATE(4629)] = 318615, + [SMALL_STATE(4630)] = 318670, + [SMALL_STATE(4631)] = 318723, + [SMALL_STATE(4632)] = 318778, + [SMALL_STATE(4633)] = 318831, + [SMALL_STATE(4634)] = 318884, + [SMALL_STATE(4635)] = 318937, + [SMALL_STATE(4636)] = 318990, + [SMALL_STATE(4637)] = 319045, + [SMALL_STATE(4638)] = 319098, + [SMALL_STATE(4639)] = 319151, + [SMALL_STATE(4640)] = 319196, + [SMALL_STATE(4641)] = 319249, + [SMALL_STATE(4642)] = 319302, + [SMALL_STATE(4643)] = 319355, + [SMALL_STATE(4644)] = 319408, + [SMALL_STATE(4645)] = 319463, + [SMALL_STATE(4646)] = 319516, + [SMALL_STATE(4647)] = 319571, + [SMALL_STATE(4648)] = 319624, + [SMALL_STATE(4649)] = 319677, + [SMALL_STATE(4650)] = 319730, + [SMALL_STATE(4651)] = 319783, + [SMALL_STATE(4652)] = 319836, + [SMALL_STATE(4653)] = 319889, + [SMALL_STATE(4654)] = 319942, + [SMALL_STATE(4655)] = 319995, + [SMALL_STATE(4656)] = 320048, + [SMALL_STATE(4657)] = 320101, + [SMALL_STATE(4658)] = 320154, + [SMALL_STATE(4659)] = 320209, + [SMALL_STATE(4660)] = 320262, + [SMALL_STATE(4661)] = 320315, + [SMALL_STATE(4662)] = 320368, + [SMALL_STATE(4663)] = 320421, + [SMALL_STATE(4664)] = 320474, + [SMALL_STATE(4665)] = 320529, + [SMALL_STATE(4666)] = 320582, + [SMALL_STATE(4667)] = 320635, + [SMALL_STATE(4668)] = 320688, + [SMALL_STATE(4669)] = 320741, + [SMALL_STATE(4670)] = 320794, + [SMALL_STATE(4671)] = 320847, + [SMALL_STATE(4672)] = 320900, + [SMALL_STATE(4673)] = 320953, + [SMALL_STATE(4674)] = 321006, + [SMALL_STATE(4675)] = 321059, + [SMALL_STATE(4676)] = 321112, + [SMALL_STATE(4677)] = 321165, + [SMALL_STATE(4678)] = 321218, + [SMALL_STATE(4679)] = 321271, + [SMALL_STATE(4680)] = 321324, + [SMALL_STATE(4681)] = 321377, + [SMALL_STATE(4682)] = 321430, + [SMALL_STATE(4683)] = 321483, + [SMALL_STATE(4684)] = 321536, + [SMALL_STATE(4685)] = 321589, + [SMALL_STATE(4686)] = 321642, + [SMALL_STATE(4687)] = 321695, + [SMALL_STATE(4688)] = 321748, + [SMALL_STATE(4689)] = 321801, + [SMALL_STATE(4690)] = 321854, + [SMALL_STATE(4691)] = 321907, + [SMALL_STATE(4692)] = 321960, + [SMALL_STATE(4693)] = 322013, + [SMALL_STATE(4694)] = 322066, + [SMALL_STATE(4695)] = 322119, + [SMALL_STATE(4696)] = 322172, + [SMALL_STATE(4697)] = 322227, + [SMALL_STATE(4698)] = 322282, + [SMALL_STATE(4699)] = 322335, + [SMALL_STATE(4700)] = 322388, + [SMALL_STATE(4701)] = 322443, + [SMALL_STATE(4702)] = 322496, + [SMALL_STATE(4703)] = 322549, + [SMALL_STATE(4704)] = 322602, + [SMALL_STATE(4705)] = 322655, + [SMALL_STATE(4706)] = 322708, + [SMALL_STATE(4707)] = 322761, + [SMALL_STATE(4708)] = 322814, + [SMALL_STATE(4709)] = 322867, + [SMALL_STATE(4710)] = 322920, + [SMALL_STATE(4711)] = 322973, + [SMALL_STATE(4712)] = 323026, + [SMALL_STATE(4713)] = 323079, + [SMALL_STATE(4714)] = 323132, + [SMALL_STATE(4715)] = 323185, + [SMALL_STATE(4716)] = 323238, + [SMALL_STATE(4717)] = 323291, + [SMALL_STATE(4718)] = 323346, + [SMALL_STATE(4719)] = 323399, + [SMALL_STATE(4720)] = 323452, + [SMALL_STATE(4721)] = 323505, + [SMALL_STATE(4722)] = 323558, + [SMALL_STATE(4723)] = 323611, + [SMALL_STATE(4724)] = 323664, + [SMALL_STATE(4725)] = 323717, + [SMALL_STATE(4726)] = 323770, + [SMALL_STATE(4727)] = 323823, + [SMALL_STATE(4728)] = 323876, + [SMALL_STATE(4729)] = 323929, + [SMALL_STATE(4730)] = 323984, + [SMALL_STATE(4731)] = 324037, + [SMALL_STATE(4732)] = 324092, + [SMALL_STATE(4733)] = 324147, + [SMALL_STATE(4734)] = 324200, + [SMALL_STATE(4735)] = 324253, + [SMALL_STATE(4736)] = 324306, + [SMALL_STATE(4737)] = 324359, + [SMALL_STATE(4738)] = 324412, + [SMALL_STATE(4739)] = 324465, + [SMALL_STATE(4740)] = 324518, + [SMALL_STATE(4741)] = 324571, + [SMALL_STATE(4742)] = 324626, + [SMALL_STATE(4743)] = 324679, + [SMALL_STATE(4744)] = 324732, + [SMALL_STATE(4745)] = 324785, + [SMALL_STATE(4746)] = 324838, + [SMALL_STATE(4747)] = 324891, + [SMALL_STATE(4748)] = 324944, + [SMALL_STATE(4749)] = 324997, + [SMALL_STATE(4750)] = 325050, + [SMALL_STATE(4751)] = 325103, + [SMALL_STATE(4752)] = 325156, + [SMALL_STATE(4753)] = 325209, + [SMALL_STATE(4754)] = 325262, + [SMALL_STATE(4755)] = 325315, + [SMALL_STATE(4756)] = 325368, + [SMALL_STATE(4757)] = 325421, + [SMALL_STATE(4758)] = 325474, + [SMALL_STATE(4759)] = 325527, + [SMALL_STATE(4760)] = 325580, + [SMALL_STATE(4761)] = 325633, + [SMALL_STATE(4762)] = 325686, + [SMALL_STATE(4763)] = 325739, + [SMALL_STATE(4764)] = 325794, + [SMALL_STATE(4765)] = 325847, + [SMALL_STATE(4766)] = 325900, + [SMALL_STATE(4767)] = 325953, + [SMALL_STATE(4768)] = 326008, + [SMALL_STATE(4769)] = 326061, + [SMALL_STATE(4770)] = 326116, + [SMALL_STATE(4771)] = 326169, + [SMALL_STATE(4772)] = 326222, + [SMALL_STATE(4773)] = 326277, + [SMALL_STATE(4774)] = 326330, + [SMALL_STATE(4775)] = 326372, + [SMALL_STATE(4776)] = 326414, + [SMALL_STATE(4777)] = 326456, + [SMALL_STATE(4778)] = 326498, + [SMALL_STATE(4779)] = 326540, + [SMALL_STATE(4780)] = 326582, + [SMALL_STATE(4781)] = 326624, + [SMALL_STATE(4782)] = 326666, + [SMALL_STATE(4783)] = 326704, + [SMALL_STATE(4784)] = 326742, + [SMALL_STATE(4785)] = 326780, + [SMALL_STATE(4786)] = 326818, + [SMALL_STATE(4787)] = 326855, + [SMALL_STATE(4788)] = 326892, + [SMALL_STATE(4789)] = 326929, + [SMALL_STATE(4790)] = 326966, + [SMALL_STATE(4791)] = 327003, + [SMALL_STATE(4792)] = 327040, + [SMALL_STATE(4793)] = 327077, + [SMALL_STATE(4794)] = 327114, + [SMALL_STATE(4795)] = 327150, + [SMALL_STATE(4796)] = 327202, + [SMALL_STATE(4797)] = 327238, + [SMALL_STATE(4798)] = 327274, + [SMALL_STATE(4799)] = 327310, + [SMALL_STATE(4800)] = 327362, + [SMALL_STATE(4801)] = 327414, + [SMALL_STATE(4802)] = 327450, + [SMALL_STATE(4803)] = 327486, + [SMALL_STATE(4804)] = 327522, + [SMALL_STATE(4805)] = 327558, + [SMALL_STATE(4806)] = 327609, + [SMALL_STATE(4807)] = 327658, + [SMALL_STATE(4808)] = 327709, + [SMALL_STATE(4809)] = 327760, + [SMALL_STATE(4810)] = 327811, + [SMALL_STATE(4811)] = 327862, + [SMALL_STATE(4812)] = 327911, + [SMALL_STATE(4813)] = 327962, + [SMALL_STATE(4814)] = 328013, + [SMALL_STATE(4815)] = 328064, + [SMALL_STATE(4816)] = 328115, + [SMALL_STATE(4817)] = 328166, + [SMALL_STATE(4818)] = 328217, + [SMALL_STATE(4819)] = 328268, + [SMALL_STATE(4820)] = 328319, + [SMALL_STATE(4821)] = 328370, + [SMALL_STATE(4822)] = 328421, + [SMALL_STATE(4823)] = 328472, + [SMALL_STATE(4824)] = 328523, + [SMALL_STATE(4825)] = 328557, + [SMALL_STATE(4826)] = 328605, + [SMALL_STATE(4827)] = 328653, + [SMALL_STATE(4828)] = 328701, + [SMALL_STATE(4829)] = 328735, + [SMALL_STATE(4830)] = 328769, + [SMALL_STATE(4831)] = 328815, + [SMALL_STATE(4832)] = 328849, + [SMALL_STATE(4833)] = 328897, + [SMALL_STATE(4834)] = 328942, + [SMALL_STATE(4835)] = 328987, + [SMALL_STATE(4836)] = 329016, + [SMALL_STATE(4837)] = 329044, + [SMALL_STATE(4838)] = 329090, + [SMALL_STATE(4839)] = 329136, + [SMALL_STATE(4840)] = 329164, + [SMALL_STATE(4841)] = 329210, + [SMALL_STATE(4842)] = 329256, + [SMALL_STATE(4843)] = 329284, + [SMALL_STATE(4844)] = 329312, + [SMALL_STATE(4845)] = 329340, + [SMALL_STATE(4846)] = 329368, + [SMALL_STATE(4847)] = 329396, + [SMALL_STATE(4848)] = 329442, + [SMALL_STATE(4849)] = 329480, + [SMALL_STATE(4850)] = 329508, + [SMALL_STATE(4851)] = 329536, + [SMALL_STATE(4852)] = 329574, + [SMALL_STATE(4853)] = 329620, + [SMALL_STATE(4854)] = 329666, + [SMALL_STATE(4855)] = 329712, + [SMALL_STATE(4856)] = 329758, + [SMALL_STATE(4857)] = 329792, + [SMALL_STATE(4858)] = 329820, + [SMALL_STATE(4859)] = 329848, + [SMALL_STATE(4860)] = 329876, + [SMALL_STATE(4861)] = 329904, + [SMALL_STATE(4862)] = 329950, + [SMALL_STATE(4863)] = 329978, + [SMALL_STATE(4864)] = 330024, + [SMALL_STATE(4865)] = 330070, + [SMALL_STATE(4866)] = 330098, + [SMALL_STATE(4867)] = 330144, + [SMALL_STATE(4868)] = 330190, + [SMALL_STATE(4869)] = 330236, + [SMALL_STATE(4870)] = 330264, + [SMALL_STATE(4871)] = 330310, + [SMALL_STATE(4872)] = 330356, + [SMALL_STATE(4873)] = 330380, + [SMALL_STATE(4874)] = 330416, + [SMALL_STATE(4875)] = 330456, + [SMALL_STATE(4876)] = 330496, + [SMALL_STATE(4877)] = 330532, + [SMALL_STATE(4878)] = 330572, + [SMALL_STATE(4879)] = 330612, + [SMALL_STATE(4880)] = 330652, + [SMALL_STATE(4881)] = 330688, + [SMALL_STATE(4882)] = 330724, + [SMALL_STATE(4883)] = 330760, + [SMALL_STATE(4884)] = 330796, + [SMALL_STATE(4885)] = 330828, + [SMALL_STATE(4886)] = 330860, + [SMALL_STATE(4887)] = 330900, + [SMALL_STATE(4888)] = 330936, + [SMALL_STATE(4889)] = 330976, + [SMALL_STATE(4890)] = 331012, + [SMALL_STATE(4891)] = 331052, + [SMALL_STATE(4892)] = 331092, + [SMALL_STATE(4893)] = 331132, + [SMALL_STATE(4894)] = 331168, + [SMALL_STATE(4895)] = 331204, + [SMALL_STATE(4896)] = 331244, + [SMALL_STATE(4897)] = 331284, + [SMALL_STATE(4898)] = 331310, + [SMALL_STATE(4899)] = 331346, + [SMALL_STATE(4900)] = 331382, + [SMALL_STATE(4901)] = 331414, + [SMALL_STATE(4902)] = 331454, + [SMALL_STATE(4903)] = 331480, + [SMALL_STATE(4904)] = 331512, + [SMALL_STATE(4905)] = 331548, + [SMALL_STATE(4906)] = 331584, + [SMALL_STATE(4907)] = 331608, + [SMALL_STATE(4908)] = 331634, + [SMALL_STATE(4909)] = 331658, + [SMALL_STATE(4910)] = 331682, + [SMALL_STATE(4911)] = 331718, + [SMALL_STATE(4912)] = 331758, + [SMALL_STATE(4913)] = 331794, + [SMALL_STATE(4914)] = 331818, + [SMALL_STATE(4915)] = 331854, + [SMALL_STATE(4916)] = 331894, + [SMALL_STATE(4917)] = 331918, + [SMALL_STATE(4918)] = 331958, + [SMALL_STATE(4919)] = 331998, + [SMALL_STATE(4920)] = 332023, + [SMALL_STATE(4921)] = 332046, + [SMALL_STATE(4922)] = 332083, + [SMALL_STATE(4923)] = 332110, + [SMALL_STATE(4924)] = 332143, + [SMALL_STATE(4925)] = 332174, + [SMALL_STATE(4926)] = 332205, + [SMALL_STATE(4927)] = 332230, + [SMALL_STATE(4928)] = 332263, + [SMALL_STATE(4929)] = 332298, + [SMALL_STATE(4930)] = 332329, + [SMALL_STATE(4931)] = 332360, + [SMALL_STATE(4932)] = 332397, + [SMALL_STATE(4933)] = 332434, + [SMALL_STATE(4934)] = 332471, + [SMALL_STATE(4935)] = 332502, + [SMALL_STATE(4936)] = 332535, + [SMALL_STATE(4937)] = 332566, + [SMALL_STATE(4938)] = 332597, + [SMALL_STATE(4939)] = 332622, + [SMALL_STATE(4940)] = 332657, + [SMALL_STATE(4941)] = 332684, + [SMALL_STATE(4942)] = 332715, + [SMALL_STATE(4943)] = 332740, + [SMALL_STATE(4944)] = 332771, + [SMALL_STATE(4945)] = 332796, + [SMALL_STATE(4946)] = 332831, + [SMALL_STATE(4947)] = 332864, + [SMALL_STATE(4948)] = 332899, + [SMALL_STATE(4949)] = 332932, + [SMALL_STATE(4950)] = 332963, + [SMALL_STATE(4951)] = 333000, + [SMALL_STATE(4952)] = 333031, + [SMALL_STATE(4953)] = 333066, + [SMALL_STATE(4954)] = 333103, + [SMALL_STATE(4955)] = 333134, + [SMALL_STATE(4956)] = 333171, + [SMALL_STATE(4957)] = 333202, + [SMALL_STATE(4958)] = 333225, + [SMALL_STATE(4959)] = 333256, + [SMALL_STATE(4960)] = 333293, + [SMALL_STATE(4961)] = 333324, + [SMALL_STATE(4962)] = 333355, + [SMALL_STATE(4963)] = 333386, + [SMALL_STATE(4964)] = 333417, + [SMALL_STATE(4965)] = 333454, + [SMALL_STATE(4966)] = 333491, + [SMALL_STATE(4967)] = 333522, + [SMALL_STATE(4968)] = 333557, + [SMALL_STATE(4969)] = 333588, + [SMALL_STATE(4970)] = 333619, + [SMALL_STATE(4971)] = 333650, + [SMALL_STATE(4972)] = 333687, + [SMALL_STATE(4973)] = 333724, + [SMALL_STATE(4974)] = 333755, + [SMALL_STATE(4975)] = 333786, + [SMALL_STATE(4976)] = 333809, + [SMALL_STATE(4977)] = 333832, + [SMALL_STATE(4978)] = 333855, + [SMALL_STATE(4979)] = 333886, + [SMALL_STATE(4980)] = 333917, + [SMALL_STATE(4981)] = 333942, + [SMALL_STATE(4982)] = 333973, + [SMALL_STATE(4983)] = 333996, + [SMALL_STATE(4984)] = 334021, + [SMALL_STATE(4985)] = 334054, + [SMALL_STATE(4986)] = 334085, + [SMALL_STATE(4987)] = 334116, + [SMALL_STATE(4988)] = 334141, + [SMALL_STATE(4989)] = 334172, + [SMALL_STATE(4990)] = 334203, + [SMALL_STATE(4991)] = 334234, + [SMALL_STATE(4992)] = 334271, + [SMALL_STATE(4993)] = 334306, + [SMALL_STATE(4994)] = 334343, + [SMALL_STATE(4995)] = 334376, + [SMALL_STATE(4996)] = 334407, + [SMALL_STATE(4997)] = 334440, + [SMALL_STATE(4998)] = 334477, + [SMALL_STATE(4999)] = 334514, + [SMALL_STATE(5000)] = 334551, + [SMALL_STATE(5001)] = 334582, + [SMALL_STATE(5002)] = 334613, + [SMALL_STATE(5003)] = 334644, + [SMALL_STATE(5004)] = 334676, + [SMALL_STATE(5005)] = 334704, + [SMALL_STATE(5006)] = 334728, + [SMALL_STATE(5007)] = 334760, + [SMALL_STATE(5008)] = 334782, + [SMALL_STATE(5009)] = 334804, + [SMALL_STATE(5010)] = 334836, + [SMALL_STATE(5011)] = 334858, + [SMALL_STATE(5012)] = 334886, + [SMALL_STATE(5013)] = 334914, + [SMALL_STATE(5014)] = 334942, + [SMALL_STATE(5015)] = 334974, + [SMALL_STATE(5016)] = 335002, + [SMALL_STATE(5017)] = 335030, + [SMALL_STATE(5018)] = 335058, + [SMALL_STATE(5019)] = 335090, + [SMALL_STATE(5020)] = 335114, + [SMALL_STATE(5021)] = 335136, + [SMALL_STATE(5022)] = 335166, + [SMALL_STATE(5023)] = 335194, + [SMALL_STATE(5024)] = 335222, + [SMALL_STATE(5025)] = 335250, + [SMALL_STATE(5026)] = 335278, + [SMALL_STATE(5027)] = 335300, + [SMALL_STATE(5028)] = 335328, + [SMALL_STATE(5029)] = 335356, + [SMALL_STATE(5030)] = 335378, + [SMALL_STATE(5031)] = 335406, + [SMALL_STATE(5032)] = 335438, + [SMALL_STATE(5033)] = 335466, + [SMALL_STATE(5034)] = 335494, + [SMALL_STATE(5035)] = 335522, + [SMALL_STATE(5036)] = 335544, + [SMALL_STATE(5037)] = 335572, + [SMALL_STATE(5038)] = 335600, + [SMALL_STATE(5039)] = 335632, + [SMALL_STATE(5040)] = 335664, + [SMALL_STATE(5041)] = 335692, + [SMALL_STATE(5042)] = 335720, + [SMALL_STATE(5043)] = 335748, + [SMALL_STATE(5044)] = 335776, + [SMALL_STATE(5045)] = 335804, + [SMALL_STATE(5046)] = 335828, + [SMALL_STATE(5047)] = 335856, + [SMALL_STATE(5048)] = 335884, + [SMALL_STATE(5049)] = 335912, + [SMALL_STATE(5050)] = 335934, + [SMALL_STATE(5051)] = 335956, + [SMALL_STATE(5052)] = 335984, + [SMALL_STATE(5053)] = 336016, + [SMALL_STATE(5054)] = 336050, + [SMALL_STATE(5055)] = 336078, + [SMALL_STATE(5056)] = 336100, + [SMALL_STATE(5057)] = 336122, + [SMALL_STATE(5058)] = 336154, + [SMALL_STATE(5059)] = 336186, + [SMALL_STATE(5060)] = 336214, + [SMALL_STATE(5061)] = 336236, + [SMALL_STATE(5062)] = 336268, + [SMALL_STATE(5063)] = 336296, + [SMALL_STATE(5064)] = 336328, + [SMALL_STATE(5065)] = 336356, + [SMALL_STATE(5066)] = 336384, + [SMALL_STATE(5067)] = 336416, + [SMALL_STATE(5068)] = 336450, + [SMALL_STATE(5069)] = 336482, + [SMALL_STATE(5070)] = 336514, + [SMALL_STATE(5071)] = 336536, + [SMALL_STATE(5072)] = 336568, + [SMALL_STATE(5073)] = 336602, + [SMALL_STATE(5074)] = 336630, + [SMALL_STATE(5075)] = 336662, + [SMALL_STATE(5076)] = 336694, + [SMALL_STATE(5077)] = 336724, + [SMALL_STATE(5078)] = 336748, + [SMALL_STATE(5079)] = 336776, + [SMALL_STATE(5080)] = 336807, + [SMALL_STATE(5081)] = 336838, + [SMALL_STATE(5082)] = 336869, + [SMALL_STATE(5083)] = 336900, + [SMALL_STATE(5084)] = 336931, + [SMALL_STATE(5085)] = 336962, + [SMALL_STATE(5086)] = 336993, + [SMALL_STATE(5087)] = 337024, + [SMALL_STATE(5088)] = 337049, + [SMALL_STATE(5089)] = 337074, + [SMALL_STATE(5090)] = 337105, + [SMALL_STATE(5091)] = 337136, + [SMALL_STATE(5092)] = 337167, + [SMALL_STATE(5093)] = 337198, + [SMALL_STATE(5094)] = 337229, + [SMALL_STATE(5095)] = 337260, + [SMALL_STATE(5096)] = 337285, + [SMALL_STATE(5097)] = 337316, + [SMALL_STATE(5098)] = 337347, + [SMALL_STATE(5099)] = 337378, + [SMALL_STATE(5100)] = 337403, + [SMALL_STATE(5101)] = 337434, + [SMALL_STATE(5102)] = 337465, + [SMALL_STATE(5103)] = 337490, + [SMALL_STATE(5104)] = 337521, + [SMALL_STATE(5105)] = 337552, + [SMALL_STATE(5106)] = 337583, + [SMALL_STATE(5107)] = 337614, + [SMALL_STATE(5108)] = 337645, + [SMALL_STATE(5109)] = 337676, + [SMALL_STATE(5110)] = 337707, + [SMALL_STATE(5111)] = 337738, + [SMALL_STATE(5112)] = 337769, + [SMALL_STATE(5113)] = 337800, + [SMALL_STATE(5114)] = 337831, + [SMALL_STATE(5115)] = 337856, + [SMALL_STATE(5116)] = 337887, + [SMALL_STATE(5117)] = 337918, + [SMALL_STATE(5118)] = 337943, + [SMALL_STATE(5119)] = 337974, + [SMALL_STATE(5120)] = 337999, + [SMALL_STATE(5121)] = 338030, + [SMALL_STATE(5122)] = 338061, + [SMALL_STATE(5123)] = 338092, + [SMALL_STATE(5124)] = 338123, + [SMALL_STATE(5125)] = 338154, + [SMALL_STATE(5126)] = 338179, + [SMALL_STATE(5127)] = 338210, + [SMALL_STATE(5128)] = 338241, + [SMALL_STATE(5129)] = 338272, + [SMALL_STATE(5130)] = 338303, + [SMALL_STATE(5131)] = 338334, + [SMALL_STATE(5132)] = 338365, + [SMALL_STATE(5133)] = 338396, + [SMALL_STATE(5134)] = 338427, + [SMALL_STATE(5135)] = 338458, + [SMALL_STATE(5136)] = 338489, + [SMALL_STATE(5137)] = 338520, + [SMALL_STATE(5138)] = 338545, + [SMALL_STATE(5139)] = 338576, + [SMALL_STATE(5140)] = 338601, + [SMALL_STATE(5141)] = 338626, + [SMALL_STATE(5142)] = 338657, + [SMALL_STATE(5143)] = 338688, + [SMALL_STATE(5144)] = 338719, + [SMALL_STATE(5145)] = 338750, + [SMALL_STATE(5146)] = 338775, + [SMALL_STATE(5147)] = 338800, + [SMALL_STATE(5148)] = 338831, + [SMALL_STATE(5149)] = 338862, + [SMALL_STATE(5150)] = 338893, + [SMALL_STATE(5151)] = 338924, + [SMALL_STATE(5152)] = 338955, + [SMALL_STATE(5153)] = 338980, + [SMALL_STATE(5154)] = 339011, + [SMALL_STATE(5155)] = 339042, + [SMALL_STATE(5156)] = 339073, + [SMALL_STATE(5157)] = 339104, + [SMALL_STATE(5158)] = 339135, + [SMALL_STATE(5159)] = 339160, + [SMALL_STATE(5160)] = 339191, + [SMALL_STATE(5161)] = 339222, + [SMALL_STATE(5162)] = 339253, + [SMALL_STATE(5163)] = 339278, + [SMALL_STATE(5164)] = 339309, + [SMALL_STATE(5165)] = 339334, + [SMALL_STATE(5166)] = 339365, + [SMALL_STATE(5167)] = 339396, + [SMALL_STATE(5168)] = 339427, + [SMALL_STATE(5169)] = 339458, + [SMALL_STATE(5170)] = 339489, + [SMALL_STATE(5171)] = 339520, + [SMALL_STATE(5172)] = 339545, + [SMALL_STATE(5173)] = 339576, + [SMALL_STATE(5174)] = 339607, + [SMALL_STATE(5175)] = 339632, + [SMALL_STATE(5176)] = 339663, + [SMALL_STATE(5177)] = 339694, + [SMALL_STATE(5178)] = 339725, + [SMALL_STATE(5179)] = 339756, + [SMALL_STATE(5180)] = 339781, + [SMALL_STATE(5181)] = 339806, + [SMALL_STATE(5182)] = 339837, + [SMALL_STATE(5183)] = 339862, + [SMALL_STATE(5184)] = 339893, + [SMALL_STATE(5185)] = 339924, + [SMALL_STATE(5186)] = 339949, + [SMALL_STATE(5187)] = 339980, + [SMALL_STATE(5188)] = 340011, + [SMALL_STATE(5189)] = 340042, + [SMALL_STATE(5190)] = 340073, + [SMALL_STATE(5191)] = 340098, + [SMALL_STATE(5192)] = 340123, + [SMALL_STATE(5193)] = 340148, + [SMALL_STATE(5194)] = 340179, + [SMALL_STATE(5195)] = 340210, + [SMALL_STATE(5196)] = 340241, + [SMALL_STATE(5197)] = 340266, + [SMALL_STATE(5198)] = 340297, + [SMALL_STATE(5199)] = 340328, + [SMALL_STATE(5200)] = 340359, + [SMALL_STATE(5201)] = 340390, + [SMALL_STATE(5202)] = 340415, + [SMALL_STATE(5203)] = 340446, + [SMALL_STATE(5204)] = 340471, + [SMALL_STATE(5205)] = 340496, + [SMALL_STATE(5206)] = 340521, + [SMALL_STATE(5207)] = 340552, + [SMALL_STATE(5208)] = 340583, + [SMALL_STATE(5209)] = 340608, + [SMALL_STATE(5210)] = 340639, + [SMALL_STATE(5211)] = 340664, + [SMALL_STATE(5212)] = 340695, + [SMALL_STATE(5213)] = 340726, + [SMALL_STATE(5214)] = 340757, + [SMALL_STATE(5215)] = 340782, + [SMALL_STATE(5216)] = 340807, + [SMALL_STATE(5217)] = 340832, + [SMALL_STATE(5218)] = 340857, + [SMALL_STATE(5219)] = 340888, + [SMALL_STATE(5220)] = 340919, + [SMALL_STATE(5221)] = 340944, + [SMALL_STATE(5222)] = 340969, + [SMALL_STATE(5223)] = 341000, + [SMALL_STATE(5224)] = 341025, + [SMALL_STATE(5225)] = 341050, + [SMALL_STATE(5226)] = 341081, + [SMALL_STATE(5227)] = 341112, + [SMALL_STATE(5228)] = 341143, + [SMALL_STATE(5229)] = 341174, + [SMALL_STATE(5230)] = 341199, + [SMALL_STATE(5231)] = 341224, + [SMALL_STATE(5232)] = 341249, + [SMALL_STATE(5233)] = 341274, + [SMALL_STATE(5234)] = 341305, + [SMALL_STATE(5235)] = 341330, + [SMALL_STATE(5236)] = 341361, + [SMALL_STATE(5237)] = 341386, + [SMALL_STATE(5238)] = 341417, + [SMALL_STATE(5239)] = 341448, + [SMALL_STATE(5240)] = 341473, + [SMALL_STATE(5241)] = 341504, + [SMALL_STATE(5242)] = 341529, + [SMALL_STATE(5243)] = 341560, + [SMALL_STATE(5244)] = 341591, + [SMALL_STATE(5245)] = 341616, + [SMALL_STATE(5246)] = 341647, + [SMALL_STATE(5247)] = 341672, + [SMALL_STATE(5248)] = 341703, + [SMALL_STATE(5249)] = 341723, + [SMALL_STATE(5250)] = 341751, + [SMALL_STATE(5251)] = 341779, + [SMALL_STATE(5252)] = 341807, + [SMALL_STATE(5253)] = 341827, + [SMALL_STATE(5254)] = 341847, + [SMALL_STATE(5255)] = 341875, + [SMALL_STATE(5256)] = 341903, + [SMALL_STATE(5257)] = 341931, + [SMALL_STATE(5258)] = 341951, + [SMALL_STATE(5259)] = 341979, + [SMALL_STATE(5260)] = 342007, + [SMALL_STATE(5261)] = 342035, + [SMALL_STATE(5262)] = 342055, + [SMALL_STATE(5263)] = 342083, + [SMALL_STATE(5264)] = 342111, + [SMALL_STATE(5265)] = 342137, + [SMALL_STATE(5266)] = 342165, + [SMALL_STATE(5267)] = 342193, + [SMALL_STATE(5268)] = 342213, + [SMALL_STATE(5269)] = 342241, + [SMALL_STATE(5270)] = 342261, + [SMALL_STATE(5271)] = 342289, + [SMALL_STATE(5272)] = 342311, + [SMALL_STATE(5273)] = 342339, + [SMALL_STATE(5274)] = 342361, + [SMALL_STATE(5275)] = 342389, + [SMALL_STATE(5276)] = 342417, + [SMALL_STATE(5277)] = 342445, + [SMALL_STATE(5278)] = 342473, + [SMALL_STATE(5279)] = 342501, + [SMALL_STATE(5280)] = 342529, + [SMALL_STATE(5281)] = 342557, + [SMALL_STATE(5282)] = 342585, + [SMALL_STATE(5283)] = 342613, + [SMALL_STATE(5284)] = 342641, + [SMALL_STATE(5285)] = 342669, + [SMALL_STATE(5286)] = 342697, + [SMALL_STATE(5287)] = 342725, + [SMALL_STATE(5288)] = 342748, + [SMALL_STATE(5289)] = 342771, + [SMALL_STATE(5290)] = 342786, + [SMALL_STATE(5291)] = 342801, + [SMALL_STATE(5292)] = 342824, + [SMALL_STATE(5293)] = 342847, + [SMALL_STATE(5294)] = 342870, + [SMALL_STATE(5295)] = 342893, + [SMALL_STATE(5296)] = 342908, + [SMALL_STATE(5297)] = 342923, + [SMALL_STATE(5298)] = 342938, + [SMALL_STATE(5299)] = 342961, + [SMALL_STATE(5300)] = 342984, + [SMALL_STATE(5301)] = 343007, + [SMALL_STATE(5302)] = 343030, + [SMALL_STATE(5303)] = 343045, + [SMALL_STATE(5304)] = 343068, + [SMALL_STATE(5305)] = 343091, + [SMALL_STATE(5306)] = 343106, + [SMALL_STATE(5307)] = 343129, + [SMALL_STATE(5308)] = 343144, + [SMALL_STATE(5309)] = 343167, + [SMALL_STATE(5310)] = 343182, + [SMALL_STATE(5311)] = 343205, + [SMALL_STATE(5312)] = 343220, + [SMALL_STATE(5313)] = 343243, + [SMALL_STATE(5314)] = 343266, + [SMALL_STATE(5315)] = 343289, + [SMALL_STATE(5316)] = 343304, + [SMALL_STATE(5317)] = 343319, + [SMALL_STATE(5318)] = 343342, + [SMALL_STATE(5319)] = 343365, + [SMALL_STATE(5320)] = 343388, + [SMALL_STATE(5321)] = 343411, + [SMALL_STATE(5322)] = 343434, + [SMALL_STATE(5323)] = 343457, + [SMALL_STATE(5324)] = 343480, + [SMALL_STATE(5325)] = 343501, + [SMALL_STATE(5326)] = 343524, + [SMALL_STATE(5327)] = 343539, + [SMALL_STATE(5328)] = 343562, + [SMALL_STATE(5329)] = 343583, + [SMALL_STATE(5330)] = 343606, + [SMALL_STATE(5331)] = 343629, + [SMALL_STATE(5332)] = 343652, + [SMALL_STATE(5333)] = 343675, + [SMALL_STATE(5334)] = 343698, + [SMALL_STATE(5335)] = 343713, + [SMALL_STATE(5336)] = 343736, + [SMALL_STATE(5337)] = 343751, + [SMALL_STATE(5338)] = 343774, + [SMALL_STATE(5339)] = 343797, + [SMALL_STATE(5340)] = 343813, + [SMALL_STATE(5341)] = 343831, + [SMALL_STATE(5342)] = 343845, + [SMALL_STATE(5343)] = 343863, + [SMALL_STATE(5344)] = 343879, + [SMALL_STATE(5345)] = 343897, + [SMALL_STATE(5346)] = 343915, + [SMALL_STATE(5347)] = 343931, + [SMALL_STATE(5348)] = 343947, + [SMALL_STATE(5349)] = 343973, + [SMALL_STATE(5350)] = 343993, + [SMALL_STATE(5351)] = 344009, + [SMALL_STATE(5352)] = 344029, + [SMALL_STATE(5353)] = 344045, + [SMALL_STATE(5354)] = 344061, + [SMALL_STATE(5355)] = 344077, + [SMALL_STATE(5356)] = 344100, + [SMALL_STATE(5357)] = 344119, + [SMALL_STATE(5358)] = 344136, + [SMALL_STATE(5359)] = 344155, + [SMALL_STATE(5360)] = 344172, + [SMALL_STATE(5361)] = 344191, + [SMALL_STATE(5362)] = 344214, + [SMALL_STATE(5363)] = 344237, + [SMALL_STATE(5364)] = 344254, + [SMALL_STATE(5365)] = 344277, + [SMALL_STATE(5366)] = 344296, + [SMALL_STATE(5367)] = 344315, + [SMALL_STATE(5368)] = 344334, + [SMALL_STATE(5369)] = 344351, + [SMALL_STATE(5370)] = 344370, + [SMALL_STATE(5371)] = 344387, + [SMALL_STATE(5372)] = 344404, + [SMALL_STATE(5373)] = 344421, + [SMALL_STATE(5374)] = 344440, + [SMALL_STATE(5375)] = 344459, + [SMALL_STATE(5376)] = 344482, + [SMALL_STATE(5377)] = 344501, + [SMALL_STATE(5378)] = 344520, + [SMALL_STATE(5379)] = 344539, + [SMALL_STATE(5380)] = 344558, + [SMALL_STATE(5381)] = 344575, + [SMALL_STATE(5382)] = 344592, + [SMALL_STATE(5383)] = 344615, + [SMALL_STATE(5384)] = 344634, + [SMALL_STATE(5385)] = 344653, + [SMALL_STATE(5386)] = 344668, + [SMALL_STATE(5387)] = 344687, + [SMALL_STATE(5388)] = 344710, + [SMALL_STATE(5389)] = 344727, + [SMALL_STATE(5390)] = 344744, + [SMALL_STATE(5391)] = 344763, + [SMALL_STATE(5392)] = 344782, + [SMALL_STATE(5393)] = 344799, + [SMALL_STATE(5394)] = 344818, + [SMALL_STATE(5395)] = 344837, + [SMALL_STATE(5396)] = 344850, + [SMALL_STATE(5397)] = 344873, + [SMALL_STATE(5398)] = 344896, + [SMALL_STATE(5399)] = 344919, + [SMALL_STATE(5400)] = 344936, + [SMALL_STATE(5401)] = 344959, + [SMALL_STATE(5402)] = 344978, + [SMALL_STATE(5403)] = 344997, + [SMALL_STATE(5404)] = 345014, + [SMALL_STATE(5405)] = 345029, + [SMALL_STATE(5406)] = 345048, + [SMALL_STATE(5407)] = 345071, + [SMALL_STATE(5408)] = 345084, + [SMALL_STATE(5409)] = 345101, + [SMALL_STATE(5410)] = 345120, + [SMALL_STATE(5411)] = 345139, + [SMALL_STATE(5412)] = 345158, + [SMALL_STATE(5413)] = 345181, + [SMALL_STATE(5414)] = 345196, + [SMALL_STATE(5415)] = 345211, + [SMALL_STATE(5416)] = 345228, + [SMALL_STATE(5417)] = 345247, + [SMALL_STATE(5418)] = 345264, + [SMALL_STATE(5419)] = 345279, + [SMALL_STATE(5420)] = 345298, + [SMALL_STATE(5421)] = 345321, + [SMALL_STATE(5422)] = 345338, + [SMALL_STATE(5423)] = 345353, + [SMALL_STATE(5424)] = 345368, + [SMALL_STATE(5425)] = 345391, + [SMALL_STATE(5426)] = 345406, + [SMALL_STATE(5427)] = 345423, + [SMALL_STATE(5428)] = 345438, + [SMALL_STATE(5429)] = 345457, + [SMALL_STATE(5430)] = 345474, + [SMALL_STATE(5431)] = 345493, + [SMALL_STATE(5432)] = 345516, + [SMALL_STATE(5433)] = 345539, + [SMALL_STATE(5434)] = 345556, + [SMALL_STATE(5435)] = 345576, + [SMALL_STATE(5436)] = 345596, + [SMALL_STATE(5437)] = 345616, + [SMALL_STATE(5438)] = 345636, + [SMALL_STATE(5439)] = 345652, + [SMALL_STATE(5440)] = 345672, + [SMALL_STATE(5441)] = 345688, + [SMALL_STATE(5442)] = 345708, + [SMALL_STATE(5443)] = 345728, + [SMALL_STATE(5444)] = 345748, + [SMALL_STATE(5445)] = 345768, + [SMALL_STATE(5446)] = 345784, + [SMALL_STATE(5447)] = 345804, + [SMALL_STATE(5448)] = 345824, + [SMALL_STATE(5449)] = 345840, + [SMALL_STATE(5450)] = 345860, + [SMALL_STATE(5451)] = 345880, + [SMALL_STATE(5452)] = 345900, + [SMALL_STATE(5453)] = 345916, + [SMALL_STATE(5454)] = 345932, + [SMALL_STATE(5455)] = 345952, + [SMALL_STATE(5456)] = 345972, + [SMALL_STATE(5457)] = 345992, + [SMALL_STATE(5458)] = 346012, + [SMALL_STATE(5459)] = 346032, + [SMALL_STATE(5460)] = 346052, + [SMALL_STATE(5461)] = 346072, + [SMALL_STATE(5462)] = 346092, + [SMALL_STATE(5463)] = 346112, + [SMALL_STATE(5464)] = 346132, + [SMALL_STATE(5465)] = 346148, + [SMALL_STATE(5466)] = 346164, + [SMALL_STATE(5467)] = 346177, + [SMALL_STATE(5468)] = 346194, + [SMALL_STATE(5469)] = 346211, + [SMALL_STATE(5470)] = 346226, + [SMALL_STATE(5471)] = 346241, + [SMALL_STATE(5472)] = 346256, + [SMALL_STATE(5473)] = 346269, + [SMALL_STATE(5474)] = 346282, + [SMALL_STATE(5475)] = 346295, + [SMALL_STATE(5476)] = 346308, + [SMALL_STATE(5477)] = 346325, + [SMALL_STATE(5478)] = 346342, + [SMALL_STATE(5479)] = 346359, + [SMALL_STATE(5480)] = 346372, + [SMALL_STATE(5481)] = 346389, + [SMALL_STATE(5482)] = 346406, + [SMALL_STATE(5483)] = 346423, + [SMALL_STATE(5484)] = 346440, + [SMALL_STATE(5485)] = 346453, + [SMALL_STATE(5486)] = 346470, + [SMALL_STATE(5487)] = 346487, + [SMALL_STATE(5488)] = 346500, + [SMALL_STATE(5489)] = 346513, + [SMALL_STATE(5490)] = 346530, + [SMALL_STATE(5491)] = 346547, + [SMALL_STATE(5492)] = 346562, + [SMALL_STATE(5493)] = 346579, + [SMALL_STATE(5494)] = 346596, + [SMALL_STATE(5495)] = 346609, + [SMALL_STATE(5496)] = 346622, + [SMALL_STATE(5497)] = 346639, + [SMALL_STATE(5498)] = 346652, + [SMALL_STATE(5499)] = 346667, + [SMALL_STATE(5500)] = 346684, + [SMALL_STATE(5501)] = 346701, + [SMALL_STATE(5502)] = 346714, + [SMALL_STATE(5503)] = 346731, + [SMALL_STATE(5504)] = 346744, + [SMALL_STATE(5505)] = 346761, + [SMALL_STATE(5506)] = 346776, + [SMALL_STATE(5507)] = 346793, + [SMALL_STATE(5508)] = 346808, + [SMALL_STATE(5509)] = 346825, + [SMALL_STATE(5510)] = 346842, + [SMALL_STATE(5511)] = 346859, + [SMALL_STATE(5512)] = 346876, + [SMALL_STATE(5513)] = 346889, + [SMALL_STATE(5514)] = 346902, + [SMALL_STATE(5515)] = 346919, + [SMALL_STATE(5516)] = 346936, + [SMALL_STATE(5517)] = 346953, + [SMALL_STATE(5518)] = 346970, + [SMALL_STATE(5519)] = 346984, + [SMALL_STATE(5520)] = 346998, + [SMALL_STATE(5521)] = 347012, + [SMALL_STATE(5522)] = 347024, + [SMALL_STATE(5523)] = 347038, + [SMALL_STATE(5524)] = 347052, + [SMALL_STATE(5525)] = 347066, + [SMALL_STATE(5526)] = 347078, + [SMALL_STATE(5527)] = 347092, + [SMALL_STATE(5528)] = 347106, + [SMALL_STATE(5529)] = 347120, + [SMALL_STATE(5530)] = 347134, + [SMALL_STATE(5531)] = 347148, + [SMALL_STATE(5532)] = 347162, + [SMALL_STATE(5533)] = 347176, + [SMALL_STATE(5534)] = 347190, + [SMALL_STATE(5535)] = 347204, + [SMALL_STATE(5536)] = 347216, + [SMALL_STATE(5537)] = 347230, + [SMALL_STATE(5538)] = 347244, + [SMALL_STATE(5539)] = 347258, + [SMALL_STATE(5540)] = 347272, + [SMALL_STATE(5541)] = 347286, + [SMALL_STATE(5542)] = 347300, + [SMALL_STATE(5543)] = 347314, + [SMALL_STATE(5544)] = 347326, + [SMALL_STATE(5545)] = 347340, + [SMALL_STATE(5546)] = 347354, + [SMALL_STATE(5547)] = 347368, + [SMALL_STATE(5548)] = 347380, + [SMALL_STATE(5549)] = 347394, + [SMALL_STATE(5550)] = 347408, + [SMALL_STATE(5551)] = 347422, + [SMALL_STATE(5552)] = 347436, + [SMALL_STATE(5553)] = 347450, + [SMALL_STATE(5554)] = 347464, + [SMALL_STATE(5555)] = 347478, + [SMALL_STATE(5556)] = 347492, + [SMALL_STATE(5557)] = 347506, + [SMALL_STATE(5558)] = 347520, + [SMALL_STATE(5559)] = 347534, + [SMALL_STATE(5560)] = 347548, + [SMALL_STATE(5561)] = 347558, + [SMALL_STATE(5562)] = 347572, + [SMALL_STATE(5563)] = 347586, + [SMALL_STATE(5564)] = 347600, + [SMALL_STATE(5565)] = 347614, + [SMALL_STATE(5566)] = 347628, + [SMALL_STATE(5567)] = 347642, + [SMALL_STATE(5568)] = 347654, + [SMALL_STATE(5569)] = 347666, + [SMALL_STATE(5570)] = 347680, + [SMALL_STATE(5571)] = 347694, + [SMALL_STATE(5572)] = 347704, + [SMALL_STATE(5573)] = 347718, + [SMALL_STATE(5574)] = 347732, + [SMALL_STATE(5575)] = 347746, + [SMALL_STATE(5576)] = 347760, + [SMALL_STATE(5577)] = 347774, + [SMALL_STATE(5578)] = 347788, + [SMALL_STATE(5579)] = 347800, + [SMALL_STATE(5580)] = 347814, + [SMALL_STATE(5581)] = 347828, + [SMALL_STATE(5582)] = 347842, + [SMALL_STATE(5583)] = 347856, + [SMALL_STATE(5584)] = 347870, + [SMALL_STATE(5585)] = 347882, + [SMALL_STATE(5586)] = 347896, + [SMALL_STATE(5587)] = 347910, + [SMALL_STATE(5588)] = 347924, + [SMALL_STATE(5589)] = 347938, + [SMALL_STATE(5590)] = 347952, + [SMALL_STATE(5591)] = 347966, + [SMALL_STATE(5592)] = 347980, + [SMALL_STATE(5593)] = 347994, + [SMALL_STATE(5594)] = 348008, + [SMALL_STATE(5595)] = 348022, + [SMALL_STATE(5596)] = 348036, + [SMALL_STATE(5597)] = 348050, + [SMALL_STATE(5598)] = 348064, + [SMALL_STATE(5599)] = 348078, + [SMALL_STATE(5600)] = 348092, + [SMALL_STATE(5601)] = 348106, + [SMALL_STATE(5602)] = 348116, + [SMALL_STATE(5603)] = 348130, + [SMALL_STATE(5604)] = 348144, + [SMALL_STATE(5605)] = 348158, + [SMALL_STATE(5606)] = 348172, + [SMALL_STATE(5607)] = 348186, + [SMALL_STATE(5608)] = 348200, + [SMALL_STATE(5609)] = 348214, + [SMALL_STATE(5610)] = 348228, + [SMALL_STATE(5611)] = 348240, + [SMALL_STATE(5612)] = 348254, + [SMALL_STATE(5613)] = 348268, + [SMALL_STATE(5614)] = 348282, + [SMALL_STATE(5615)] = 348296, + [SMALL_STATE(5616)] = 348310, + [SMALL_STATE(5617)] = 348324, + [SMALL_STATE(5618)] = 348338, + [SMALL_STATE(5619)] = 348352, + [SMALL_STATE(5620)] = 348366, + [SMALL_STATE(5621)] = 348380, + [SMALL_STATE(5622)] = 348394, + [SMALL_STATE(5623)] = 348408, + [SMALL_STATE(5624)] = 348420, + [SMALL_STATE(5625)] = 348432, + [SMALL_STATE(5626)] = 348446, + [SMALL_STATE(5627)] = 348460, + [SMALL_STATE(5628)] = 348474, + [SMALL_STATE(5629)] = 348488, + [SMALL_STATE(5630)] = 348500, + [SMALL_STATE(5631)] = 348514, + [SMALL_STATE(5632)] = 348526, + [SMALL_STATE(5633)] = 348538, + [SMALL_STATE(5634)] = 348552, + [SMALL_STATE(5635)] = 348566, + [SMALL_STATE(5636)] = 348580, + [SMALL_STATE(5637)] = 348594, + [SMALL_STATE(5638)] = 348608, + [SMALL_STATE(5639)] = 348622, + [SMALL_STATE(5640)] = 348636, + [SMALL_STATE(5641)] = 348650, + [SMALL_STATE(5642)] = 348664, + [SMALL_STATE(5643)] = 348678, + [SMALL_STATE(5644)] = 348692, + [SMALL_STATE(5645)] = 348704, + [SMALL_STATE(5646)] = 348718, + [SMALL_STATE(5647)] = 348732, + [SMALL_STATE(5648)] = 348746, + [SMALL_STATE(5649)] = 348760, + [SMALL_STATE(5650)] = 348774, + [SMALL_STATE(5651)] = 348786, + [SMALL_STATE(5652)] = 348800, + [SMALL_STATE(5653)] = 348814, + [SMALL_STATE(5654)] = 348828, + [SMALL_STATE(5655)] = 348842, + [SMALL_STATE(5656)] = 348856, + [SMALL_STATE(5657)] = 348870, + [SMALL_STATE(5658)] = 348884, + [SMALL_STATE(5659)] = 348898, + [SMALL_STATE(5660)] = 348912, + [SMALL_STATE(5661)] = 348924, + [SMALL_STATE(5662)] = 348938, + [SMALL_STATE(5663)] = 348952, + [SMALL_STATE(5664)] = 348966, + [SMALL_STATE(5665)] = 348980, + [SMALL_STATE(5666)] = 348994, + [SMALL_STATE(5667)] = 349008, + [SMALL_STATE(5668)] = 349022, + [SMALL_STATE(5669)] = 349036, + [SMALL_STATE(5670)] = 349050, + [SMALL_STATE(5671)] = 349064, + [SMALL_STATE(5672)] = 349078, + [SMALL_STATE(5673)] = 349092, + [SMALL_STATE(5674)] = 349106, + [SMALL_STATE(5675)] = 349120, + [SMALL_STATE(5676)] = 349134, + [SMALL_STATE(5677)] = 349148, + [SMALL_STATE(5678)] = 349162, + [SMALL_STATE(5679)] = 349176, + [SMALL_STATE(5680)] = 349190, + [SMALL_STATE(5681)] = 349204, + [SMALL_STATE(5682)] = 349218, + [SMALL_STATE(5683)] = 349232, + [SMALL_STATE(5684)] = 349246, + [SMALL_STATE(5685)] = 349260, + [SMALL_STATE(5686)] = 349274, + [SMALL_STATE(5687)] = 349288, + [SMALL_STATE(5688)] = 349302, + [SMALL_STATE(5689)] = 349312, + [SMALL_STATE(5690)] = 349326, + [SMALL_STATE(5691)] = 349340, + [SMALL_STATE(5692)] = 349354, + [SMALL_STATE(5693)] = 349368, + [SMALL_STATE(5694)] = 349382, + [SMALL_STATE(5695)] = 349396, + [SMALL_STATE(5696)] = 349410, + [SMALL_STATE(5697)] = 349424, + [SMALL_STATE(5698)] = 349438, + [SMALL_STATE(5699)] = 349452, + [SMALL_STATE(5700)] = 349466, + [SMALL_STATE(5701)] = 349480, + [SMALL_STATE(5702)] = 349494, + [SMALL_STATE(5703)] = 349508, + [SMALL_STATE(5704)] = 349522, + [SMALL_STATE(5705)] = 349536, + [SMALL_STATE(5706)] = 349548, + [SMALL_STATE(5707)] = 349562, + [SMALL_STATE(5708)] = 349576, + [SMALL_STATE(5709)] = 349590, + [SMALL_STATE(5710)] = 349604, + [SMALL_STATE(5711)] = 349618, + [SMALL_STATE(5712)] = 349632, + [SMALL_STATE(5713)] = 349646, + [SMALL_STATE(5714)] = 349660, + [SMALL_STATE(5715)] = 349674, + [SMALL_STATE(5716)] = 349688, + [SMALL_STATE(5717)] = 349702, + [SMALL_STATE(5718)] = 349716, + [SMALL_STATE(5719)] = 349730, + [SMALL_STATE(5720)] = 349744, + [SMALL_STATE(5721)] = 349758, + [SMALL_STATE(5722)] = 349772, + [SMALL_STATE(5723)] = 349782, + [SMALL_STATE(5724)] = 349796, + [SMALL_STATE(5725)] = 349810, + [SMALL_STATE(5726)] = 349824, + [SMALL_STATE(5727)] = 349838, + [SMALL_STATE(5728)] = 349852, + [SMALL_STATE(5729)] = 349866, + [SMALL_STATE(5730)] = 349880, + [SMALL_STATE(5731)] = 349894, + [SMALL_STATE(5732)] = 349908, + [SMALL_STATE(5733)] = 349922, + [SMALL_STATE(5734)] = 349936, + [SMALL_STATE(5735)] = 349950, + [SMALL_STATE(5736)] = 349964, + [SMALL_STATE(5737)] = 349978, + [SMALL_STATE(5738)] = 349992, + [SMALL_STATE(5739)] = 350006, + [SMALL_STATE(5740)] = 350020, + [SMALL_STATE(5741)] = 350034, + [SMALL_STATE(5742)] = 350048, + [SMALL_STATE(5743)] = 350062, + [SMALL_STATE(5744)] = 350076, + [SMALL_STATE(5745)] = 350090, + [SMALL_STATE(5746)] = 350104, + [SMALL_STATE(5747)] = 350118, + [SMALL_STATE(5748)] = 350132, + [SMALL_STATE(5749)] = 350146, + [SMALL_STATE(5750)] = 350160, + [SMALL_STATE(5751)] = 350174, + [SMALL_STATE(5752)] = 350188, + [SMALL_STATE(5753)] = 350202, + [SMALL_STATE(5754)] = 350216, + [SMALL_STATE(5755)] = 350230, + [SMALL_STATE(5756)] = 350244, + [SMALL_STATE(5757)] = 350258, + [SMALL_STATE(5758)] = 350270, + [SMALL_STATE(5759)] = 350284, + [SMALL_STATE(5760)] = 350298, + [SMALL_STATE(5761)] = 350312, + [SMALL_STATE(5762)] = 350326, + [SMALL_STATE(5763)] = 350340, + [SMALL_STATE(5764)] = 350354, + [SMALL_STATE(5765)] = 350368, + [SMALL_STATE(5766)] = 350382, + [SMALL_STATE(5767)] = 350396, + [SMALL_STATE(5768)] = 350410, + [SMALL_STATE(5769)] = 350424, + [SMALL_STATE(5770)] = 350438, + [SMALL_STATE(5771)] = 350450, + [SMALL_STATE(5772)] = 350464, + [SMALL_STATE(5773)] = 350478, + [SMALL_STATE(5774)] = 350490, + [SMALL_STATE(5775)] = 350500, + [SMALL_STATE(5776)] = 350514, + [SMALL_STATE(5777)] = 350528, + [SMALL_STATE(5778)] = 350542, + [SMALL_STATE(5779)] = 350556, + [SMALL_STATE(5780)] = 350570, + [SMALL_STATE(5781)] = 350584, + [SMALL_STATE(5782)] = 350598, + [SMALL_STATE(5783)] = 350612, + [SMALL_STATE(5784)] = 350626, + [SMALL_STATE(5785)] = 350640, + [SMALL_STATE(5786)] = 350654, + [SMALL_STATE(5787)] = 350668, + [SMALL_STATE(5788)] = 350682, + [SMALL_STATE(5789)] = 350696, + [SMALL_STATE(5790)] = 350710, + [SMALL_STATE(5791)] = 350724, + [SMALL_STATE(5792)] = 350738, + [SMALL_STATE(5793)] = 350752, + [SMALL_STATE(5794)] = 350766, + [SMALL_STATE(5795)] = 350777, + [SMALL_STATE(5796)] = 350788, + [SMALL_STATE(5797)] = 350799, + [SMALL_STATE(5798)] = 350810, + [SMALL_STATE(5799)] = 350821, + [SMALL_STATE(5800)] = 350832, + [SMALL_STATE(5801)] = 350843, + [SMALL_STATE(5802)] = 350854, + [SMALL_STATE(5803)] = 350865, + [SMALL_STATE(5804)] = 350876, + [SMALL_STATE(5805)] = 350887, + [SMALL_STATE(5806)] = 350898, + [SMALL_STATE(5807)] = 350909, + [SMALL_STATE(5808)] = 350920, + [SMALL_STATE(5809)] = 350931, + [SMALL_STATE(5810)] = 350942, + [SMALL_STATE(5811)] = 350953, + [SMALL_STATE(5812)] = 350964, + [SMALL_STATE(5813)] = 350975, + [SMALL_STATE(5814)] = 350986, + [SMALL_STATE(5815)] = 350997, + [SMALL_STATE(5816)] = 351008, + [SMALL_STATE(5817)] = 351019, + [SMALL_STATE(5818)] = 351030, + [SMALL_STATE(5819)] = 351041, + [SMALL_STATE(5820)] = 351052, + [SMALL_STATE(5821)] = 351063, + [SMALL_STATE(5822)] = 351074, + [SMALL_STATE(5823)] = 351085, + [SMALL_STATE(5824)] = 351096, + [SMALL_STATE(5825)] = 351107, + [SMALL_STATE(5826)] = 351118, + [SMALL_STATE(5827)] = 351129, + [SMALL_STATE(5828)] = 351140, + [SMALL_STATE(5829)] = 351151, + [SMALL_STATE(5830)] = 351162, + [SMALL_STATE(5831)] = 351173, + [SMALL_STATE(5832)] = 351184, + [SMALL_STATE(5833)] = 351195, + [SMALL_STATE(5834)] = 351206, + [SMALL_STATE(5835)] = 351217, + [SMALL_STATE(5836)] = 351228, + [SMALL_STATE(5837)] = 351239, + [SMALL_STATE(5838)] = 351250, + [SMALL_STATE(5839)] = 351261, + [SMALL_STATE(5840)] = 351272, + [SMALL_STATE(5841)] = 351283, + [SMALL_STATE(5842)] = 351294, + [SMALL_STATE(5843)] = 351305, + [SMALL_STATE(5844)] = 351316, + [SMALL_STATE(5845)] = 351327, + [SMALL_STATE(5846)] = 351338, + [SMALL_STATE(5847)] = 351349, + [SMALL_STATE(5848)] = 351360, + [SMALL_STATE(5849)] = 351369, + [SMALL_STATE(5850)] = 351380, + [SMALL_STATE(5851)] = 351391, + [SMALL_STATE(5852)] = 351402, + [SMALL_STATE(5853)] = 351413, + [SMALL_STATE(5854)] = 351424, + [SMALL_STATE(5855)] = 351435, + [SMALL_STATE(5856)] = 351446, + [SMALL_STATE(5857)] = 351457, + [SMALL_STATE(5858)] = 351468, + [SMALL_STATE(5859)] = 351479, + [SMALL_STATE(5860)] = 351490, + [SMALL_STATE(5861)] = 351501, + [SMALL_STATE(5862)] = 351512, + [SMALL_STATE(5863)] = 351523, + [SMALL_STATE(5864)] = 351532, + [SMALL_STATE(5865)] = 351543, + [SMALL_STATE(5866)] = 351554, + [SMALL_STATE(5867)] = 351565, + [SMALL_STATE(5868)] = 351576, + [SMALL_STATE(5869)] = 351587, + [SMALL_STATE(5870)] = 351598, + [SMALL_STATE(5871)] = 351609, + [SMALL_STATE(5872)] = 351620, + [SMALL_STATE(5873)] = 351631, + [SMALL_STATE(5874)] = 351642, + [SMALL_STATE(5875)] = 351653, + [SMALL_STATE(5876)] = 351664, + [SMALL_STATE(5877)] = 351675, + [SMALL_STATE(5878)] = 351686, + [SMALL_STATE(5879)] = 351695, + [SMALL_STATE(5880)] = 351706, + [SMALL_STATE(5881)] = 351717, + [SMALL_STATE(5882)] = 351728, + [SMALL_STATE(5883)] = 351739, + [SMALL_STATE(5884)] = 351750, + [SMALL_STATE(5885)] = 351761, + [SMALL_STATE(5886)] = 351772, + [SMALL_STATE(5887)] = 351783, + [SMALL_STATE(5888)] = 351794, + [SMALL_STATE(5889)] = 351805, + [SMALL_STATE(5890)] = 351816, + [SMALL_STATE(5891)] = 351827, + [SMALL_STATE(5892)] = 351836, + [SMALL_STATE(5893)] = 351847, + [SMALL_STATE(5894)] = 351858, + [SMALL_STATE(5895)] = 351869, + [SMALL_STATE(5896)] = 351880, + [SMALL_STATE(5897)] = 351891, + [SMALL_STATE(5898)] = 351902, + [SMALL_STATE(5899)] = 351913, + [SMALL_STATE(5900)] = 351924, + [SMALL_STATE(5901)] = 351935, + [SMALL_STATE(5902)] = 351946, + [SMALL_STATE(5903)] = 351955, + [SMALL_STATE(5904)] = 351966, + [SMALL_STATE(5905)] = 351977, + [SMALL_STATE(5906)] = 351988, + [SMALL_STATE(5907)] = 351999, + [SMALL_STATE(5908)] = 352010, + [SMALL_STATE(5909)] = 352021, + [SMALL_STATE(5910)] = 352032, + [SMALL_STATE(5911)] = 352043, + [SMALL_STATE(5912)] = 352054, + [SMALL_STATE(5913)] = 352062, + [SMALL_STATE(5914)] = 352070, + [SMALL_STATE(5915)] = 352078, + [SMALL_STATE(5916)] = 352086, + [SMALL_STATE(5917)] = 352094, + [SMALL_STATE(5918)] = 352102, + [SMALL_STATE(5919)] = 352110, + [SMALL_STATE(5920)] = 352118, + [SMALL_STATE(5921)] = 352126, + [SMALL_STATE(5922)] = 352134, + [SMALL_STATE(5923)] = 352142, + [SMALL_STATE(5924)] = 352150, + [SMALL_STATE(5925)] = 352158, + [SMALL_STATE(5926)] = 352166, + [SMALL_STATE(5927)] = 352174, + [SMALL_STATE(5928)] = 352182, + [SMALL_STATE(5929)] = 352190, + [SMALL_STATE(5930)] = 352198, + [SMALL_STATE(5931)] = 352206, + [SMALL_STATE(5932)] = 352214, + [SMALL_STATE(5933)] = 352222, + [SMALL_STATE(5934)] = 352230, + [SMALL_STATE(5935)] = 352238, + [SMALL_STATE(5936)] = 352246, + [SMALL_STATE(5937)] = 352254, + [SMALL_STATE(5938)] = 352262, + [SMALL_STATE(5939)] = 352270, + [SMALL_STATE(5940)] = 352278, + [SMALL_STATE(5941)] = 352286, + [SMALL_STATE(5942)] = 352294, + [SMALL_STATE(5943)] = 352302, + [SMALL_STATE(5944)] = 352310, + [SMALL_STATE(5945)] = 352318, + [SMALL_STATE(5946)] = 352326, + [SMALL_STATE(5947)] = 352334, + [SMALL_STATE(5948)] = 352342, + [SMALL_STATE(5949)] = 352350, + [SMALL_STATE(5950)] = 352358, + [SMALL_STATE(5951)] = 352366, + [SMALL_STATE(5952)] = 352374, + [SMALL_STATE(5953)] = 352382, + [SMALL_STATE(5954)] = 352390, + [SMALL_STATE(5955)] = 352398, + [SMALL_STATE(5956)] = 352406, + [SMALL_STATE(5957)] = 352414, + [SMALL_STATE(5958)] = 352422, + [SMALL_STATE(5959)] = 352430, + [SMALL_STATE(5960)] = 352438, + [SMALL_STATE(5961)] = 352446, + [SMALL_STATE(5962)] = 352454, + [SMALL_STATE(5963)] = 352462, + [SMALL_STATE(5964)] = 352470, + [SMALL_STATE(5965)] = 352478, + [SMALL_STATE(5966)] = 352486, + [SMALL_STATE(5967)] = 352494, + [SMALL_STATE(5968)] = 352502, + [SMALL_STATE(5969)] = 352510, + [SMALL_STATE(5970)] = 352518, + [SMALL_STATE(5971)] = 352526, + [SMALL_STATE(5972)] = 352534, + [SMALL_STATE(5973)] = 352542, + [SMALL_STATE(5974)] = 352550, + [SMALL_STATE(5975)] = 352558, + [SMALL_STATE(5976)] = 352566, + [SMALL_STATE(5977)] = 352574, + [SMALL_STATE(5978)] = 352582, + [SMALL_STATE(5979)] = 352590, + [SMALL_STATE(5980)] = 352598, + [SMALL_STATE(5981)] = 352606, + [SMALL_STATE(5982)] = 352614, + [SMALL_STATE(5983)] = 352622, + [SMALL_STATE(5984)] = 352630, + [SMALL_STATE(5985)] = 352638, + [SMALL_STATE(5986)] = 352646, + [SMALL_STATE(5987)] = 352654, + [SMALL_STATE(5988)] = 352662, + [SMALL_STATE(5989)] = 352670, + [SMALL_STATE(5990)] = 352678, + [SMALL_STATE(5991)] = 352686, + [SMALL_STATE(5992)] = 352694, + [SMALL_STATE(5993)] = 352702, + [SMALL_STATE(5994)] = 352710, + [SMALL_STATE(5995)] = 352718, + [SMALL_STATE(5996)] = 352726, + [SMALL_STATE(5997)] = 352734, + [SMALL_STATE(5998)] = 352742, + [SMALL_STATE(5999)] = 352750, + [SMALL_STATE(6000)] = 352758, + [SMALL_STATE(6001)] = 352766, + [SMALL_STATE(6002)] = 352774, + [SMALL_STATE(6003)] = 352782, + [SMALL_STATE(6004)] = 352790, + [SMALL_STATE(6005)] = 352798, + [SMALL_STATE(6006)] = 352806, + [SMALL_STATE(6007)] = 352814, + [SMALL_STATE(6008)] = 352822, + [SMALL_STATE(6009)] = 352830, + [SMALL_STATE(6010)] = 352838, + [SMALL_STATE(6011)] = 352846, + [SMALL_STATE(6012)] = 352854, + [SMALL_STATE(6013)] = 352862, + [SMALL_STATE(6014)] = 352870, + [SMALL_STATE(6015)] = 352878, + [SMALL_STATE(6016)] = 352886, + [SMALL_STATE(6017)] = 352894, + [SMALL_STATE(6018)] = 352902, + [SMALL_STATE(6019)] = 352910, + [SMALL_STATE(6020)] = 352918, + [SMALL_STATE(6021)] = 352926, + [SMALL_STATE(6022)] = 352934, + [SMALL_STATE(6023)] = 352942, + [SMALL_STATE(6024)] = 352950, + [SMALL_STATE(6025)] = 352958, + [SMALL_STATE(6026)] = 352966, + [SMALL_STATE(6027)] = 352974, + [SMALL_STATE(6028)] = 352982, + [SMALL_STATE(6029)] = 352990, + [SMALL_STATE(6030)] = 352998, + [SMALL_STATE(6031)] = 353006, + [SMALL_STATE(6032)] = 353014, + [SMALL_STATE(6033)] = 353022, + [SMALL_STATE(6034)] = 353030, + [SMALL_STATE(6035)] = 353038, + [SMALL_STATE(6036)] = 353046, + [SMALL_STATE(6037)] = 353054, + [SMALL_STATE(6038)] = 353062, + [SMALL_STATE(6039)] = 353070, + [SMALL_STATE(6040)] = 353078, + [SMALL_STATE(6041)] = 353086, + [SMALL_STATE(6042)] = 353094, + [SMALL_STATE(6043)] = 353102, + [SMALL_STATE(6044)] = 353110, + [SMALL_STATE(6045)] = 353118, + [SMALL_STATE(6046)] = 353126, + [SMALL_STATE(6047)] = 353134, + [SMALL_STATE(6048)] = 353142, + [SMALL_STATE(6049)] = 353150, + [SMALL_STATE(6050)] = 353158, + [SMALL_STATE(6051)] = 353166, + [SMALL_STATE(6052)] = 353174, + [SMALL_STATE(6053)] = 353182, + [SMALL_STATE(6054)] = 353190, + [SMALL_STATE(6055)] = 353198, + [SMALL_STATE(6056)] = 353206, + [SMALL_STATE(6057)] = 353214, + [SMALL_STATE(6058)] = 353222, + [SMALL_STATE(6059)] = 353230, + [SMALL_STATE(6060)] = 353238, + [SMALL_STATE(6061)] = 353246, + [SMALL_STATE(6062)] = 353254, + [SMALL_STATE(6063)] = 353262, + [SMALL_STATE(6064)] = 353270, + [SMALL_STATE(6065)] = 353278, + [SMALL_STATE(6066)] = 353286, + [SMALL_STATE(6067)] = 353294, + [SMALL_STATE(6068)] = 353302, + [SMALL_STATE(6069)] = 353310, + [SMALL_STATE(6070)] = 353318, + [SMALL_STATE(6071)] = 353326, + [SMALL_STATE(6072)] = 353334, + [SMALL_STATE(6073)] = 353342, + [SMALL_STATE(6074)] = 353350, + [SMALL_STATE(6075)] = 353358, + [SMALL_STATE(6076)] = 353366, + [SMALL_STATE(6077)] = 353374, + [SMALL_STATE(6078)] = 353382, + [SMALL_STATE(6079)] = 353390, + [SMALL_STATE(6080)] = 353398, + [SMALL_STATE(6081)] = 353406, + [SMALL_STATE(6082)] = 353414, + [SMALL_STATE(6083)] = 353422, + [SMALL_STATE(6084)] = 353430, + [SMALL_STATE(6085)] = 353438, + [SMALL_STATE(6086)] = 353446, + [SMALL_STATE(6087)] = 353454, + [SMALL_STATE(6088)] = 353462, + [SMALL_STATE(6089)] = 353470, + [SMALL_STATE(6090)] = 353478, + [SMALL_STATE(6091)] = 353486, + [SMALL_STATE(6092)] = 353494, + [SMALL_STATE(6093)] = 353502, + [SMALL_STATE(6094)] = 353510, + [SMALL_STATE(6095)] = 353518, + [SMALL_STATE(6096)] = 353526, + [SMALL_STATE(6097)] = 353534, + [SMALL_STATE(6098)] = 353542, + [SMALL_STATE(6099)] = 353550, + [SMALL_STATE(6100)] = 353558, + [SMALL_STATE(6101)] = 353566, + [SMALL_STATE(6102)] = 353574, + [SMALL_STATE(6103)] = 353582, + [SMALL_STATE(6104)] = 353590, + [SMALL_STATE(6105)] = 353598, + [SMALL_STATE(6106)] = 353606, + [SMALL_STATE(6107)] = 353614, + [SMALL_STATE(6108)] = 353622, + [SMALL_STATE(6109)] = 353630, + [SMALL_STATE(6110)] = 353638, + [SMALL_STATE(6111)] = 353646, + [SMALL_STATE(6112)] = 353654, + [SMALL_STATE(6113)] = 353662, + [SMALL_STATE(6114)] = 353670, + [SMALL_STATE(6115)] = 353678, + [SMALL_STATE(6116)] = 353686, + [SMALL_STATE(6117)] = 353694, + [SMALL_STATE(6118)] = 353702, + [SMALL_STATE(6119)] = 353710, + [SMALL_STATE(6120)] = 353718, + [SMALL_STATE(6121)] = 353726, + [SMALL_STATE(6122)] = 353734, + [SMALL_STATE(6123)] = 353742, + [SMALL_STATE(6124)] = 353750, + [SMALL_STATE(6125)] = 353758, + [SMALL_STATE(6126)] = 353766, + [SMALL_STATE(6127)] = 353774, + [SMALL_STATE(6128)] = 353782, + [SMALL_STATE(6129)] = 353790, + [SMALL_STATE(6130)] = 353798, + [SMALL_STATE(6131)] = 353806, + [SMALL_STATE(6132)] = 353814, + [SMALL_STATE(6133)] = 353822, + [SMALL_STATE(6134)] = 353830, + [SMALL_STATE(6135)] = 353838, + [SMALL_STATE(6136)] = 353846, + [SMALL_STATE(6137)] = 353854, + [SMALL_STATE(6138)] = 353862, + [SMALL_STATE(6139)] = 353870, + [SMALL_STATE(6140)] = 353878, + [SMALL_STATE(6141)] = 353886, + [SMALL_STATE(6142)] = 353894, + [SMALL_STATE(6143)] = 353902, + [SMALL_STATE(6144)] = 353910, + [SMALL_STATE(6145)] = 353918, + [SMALL_STATE(6146)] = 353926, + [SMALL_STATE(6147)] = 353934, + [SMALL_STATE(6148)] = 353942, + [SMALL_STATE(6149)] = 353950, + [SMALL_STATE(6150)] = 353958, + [SMALL_STATE(6151)] = 353966, + [SMALL_STATE(6152)] = 353974, + [SMALL_STATE(6153)] = 353982, + [SMALL_STATE(6154)] = 353990, + [SMALL_STATE(6155)] = 353998, + [SMALL_STATE(6156)] = 354006, + [SMALL_STATE(6157)] = 354014, + [SMALL_STATE(6158)] = 354022, + [SMALL_STATE(6159)] = 354030, + [SMALL_STATE(6160)] = 354038, + [SMALL_STATE(6161)] = 354046, + [SMALL_STATE(6162)] = 354054, + [SMALL_STATE(6163)] = 354062, + [SMALL_STATE(6164)] = 354070, + [SMALL_STATE(6165)] = 354078, + [SMALL_STATE(6166)] = 354086, + [SMALL_STATE(6167)] = 354094, + [SMALL_STATE(6168)] = 354102, + [SMALL_STATE(6169)] = 354110, + [SMALL_STATE(6170)] = 354118, + [SMALL_STATE(6171)] = 354126, + [SMALL_STATE(6172)] = 354134, + [SMALL_STATE(6173)] = 354142, + [SMALL_STATE(6174)] = 354150, + [SMALL_STATE(6175)] = 354158, + [SMALL_STATE(6176)] = 354166, + [SMALL_STATE(6177)] = 354174, + [SMALL_STATE(6178)] = 354182, + [SMALL_STATE(6179)] = 354190, + [SMALL_STATE(6180)] = 354198, + [SMALL_STATE(6181)] = 354206, + [SMALL_STATE(6182)] = 354214, + [SMALL_STATE(6183)] = 354222, + [SMALL_STATE(6184)] = 354230, + [SMALL_STATE(6185)] = 354238, + [SMALL_STATE(6186)] = 354246, + [SMALL_STATE(6187)] = 354254, + [SMALL_STATE(6188)] = 354262, + [SMALL_STATE(6189)] = 354270, + [SMALL_STATE(6190)] = 354278, + [SMALL_STATE(6191)] = 354286, + [SMALL_STATE(6192)] = 354294, + [SMALL_STATE(6193)] = 354302, + [SMALL_STATE(6194)] = 354310, + [SMALL_STATE(6195)] = 354318, + [SMALL_STATE(6196)] = 354326, + [SMALL_STATE(6197)] = 354334, + [SMALL_STATE(6198)] = 354342, + [SMALL_STATE(6199)] = 354350, + [SMALL_STATE(6200)] = 354358, + [SMALL_STATE(6201)] = 354366, + [SMALL_STATE(6202)] = 354374, + [SMALL_STATE(6203)] = 354382, + [SMALL_STATE(6204)] = 354390, + [SMALL_STATE(6205)] = 354398, + [SMALL_STATE(6206)] = 354406, + [SMALL_STATE(6207)] = 354414, + [SMALL_STATE(6208)] = 354422, + [SMALL_STATE(6209)] = 354430, + [SMALL_STATE(6210)] = 354438, + [SMALL_STATE(6211)] = 354446, + [SMALL_STATE(6212)] = 354454, + [SMALL_STATE(6213)] = 354462, + [SMALL_STATE(6214)] = 354470, + [SMALL_STATE(6215)] = 354478, + [SMALL_STATE(6216)] = 354486, + [SMALL_STATE(6217)] = 354494, + [SMALL_STATE(6218)] = 354502, + [SMALL_STATE(6219)] = 354510, + [SMALL_STATE(6220)] = 354518, + [SMALL_STATE(6221)] = 354526, + [SMALL_STATE(6222)] = 354534, + [SMALL_STATE(6223)] = 354542, + [SMALL_STATE(6224)] = 354550, + [SMALL_STATE(6225)] = 354558, + [SMALL_STATE(6226)] = 354566, + [SMALL_STATE(6227)] = 354574, + [SMALL_STATE(6228)] = 354582, + [SMALL_STATE(6229)] = 354590, + [SMALL_STATE(6230)] = 354598, + [SMALL_STATE(6231)] = 354606, + [SMALL_STATE(6232)] = 354614, + [SMALL_STATE(6233)] = 354622, + [SMALL_STATE(6234)] = 354630, + [SMALL_STATE(6235)] = 354638, + [SMALL_STATE(6236)] = 354646, + [SMALL_STATE(6237)] = 354654, + [SMALL_STATE(6238)] = 354662, + [SMALL_STATE(6239)] = 354670, + [SMALL_STATE(6240)] = 354678, + [SMALL_STATE(6241)] = 354686, + [SMALL_STATE(6242)] = 354694, + [SMALL_STATE(6243)] = 354702, + [SMALL_STATE(6244)] = 354710, + [SMALL_STATE(6245)] = 354718, + [SMALL_STATE(6246)] = 354726, + [SMALL_STATE(6247)] = 354734, + [SMALL_STATE(6248)] = 354742, + [SMALL_STATE(6249)] = 354750, + [SMALL_STATE(6250)] = 354758, + [SMALL_STATE(6251)] = 354766, + [SMALL_STATE(6252)] = 354774, + [SMALL_STATE(6253)] = 354782, + [SMALL_STATE(6254)] = 354790, + [SMALL_STATE(6255)] = 354798, + [SMALL_STATE(6256)] = 354806, + [SMALL_STATE(6257)] = 354814, + [SMALL_STATE(6258)] = 354822, + [SMALL_STATE(6259)] = 354830, + [SMALL_STATE(6260)] = 354838, + [SMALL_STATE(6261)] = 354846, + [SMALL_STATE(6262)] = 354854, + [SMALL_STATE(6263)] = 354862, + [SMALL_STATE(6264)] = 354870, + [SMALL_STATE(6265)] = 354878, + [SMALL_STATE(6266)] = 354886, + [SMALL_STATE(6267)] = 354894, + [SMALL_STATE(6268)] = 354902, + [SMALL_STATE(6269)] = 354910, + [SMALL_STATE(6270)] = 354918, + [SMALL_STATE(6271)] = 354926, + [SMALL_STATE(6272)] = 354934, + [SMALL_STATE(6273)] = 354942, + [SMALL_STATE(6274)] = 354950, + [SMALL_STATE(6275)] = 354958, + [SMALL_STATE(6276)] = 354966, + [SMALL_STATE(6277)] = 354974, + [SMALL_STATE(6278)] = 354982, + [SMALL_STATE(6279)] = 354990, + [SMALL_STATE(6280)] = 354998, + [SMALL_STATE(6281)] = 355006, + [SMALL_STATE(6282)] = 355014, + [SMALL_STATE(6283)] = 355022, + [SMALL_STATE(6284)] = 355030, + [SMALL_STATE(6285)] = 355038, + [SMALL_STATE(6286)] = 355046, + [SMALL_STATE(6287)] = 355054, + [SMALL_STATE(6288)] = 355062, + [SMALL_STATE(6289)] = 355070, + [SMALL_STATE(6290)] = 355078, + [SMALL_STATE(6291)] = 355086, + [SMALL_STATE(6292)] = 355094, + [SMALL_STATE(6293)] = 355102, + [SMALL_STATE(6294)] = 355110, + [SMALL_STATE(6295)] = 355118, + [SMALL_STATE(6296)] = 355126, + [SMALL_STATE(6297)] = 355134, + [SMALL_STATE(6298)] = 355142, + [SMALL_STATE(6299)] = 355150, + [SMALL_STATE(6300)] = 355158, + [SMALL_STATE(6301)] = 355166, + [SMALL_STATE(6302)] = 355174, + [SMALL_STATE(6303)] = 355182, + [SMALL_STATE(6304)] = 355190, + [SMALL_STATE(6305)] = 355198, + [SMALL_STATE(6306)] = 355206, + [SMALL_STATE(6307)] = 355214, + [SMALL_STATE(6308)] = 355222, + [SMALL_STATE(6309)] = 355230, + [SMALL_STATE(6310)] = 355238, + [SMALL_STATE(6311)] = 355246, + [SMALL_STATE(6312)] = 355254, + [SMALL_STATE(6313)] = 355262, + [SMALL_STATE(6314)] = 355270, + [SMALL_STATE(6315)] = 355278, + [SMALL_STATE(6316)] = 355286, + [SMALL_STATE(6317)] = 355294, + [SMALL_STATE(6318)] = 355302, + [SMALL_STATE(6319)] = 355310, + [SMALL_STATE(6320)] = 355318, + [SMALL_STATE(6321)] = 355326, + [SMALL_STATE(6322)] = 355334, + [SMALL_STATE(6323)] = 355342, + [SMALL_STATE(6324)] = 355350, + [SMALL_STATE(6325)] = 355358, + [SMALL_STATE(6326)] = 355366, + [SMALL_STATE(6327)] = 355374, + [SMALL_STATE(6328)] = 355382, + [SMALL_STATE(6329)] = 355390, + [SMALL_STATE(6330)] = 355398, + [SMALL_STATE(6331)] = 355406, + [SMALL_STATE(6332)] = 355414, + [SMALL_STATE(6333)] = 355422, + [SMALL_STATE(6334)] = 355430, + [SMALL_STATE(6335)] = 355438, + [SMALL_STATE(6336)] = 355446, + [SMALL_STATE(6337)] = 355454, + [SMALL_STATE(6338)] = 355462, + [SMALL_STATE(6339)] = 355470, + [SMALL_STATE(6340)] = 355478, + [SMALL_STATE(6341)] = 355486, + [SMALL_STATE(6342)] = 355494, + [SMALL_STATE(6343)] = 355502, + [SMALL_STATE(6344)] = 355510, + [SMALL_STATE(6345)] = 355518, + [SMALL_STATE(6346)] = 355526, + [SMALL_STATE(6347)] = 355534, + [SMALL_STATE(6348)] = 355542, + [SMALL_STATE(6349)] = 355550, + [SMALL_STATE(6350)] = 355558, + [SMALL_STATE(6351)] = 355566, + [SMALL_STATE(6352)] = 355574, + [SMALL_STATE(6353)] = 355582, + [SMALL_STATE(6354)] = 355590, + [SMALL_STATE(6355)] = 355598, + [SMALL_STATE(6356)] = 355606, + [SMALL_STATE(6357)] = 355614, + [SMALL_STATE(6358)] = 355622, + [SMALL_STATE(6359)] = 355630, + [SMALL_STATE(6360)] = 355638, + [SMALL_STATE(6361)] = 355646, + [SMALL_STATE(6362)] = 355654, + [SMALL_STATE(6363)] = 355662, + [SMALL_STATE(6364)] = 355670, + [SMALL_STATE(6365)] = 355678, + [SMALL_STATE(6366)] = 355686, + [SMALL_STATE(6367)] = 355694, + [SMALL_STATE(6368)] = 355702, + [SMALL_STATE(6369)] = 355710, + [SMALL_STATE(6370)] = 355718, + [SMALL_STATE(6371)] = 355726, + [SMALL_STATE(6372)] = 355734, + [SMALL_STATE(6373)] = 355742, + [SMALL_STATE(6374)] = 355750, + [SMALL_STATE(6375)] = 355758, + [SMALL_STATE(6376)] = 355766, + [SMALL_STATE(6377)] = 355774, + [SMALL_STATE(6378)] = 355782, + [SMALL_STATE(6379)] = 355790, + [SMALL_STATE(6380)] = 355798, + [SMALL_STATE(6381)] = 355806, + [SMALL_STATE(6382)] = 355814, + [SMALL_STATE(6383)] = 355822, + [SMALL_STATE(6384)] = 355830, + [SMALL_STATE(6385)] = 355838, + [SMALL_STATE(6386)] = 355846, + [SMALL_STATE(6387)] = 355854, + [SMALL_STATE(6388)] = 355862, + [SMALL_STATE(6389)] = 355870, + [SMALL_STATE(6390)] = 355878, + [SMALL_STATE(6391)] = 355886, + [SMALL_STATE(6392)] = 355894, + [SMALL_STATE(6393)] = 355902, + [SMALL_STATE(6394)] = 355910, + [SMALL_STATE(6395)] = 355918, + [SMALL_STATE(6396)] = 355926, + [SMALL_STATE(6397)] = 355934, + [SMALL_STATE(6398)] = 355942, + [SMALL_STATE(6399)] = 355950, + [SMALL_STATE(6400)] = 355958, + [SMALL_STATE(6401)] = 355966, + [SMALL_STATE(6402)] = 355974, + [SMALL_STATE(6403)] = 355982, + [SMALL_STATE(6404)] = 355990, + [SMALL_STATE(6405)] = 355998, + [SMALL_STATE(6406)] = 356006, + [SMALL_STATE(6407)] = 356014, + [SMALL_STATE(6408)] = 356022, + [SMALL_STATE(6409)] = 356030, + [SMALL_STATE(6410)] = 356038, + [SMALL_STATE(6411)] = 356046, + [SMALL_STATE(6412)] = 356054, + [SMALL_STATE(6413)] = 356062, + [SMALL_STATE(6414)] = 356070, + [SMALL_STATE(6415)] = 356078, + [SMALL_STATE(6416)] = 356086, + [SMALL_STATE(6417)] = 356094, + [SMALL_STATE(6418)] = 356102, + [SMALL_STATE(6419)] = 356110, + [SMALL_STATE(6420)] = 356118, + [SMALL_STATE(6421)] = 356126, + [SMALL_STATE(6422)] = 356134, + [SMALL_STATE(6423)] = 356142, + [SMALL_STATE(6424)] = 356150, + [SMALL_STATE(6425)] = 356158, + [SMALL_STATE(6426)] = 356166, + [SMALL_STATE(6427)] = 356174, + [SMALL_STATE(6428)] = 356182, + [SMALL_STATE(6429)] = 356190, + [SMALL_STATE(6430)] = 356198, + [SMALL_STATE(6431)] = 356206, + [SMALL_STATE(6432)] = 356214, + [SMALL_STATE(6433)] = 356222, + [SMALL_STATE(6434)] = 356230, + [SMALL_STATE(6435)] = 356238, + [SMALL_STATE(6436)] = 356246, + [SMALL_STATE(6437)] = 356254, + [SMALL_STATE(6438)] = 356262, + [SMALL_STATE(6439)] = 356270, + [SMALL_STATE(6440)] = 356278, + [SMALL_STATE(6441)] = 356286, + [SMALL_STATE(6442)] = 356294, + [SMALL_STATE(6443)] = 356302, + [SMALL_STATE(6444)] = 356310, + [SMALL_STATE(6445)] = 356318, + [SMALL_STATE(6446)] = 356326, + [SMALL_STATE(6447)] = 356334, + [SMALL_STATE(6448)] = 356342, + [SMALL_STATE(6449)] = 356350, + [SMALL_STATE(6450)] = 356358, + [SMALL_STATE(6451)] = 356366, + [SMALL_STATE(6452)] = 356374, + [SMALL_STATE(6453)] = 356382, + [SMALL_STATE(6454)] = 356390, + [SMALL_STATE(6455)] = 356398, + [SMALL_STATE(6456)] = 356406, + [SMALL_STATE(6457)] = 356414, + [SMALL_STATE(6458)] = 356422, + [SMALL_STATE(6459)] = 356430, + [SMALL_STATE(6460)] = 356438, + [SMALL_STATE(6461)] = 356446, + [SMALL_STATE(6462)] = 356454, + [SMALL_STATE(6463)] = 356462, + [SMALL_STATE(6464)] = 356470, + [SMALL_STATE(6465)] = 356478, + [SMALL_STATE(6466)] = 356486, + [SMALL_STATE(6467)] = 356494, + [SMALL_STATE(6468)] = 356502, + [SMALL_STATE(6469)] = 356510, + [SMALL_STATE(6470)] = 356518, + [SMALL_STATE(6471)] = 356526, + [SMALL_STATE(6472)] = 356534, + [SMALL_STATE(6473)] = 356542, + [SMALL_STATE(6474)] = 356550, + [SMALL_STATE(6475)] = 356558, + [SMALL_STATE(6476)] = 356566, + [SMALL_STATE(6477)] = 356574, + [SMALL_STATE(6478)] = 356582, + [SMALL_STATE(6479)] = 356590, + [SMALL_STATE(6480)] = 356598, + [SMALL_STATE(6481)] = 356606, + [SMALL_STATE(6482)] = 356614, + [SMALL_STATE(6483)] = 356622, + [SMALL_STATE(6484)] = 356630, + [SMALL_STATE(6485)] = 356638, + [SMALL_STATE(6486)] = 356646, + [SMALL_STATE(6487)] = 356654, + [SMALL_STATE(6488)] = 356662, + [SMALL_STATE(6489)] = 356670, + [SMALL_STATE(6490)] = 356678, + [SMALL_STATE(6491)] = 356686, + [SMALL_STATE(6492)] = 356694, + [SMALL_STATE(6493)] = 356702, + [SMALL_STATE(6494)] = 356710, + [SMALL_STATE(6495)] = 356717, + [SMALL_STATE(6496)] = 356724, + [SMALL_STATE(6497)] = 356731, + [SMALL_STATE(6498)] = 356738, + [SMALL_STATE(6499)] = 356745, + [SMALL_STATE(6500)] = 356752, + [SMALL_STATE(6501)] = 356759, + [SMALL_STATE(6502)] = 356766, + [SMALL_STATE(6503)] = 356773, + [SMALL_STATE(6504)] = 356780, + [SMALL_STATE(6505)] = 356787, + [SMALL_STATE(6506)] = 356794, + [SMALL_STATE(6507)] = 356801, + [SMALL_STATE(6508)] = 356808, + [SMALL_STATE(6509)] = 356815, + [SMALL_STATE(6510)] = 356822, + [SMALL_STATE(6511)] = 356829, + [SMALL_STATE(6512)] = 356836, + [SMALL_STATE(6513)] = 356843, + [SMALL_STATE(6514)] = 356850, + [SMALL_STATE(6515)] = 356857, + [SMALL_STATE(6516)] = 356864, + [SMALL_STATE(6517)] = 356871, + [SMALL_STATE(6518)] = 356878, + [SMALL_STATE(6519)] = 356885, + [SMALL_STATE(6520)] = 356892, + [SMALL_STATE(6521)] = 356899, + [SMALL_STATE(6522)] = 356906, + [SMALL_STATE(6523)] = 356913, + [SMALL_STATE(6524)] = 356920, + [SMALL_STATE(6525)] = 356927, + [SMALL_STATE(6526)] = 356934, + [SMALL_STATE(6527)] = 356941, + [SMALL_STATE(6528)] = 356948, + [SMALL_STATE(6529)] = 356955, + [SMALL_STATE(6530)] = 356962, + [SMALL_STATE(6531)] = 356969, + [SMALL_STATE(6532)] = 356976, + [SMALL_STATE(6533)] = 356983, + [SMALL_STATE(6534)] = 356990, + [SMALL_STATE(6535)] = 356997, + [SMALL_STATE(6536)] = 357004, + [SMALL_STATE(6537)] = 357011, + [SMALL_STATE(6538)] = 357018, + [SMALL_STATE(6539)] = 357025, + [SMALL_STATE(6540)] = 357032, + [SMALL_STATE(6541)] = 357039, + [SMALL_STATE(6542)] = 357046, + [SMALL_STATE(6543)] = 357053, + [SMALL_STATE(6544)] = 357060, + [SMALL_STATE(6545)] = 357067, + [SMALL_STATE(6546)] = 357074, + [SMALL_STATE(6547)] = 357081, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -350820,4208 +359056,4294 @@ 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(2693), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 3), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 3), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2693), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5253), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6334), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1871), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(932), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6076), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1844), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(223), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5260), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(212), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6330), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4667), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5347), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6281), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6072), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6260), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1776), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6334), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1773), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1625), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6296), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4401), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4401), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5224), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1870), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6333), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(222), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5359), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6299), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6298), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6297), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(565), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5856), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1705), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(344), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5335), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(199), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6330), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5856), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1035), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1034), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6349), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2162), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2162), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5247), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(538), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5889), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1657), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(346), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5288), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(202), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5889), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(838), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(871), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6141), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2233), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2233), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5234), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 13), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 13), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3372), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6108), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1603), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(330), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(5337), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(209), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6330), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1462), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6108), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1289), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1072), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6151), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3535), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3535), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(5243), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3688), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(6108), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1603), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(330), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(5337), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(209), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(6330), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1073), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1290), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1765), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(6151), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3535), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(5243), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 21), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 21), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 20), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 20), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 53), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 53), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 38), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 38), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 37), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 37), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4614), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 20), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 20), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5888), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5888), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5900), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5900), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 15), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 15), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5875), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5875), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5861), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5861), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4631), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1532), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6115), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1532), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1529), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4663), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5836), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5836), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 16), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 16), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5856), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5856), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5889), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5889), - [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5863), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5863), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1672), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5876), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1672), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1673), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4518), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 56), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 56), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 32), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 32), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 70), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 70), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 32), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 32), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 40), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 40), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 51), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 51), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 56), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 56), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 24), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 24), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 41), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 41), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 40), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 40), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 80), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 80), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 84), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 84), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 1), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 88), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 88), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 90), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 90), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 93), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 93), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 96), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 96), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 97), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 97), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 100), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 100), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(960), - [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5974), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(960), - [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(964), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1013), - [3224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5977), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1013), - [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1014), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(880), - [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5964), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(880), - [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(882), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1083), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5959), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1083), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1081), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1530), - [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5835), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1530), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1531), - [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1602), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5913), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1602), - [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1599), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6306), - [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6306), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6156), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6156), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6154), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6154), - [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5847), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5847), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4563), - [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1764), - [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6215), - [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1764), - [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1761), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1722), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6326), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1722), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1729), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6341), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6341), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4604), - [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6224), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6224), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6195), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6195), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6235), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6235), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1488), - [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6102), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1488), - [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1359), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4546), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 1), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1833), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6237), - [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1833), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1832), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4524), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4643), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6069), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1703), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6061), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1703), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1701), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6099), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4521), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1652), - [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5859), - [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1651), - [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6084), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6084), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6127), - [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6127), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5983), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5983), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4588), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6005), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6005), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4519), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1813), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6008), - [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1813), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1814), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1439), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6212), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1439), - [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1440), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1861), - [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6128), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1861), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1860), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(931), - [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5970), - [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(931), - [4097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(933), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5957), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 12), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 12), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 62), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 62), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 4, .production_id = 29), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 4, .production_id = 29), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 45), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 45), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 47), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 47), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 48), - [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 48), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 49), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 49), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 65), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 65), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 64), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 64), - [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6108), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 7, .production_id = 76), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 7, .production_id = 76), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 1), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 1), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 3, .production_id = 11), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 3, .production_id = 11), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 30), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 30), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 4, .production_id = 28), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 4, .production_id = 28), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6169), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), - [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), SHIFT_REPEAT(1230), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), SHIFT_REPEAT(929), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6095), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1104), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6155), - [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1104), - [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1105), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4538), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 30), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 30), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 26), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 26), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4569), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6238), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6223), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 48), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 48), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1041), - [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6010), - [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1041), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1044), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4544), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4558), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5912), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(962), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6222), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(962), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(963), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5937), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4603), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 58), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 58), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4523), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 72), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 72), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 73), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 73), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 7, .production_id = 74), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 7, .production_id = 74), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 98), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 98), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 95), - [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 95), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 92), - [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 92), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 91), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 91), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 8, .production_id = 89), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 8, .production_id = 89), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 87), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 87), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 86), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 86), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 8, .production_id = 85), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 8, .production_id = 85), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 77), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 77), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 7, .production_id = 81), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 7, .production_id = 81), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 7, .production_id = 75), - [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 7, .production_id = 75), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 78), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 78), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 7, .production_id = 77), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 7, .production_id = 77), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 66), - [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 66), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 68), - [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 68), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4626), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6096), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 6, .production_id = 66), - [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 6, .production_id = 66), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 63), - [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 63), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 61), - [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 61), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 60), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 60), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 59), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 59), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 3, .production_id = 23), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 3, .production_id = 23), - [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6334), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 52), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 52), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 50), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 50), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 50), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 50), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1388), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5910), - [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1389), - [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 4, .production_id = 27), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 4, .production_id = 27), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 31), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 31), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6327), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 31), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 31), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 31), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 31), - [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6312), - [4924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1797), - [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6343), - [4930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1797), - [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1796), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 42), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 42), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 44), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 44), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 46), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 46), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 50), - [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 50), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1295), - [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5952), - [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1295), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1273), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(862), - [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6311), - [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(862), - [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1341), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 35), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 35), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1246), - [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6094), - [5088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1246), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1247), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), - [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 34), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 67), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 69), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 55), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 34), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 18), - [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 54), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 20), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(1776), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(5313), - [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(5313), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5258), - [6470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5258), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1437), - [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(6065), - [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 33), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [6581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4612), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(902), - [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(5904), - [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4677), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 79), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(5360), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [6766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4527), - [6769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(4734), - [6772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(4739), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 19), - [6787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4552), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [6826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [6872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4648), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 83), SHIFT_REPEAT(6278), - [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 83), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 67), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [7036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4642), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 57), SHIFT_REPEAT(495), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 57), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(800), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [7121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(5591), - [7124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(4580), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(587), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 2), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 2), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(405), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [7323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 10), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 71), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 18), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 25), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 3), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [61] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 3), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2741), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5348), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6484), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1345), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1907), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6023), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1117), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(239), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5401), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(218), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6481), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4719), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5438), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1303), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6022), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6428), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1183), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6484), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1190), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1191), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6475), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4257), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(4257), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5332), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1043), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6483), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(241), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5465), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1122), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6478), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(6477), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(581), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6077), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1038), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(358), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5373), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(219), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6481), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6077), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1471), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2029), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6155), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2235), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2235), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5293), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 13), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 13), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(681), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6286), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1174), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(382), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5405), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(236), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6286), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1773), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(1588), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(6035), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2129), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(2129), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(5304), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3344), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6065), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1024), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(390), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(5367), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(227), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6481), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2115), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6065), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1674), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2103), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(6181), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3568), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3568), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(5317), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 20), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 20), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4733), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5921), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5921), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 21), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 21), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 5), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 5), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3784), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(6065), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1024), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(390), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(5367), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(227), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(6481), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1416), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1672), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1610), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(6181), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3568), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(5317), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 20), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 20), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 38), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 38), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 4), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 37), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 37), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6158), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6158), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6138), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6138), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 4), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6470), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6470), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 53), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 53), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 15), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 15), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4679), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4668), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 16), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 16), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 7), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 7), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6286), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6286), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4661), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6077), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6077), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1783), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6254), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1783), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1784), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6159), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6159), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1829), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6361), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1829), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1828), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6303), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6303), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 2, .production_id = 3), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 2, .production_id = 3), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1264), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6373), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1264), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1255), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 6), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 6), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 1), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 8), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 8), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_instantiation, 2, .production_id = 9), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_instantiation, 2, .production_id = 9), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 24), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 24), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1262), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5965), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1262), + [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1263), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 32), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 32), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 32), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 32), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 6), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 6), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 40), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 40), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 41), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 41), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 51), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 51), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 6), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 6), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 40), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 40), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 56), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 56), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 70), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 70), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 56), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 56), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 80), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 80), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 84), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 84), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 88), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 88), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 90), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 90), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 94), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 94), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 98), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 98), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 99), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 99), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 102), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 102), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1722), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6016), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1722), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1723), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2042), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6363), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2042), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2044), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1883), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6306), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1883), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1884), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1642), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5957), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1642), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1643), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4715), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6025), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6025), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6444), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6444), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6001), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6001), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1925), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6339), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1925), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1926), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5990), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5990), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6068), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6068), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1248), + [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6072), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1248), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1258), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4749), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5947), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5947), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1494), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6467), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1494), + [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1493), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2051), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6164), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2051), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2052), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4707), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6250), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6250), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 1), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4765), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6217), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6217), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6242), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6220), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4723), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1149), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6215), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1149), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1147), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4672), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6284), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6284), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6275), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6275), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2007), + [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6360), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2007), + [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2006), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6420), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6420), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6476), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6476), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4766), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4712), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1201), + [4058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6245), + [4061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1204), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1692), + [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5997), + [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1692), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1695), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1428), + [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6412), + [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1428), + [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1427), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6333), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1675), + [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5986), + [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1675), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1681), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6065), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 12), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 12), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 62), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 62), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 64), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 64), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 3, .production_id = 11), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 3, .production_id = 11), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 65), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 65), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 1), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 1), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 4, .production_id = 28), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 4, .production_id = 28), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 45), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 45), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 48), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 48), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 49), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 49), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 7, .production_id = 76), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 7, .production_id = 76), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 47), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 47), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 4, .production_id = 29), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 4, .production_id = 29), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 30), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 30), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5978), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), + [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), SHIFT_REPEAT(1186), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 43), SHIFT_REPEAT(2031), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6442), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4737), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1207), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6003), + [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1207), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1208), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1882), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6345), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1882), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1891), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4714), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 26), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 26), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6232), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 30), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 30), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 48), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 48), + [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6186), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4704), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6466), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 66), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 66), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1058), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6185), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1058), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1059), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 77), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 77), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4665), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6484), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(5975), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4746), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(5951), + [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4676), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4678), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 10), + [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 10), + [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1410), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6331), + [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1410), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1429), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 3, .production_id = 23), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 3, .production_id = 23), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 4, .production_id = 27), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 4, .production_id = 27), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 31), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 31), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 31), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 31), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 31), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 31), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 42), + [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 42), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 5, .production_id = 44), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 5, .production_id = 44), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 46), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 46), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 50), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 50), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 50), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 50), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 50), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 50), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 52), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 52), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 58), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 58), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 59), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 59), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 60), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 60), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 61), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 61), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 6, .production_id = 63), + [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 6, .production_id = 63), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 6, .production_id = 66), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 6, .production_id = 66), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 68), + [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 68), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 6, .production_id = 66), + [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 6, .production_id = 66), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 72), + [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 72), + [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 73), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 73), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 7, .production_id = 74), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 7, .production_id = 74), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 7, .production_id = 75), + [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 7, .production_id = 75), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 7, .production_id = 77), + [4907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 7, .production_id = 77), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 78), + [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 78), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 7, .production_id = 77), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 7, .production_id = 77), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 7, .production_id = 81), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 7, .production_id = 81), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_rule_statement, 8, .production_id = 85), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_rule_statement, 8, .production_id = 85), + [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 86), + [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 86), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 87), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 87), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 8, .production_id = 89), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 8, .production_id = 89), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 91), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 91), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 92), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 92), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 9, .production_id = 93), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 9, .production_id = 93), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 96), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 96), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 10, .production_id = 97), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 10, .production_id = 97), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 100), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 100), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(6372), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(6399), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1500), + [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5972), + [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1501), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1923), + [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(5946), + [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1923), + [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1924), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1093), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6371), + [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1093), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1092), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 35), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 35), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1355), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(6063), + [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1355), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 17), SHIFT_REPEAT(1356), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), + [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 34), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 55), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 67), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 69), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 18), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 34), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 54), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 20), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [6392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(1183), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(5430), + [6512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(5430), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [6533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4624), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 33), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4623), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 79), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1354), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(6013), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2012), + [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(6294), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5419), + [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5419), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [6799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4698), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 19), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [6838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(4830), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(4834), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(5448), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4612), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [6984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(705), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4643), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 2), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(427), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 67), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 57), SHIFT_REPEAT(536), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 57), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(990), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 83), SHIFT_REPEAT(5917), + [7228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 83), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(4757), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [7287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(5717), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 2), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(4735), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 3), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 71), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 82), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 39), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [8487] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 82), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 25), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 18), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [8729] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), }; #ifdef __cplusplus diff --git a/test/corpus/schema.txt b/test/corpus/schema.txt index 0731ada..3c3979c 100644 --- a/test/corpus/schema.txt +++ b/test/corpus/schema.txt @@ -348,7 +348,7 @@ schema employee(person): (basic_type))))) ================================================================================ -Rule Statement with checks +Rule Statement with any condition ================================================================================ rule SomeChecker for SomeProtocol: @@ -394,4 +394,68 @@ rule SomeChecker for SomeProtocol: (attribute (identifier))) (select_suffix - (identifier)))))))) \ No newline at end of file + (identifier)))))))) + +================================================================================ +Schema Mixin Statement +================================================================================ + +schema Parent: + mixin [NameMixin] + age: int + +-------------------------------------------------------------------------------- + +(module + (schema_statement + (identifier) + (block + (mixin_statement + (list + (attribute + (identifier)))) + (assignment + (dotted_name + (identifier)) + (basic_type))))) + +================================================================================ +Schema Statement with checks +================================================================================ + +schema NameMixin: + check: + name None + +-------------------------------------------------------------------------------- + +(module + (schema_statement + (identifier) + (block + (check_statement + (attribute + (identifier))) + (none)))) + +================================================================================ +Schema Statement with Data +================================================================================ + +schema Data for DataProtocol: + x: str = data + +-------------------------------------------------------------------------------- + +(module + (schema_statement + (identifier) + (identifier) + (block + (assignment + (dotted_name + (identifier)) + (type + (basic_type)) + (attribute + (identifier)))))) \ No newline at end of file